Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Network card speed change

Status
Not open for further replies.

ejmilne

Technical User
Apr 23, 2003
37
GB
Hi,

I have a server connecting to the network at 100mb half duplex and I need to change it to full duplex - does anyone know the commands to do this?

Thanks!
 
Hi. This might help, from FAQ60-3981 in this forum:

To hardcode the speed of the Network Interface Card
Example:
You want to hardcode 100Full Duplex for hme0
#ndd -set /dev/hme instance 0
#ndd -set /dev/hme adv_100fdx_cap 1
#ndd -set /dev/hme adv_100hdx_cap 0
#ndd -set /dev/hme adv_10fdx_cap 0
#ndd -set /dev/hme adv_10hdx_cap 0
#ndd -set /dev/hme adv_autoneg_cap 0

Create an input on the file /etc/system so that when your system rebooted it will run the NIC in 100Full Duplex
automatically.
set hme:hme_adv_100fdx_cap=1
set hme:hme_adv_100hdx_cap=0
set hme:hme_adv_10fdx_cap=0
set hme:hme_adv_10hdx_cap=0
set hme:hme_adv_autoneg_cap=0
 
The entries going into /etc/system have been deprecated. The preference is to now place them in /platform/`uname -i`/kernel/drv/<interface>.nic where <interface> = bge, ce, etc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top