Link to home
Start Free TrialLog in
Avatar of Westez
Westez

asked on

eth_set command syntax?

What's the proper syntax for using the eth_set command to set the nic at 100 mbps full duplex and 10 mbps half-duplex?
Avatar of Pablo Allietti
Pablo Allietti
Flag of Uruguay image

try with this

mii -tool -F 100baseTx-FD eth0
Personally I use ethtool these days. It's included in most distro's.

ethtool -s eth0 speed 100 duplex full
ethtool -s eth0 speed 10 duplex half
Avatar of Westez
Westez

ASKER

Thanks for the info, but what I really need is the syntax for the eth_set command.  I believe it to be "eth_set eth0 100 f" but I'm looking for confirmation.
ASKER CERTIFIED SOLUTION
Avatar of alester
alester
Flag of Brazil image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks Cyclops3590