MTU

From LinuxMCE
Revision as of 16:42, 19 October 2009 by Rperre (Talk | contribs) (changing mtu size in linuxmce ubuntu)

(diff) ←Older revision | view current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search

Ever had problems with your MTU being set to 576 on eth0 because of you ISP or other reasons. You can fix that.

you can check your mtu settings with the terminal command: ifconfig eth# where eth# is the nic you are trying to affect in my case this was eth0

Realtime you can open a terminal and use: sudo ifconfig eth0 mtu #### The #### is the number of the mtu you want to use in my case 1500, so the realtime command would be: sudo ifconfig eth0 mtu 1500

Ofcourse if you reboot or the network gets restarted it will change to 576 again, so to make it permanent we have to edit some files, in particular the /etc/network/interfaces file.

This looks like this for a normal core on linuxmce:

 auto lo
       iface lo inet loopback
 auto eth0
 iface eth0 inet dhcp
 auto eth1
 iface eth1 inet static
       address 192.168.80.1
       netmask 255.255.255.0

So eth0 is getting it's ip from your isp through dhcp and therefor also the mtu setting Eth1 is getting a static ip that's provided.

Now the changes you want to make to make sure the mtu is 1500 for everything are the following....

For the dhcp eth0 you need to add a line telling the nic to set the mtu at 1500 which looks like this

 post-up /sbin/ifconfig $IFACE mtu 1500

For the static eth1 it's easier and you can add a line telling the mtu to be 1500 (or whatever you like, you can experiment with your internal network for better package handling, i've heard up to 9000, but this is up to you)

 mtu 1500

Your interfaces file should look something like this now:

 auto lo
       iface lo inet loopback
 auto eth0
 iface eth0 inet dhcp
   post-up /sbin/ifconfig $IFACE mtu 1500
 auto eth1
 iface eth1 inet static
       address 192.168.80.1
       netmask 255.255.255.0
       mtu 1500

after a networking restart:

 /etc/init.d/networking restart

look at your ifconfig again and it should have the correct mtu settings

Hope this helps, please add aditional information if needed/wanted.