Operating System - Linux
1833759 Members
2480 Online
110063 Solutions
New Discussion

redhat EL4, NIC half-duplex to full-duplex

 
SOLVED
Go to solution
ran_li
Regular Advisor

redhat EL4, NIC half-duplex to full-duplex

hello all,

I have a RHEL 4, the eth0 is set to

#mii-tool
eth0: no autonegotiation, 100baseTx-HD, link ok

need to set it to 100beaseTX-FD,
#mii-tool -F 100baseTx-FD eth0

however, it could not be set on the fly, while I did the same to another Redhat host, it works fine.

Is there any other way to set the eth0 to full-duplex on the fly?

Regards!
4 REPLIES 4
Ivan Ferreira
Honored Contributor
Solution

Re: redhat EL4, NIC half-duplex to full-duplex

mii-tool is deprecated now, use ethtool instead.
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Steven E. Protter
Exalted Contributor

Re: redhat EL4, NIC half-duplex to full-duplex

Shalom,

yes, use ethtool

RH 4 autonegotiates rather well and I'd be concerned about this issue. I'd check my network switch configuration off the server. More than likely something is wrong.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Ivan Ferreira
Honored Contributor

Re: redhat EL4, NIC half-duplex to full-duplex

See also:

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1005380

For making the changes permanent.
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
ran_li
Regular Advisor

Re: redhat EL4, NIC half-duplex to full-duplex

thanks guys!

tried below and it works!
# ethtool -s eth0 speed 100 duplex full autoneg off

however, must use "autoneg off" otherwise won't be able to switch on the fly.

Regards!