Jumbo Frameの設定
2007/12/02
MTUを設定すればいいようです。
ifconfig
一時的な設定。再起動したら元に戻ります。9000までしか値が設定出来なかったのはNICの制限なのか、ifconfigの制限なのか……。
# ifconfig eth1 mtu 9000 # /etc/init.d/network restart
/etc/network/interfaces
NICの設定はここに書く。
# eth1 for static auto eth1 iface eth1 inet static address 192.168.xxx.2 network 192.168.xxx.0 netmask 255.255.255.0 broadcast 192.168.xxx.255 gateway 192.168.xxx.1 # Jumbo Frame設定 mtu 9000