11/6 How do I force the speed and duplex of a ethernet device
to 100BaseT Full-Duplex under Linux?
\_ put the line:
options eth0 options=48
in /etc/conf.modules and reboot. I have no idea how to do it
if networking is not a module. -ausman
\_ This is one stupidity of linux that I hate.
Here is how you do it in lilo: Add this line to the
"image =..." block:
APPEND="ether=0,0,0x30,eth0"
--PeterM
\_ Perhaps I should have been more specific. Is there a way to
do this a runtime like on Solaris, *BSD or IOS?
\_ Only if you insert the ethernet module into the kernel.
This is why it is a stupidity of linux that I hate.
I don't know exactly how to do this, possibly something like
insmod eepro100.o options="ether=0,0,0x30,eth0", but you'll
need to read up on it. --PeterM |