Link to home
Start Free TrialLog in
Avatar of bennisabraham
bennisabraham

asked on

Change NIC setting to 100 to Auto

I would like to change the NIC settings from 100 to Auto, Auto_negotiation Yes without restarting the  Linux Machine.

Avatar of Pablo Allietti
Pablo Allietti
Flag of Uruguay image

you can do that with mii-tool

 mii-tool -F 100baseTx-HD

here you have an examples.
http://www.cyberciti.biz/faq/linux-change-the-speed-and-duplex-settings-of-an-ethernet-card/

or ethtool...

ethtool -s eth0 autoneg on
Avatar of bennisabraham
bennisabraham

ASKER

What should I do with the /etc/modules.conf

Can I remove this line in module.conf
options eth0 line_speed=1000 auto_speed=0 full_duplex=1.
yes you need to remove this line to NOT_FORCE the nic to that this
I want to be very specific, I am going to follow these steps

1. Removing  this line in /etc/modules.conf
    options eth0 line_speed=100 auto_speed=0 full_duplex=1.
2. eth0 -s ethtool -s eth0 autoneg on
3. Service network restart
4. chkconfig network on

 Will this work and can i change it to Gig Connection
ASKER CERTIFIED SOLUTION
Avatar of Pablo Allietti
Pablo Allietti
Flag of Uruguay 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