How to increase MTU size on Linux 2.6?
How to increase MTU size on Linux 2.6?
Is such a thing possible? If yes, which files (in /etc
or elsewhere) must one edit?
Solution 1:
I'd warn you not not to do it unless you are really certain, that this is what you really want (like having two servers directly connected by cross-over cable over Gigabit Ethernet interfaces).
There's already PMTUD algorithm, which is able to deduce MTU size across the path. And when rising MTU above that you'll either experience some packet loss or will make network-administrating guys sad, because their routers and switches will have to fragment your packets using CPU as opposed to fast routing with ASICs.
If that's what you want, then you may want to see http://wiki.archlinux.org/index.php/Jumbo_Frames, which has some nice numbers and hints. The basic command is ip link set mtu 4000 dev eth0
(or ifconfig eth0 mtu 4000
for older ifconfig tool) for 4K packets.
Solution 2:
Changing the MTU size with ifconfig command
In order to change the MTU size, use /sbin/ifconfig command as follows:
ifconfig ${Interface} mtu ${SIZE} up
ifconfig eth1 mtu 9000 up
Changing the MTU size permanently under CentOS / RHEL / Fedora Linux
Edit /etc/sysconfig/network-scripts/ifcfg-eth0, enter
# vi /etc/sysconfig/network-scripts/ifcfg-eth0
Add MTU, settings:
MTU="9000"
Save and close the file. Restart networking:
# service network restart
Note for IPV6 set dedicated MTU as follows:
IPV6_MTU="1280"
Changing the MTU size permanently under Debian / Ubuntu Linux
Edit /etc/network/interfaces, enter:
# vi /etc/network/interfaces
Add mtu as follows for required interface:
mtu 9000
Save and close the file. Restart the networking, enter:
# /etc/init.d/networking restart
Changing the MTU size permanently (other Linux distros)
Edit /etc/rc.local and add the following line:
/sbin/ifconfig eth1 mtu 9000 up
Solution 3:
Assuming you mean MTU (Maximum Transmission Unit), check out this article: http://www.debianhelp.co.uk/mtu.htm (should be similar across Linuxen)