Re: Adjusting MTU

2004-05-18 Thread Craig Sanders
On Wed, May 12, 2004 at 02:40:10PM -0400, Ryan Tucker wrote: > I'm trying to find the "Debian Way" to adjust the MTU on an interface... > basically, we have a box behind a firewall which is blocking the ICMP Can't > Fragment packets, and we're sending fairly large data packets through, and, > well,

Re: Adjusting MTU

2004-05-18 Thread Craig Sanders
On Wed, May 12, 2004 at 02:40:10PM -0400, Ryan Tucker wrote: > I'm trying to find the "Debian Way" to adjust the MTU on an interface... > basically, we have a box behind a firewall which is blocking the ICMP Can't > Fragment packets, and we're sending fairly large data packets through, and, > well,

Re: Adjusting MTU

2004-05-12 Thread Andrew Miehs
The proper solution would be to turn off the DF bit... But I unfortunately have not been able to find it yet... Regards Andrew

Re: Adjusting MTU

2004-05-12 Thread Andrew Miehs
The proper solution would be to turn off the DF bit... But I unfortunately have not been able to find it yet... Regards Andrew -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Adjusting MTU

2004-05-12 Thread Chris Francy
maybe not the best way, but I have in my /etc/network/interfaces file It puts it all in a place that is easy to find and use auto eth3 iface eth3 inet static address 192.168.1.1 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.2.255 up route add

Re: Adjusting MTU

2004-05-12 Thread Rasmus Glud
maybe ifconfig could help you, some of the way ? $ ifconfig eth1 mtu 1250 $ man 8 ifconfig im not sure where to put this , to make sure its there at startup (the Debian way). Maybe somebody else can help with that? * Ryan Tucker ([EMAIL PROTECTED]) wrote: > Greetings... > > I'm trying to find

Re: Adjusting MTU

2004-05-12 Thread Chris Francy
maybe not the best way, but I have in my /etc/network/interfaces file It puts it all in a place that is easy to find and use auto eth3 iface eth3 inet static address 192.168.1.1 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.2.255 up route add

Re: Adjusting MTU

2004-05-12 Thread Rasmus Glud
maybe ifconfig could help you, some of the way ? $ ifconfig eth1 mtu 1250 $ man 8 ifconfig im not sure where to put this , to make sure its there at startup (the Debian way). Maybe somebody else can help with that? * Ryan Tucker ([EMAIL PROTECTED]) wrote: > Greetings... > > I'm trying to find