You are not logged in.
Pages: 1
hello
ifconfig eth0 mtu 1492 if i type this at root by start the system my inet work fine ! but where can i put the mtu 1942 for ever
here is some from my /etc/rc.conf
lo="lo 127.0.0.1"
eth0="eth0 192.168.123.30 netmask 255.255.255.0 broadcast 192.168.123.245"
INTERFACES=(lo eth0)
can some one type ist again with the mtu inside ?
i dont know if it is the right place to put it in
traster
Offline
Max MTU of ethernet is 1500.
Offline
in rc.conf:
eth0="eth0 192.168.123.30 netmask 255.255.255.0 broadcast 192.168.123.245 mtu 1492"
"...archoholism is a hard disease to cure..."
Archlinux Brasil
Offline
Sorry, but I didn't notice the typo in '1942', so I thought you wanted to set it higher than 1500. If I understand correctly your ethernetcard works only with mtu=1492?
Did you try
eth0="eth0 192.168.123.30 netmask 255.255.255.0 broadcast 192.168.123.245 mtu 1492"
in rc.conf? As far as I know those options are passed on to ifconfig, and in general the order of options doesn't matter much. Adding it to the end seems safest though.
Offline
How can I set MTU value in rc.config, if i use DHCP?
eth0="dhcp"
Offline
just chuck "ifconfig eth0 mtu 1492" in your /etc/rc.local.
iphitus
Offline
just chuck "ifconfig eth0 mtu 1492" in your /etc/rc.local.
Thank you. It's so simple :-)
Offline
Pages: 1