Operating System - HP-UX
1753317 Members
5044 Online
108792 Solutions
New Discussion юеВ

Speed and duplex mode of lanconsole

 
SOLVED
Go to solution
Christian Marquardt_1
Regular Advisor

Speed and duplex mode of lanconsole

Hello,
can everyone tell me how to check the speed and duplex mode of the lanconsole on hp/ux machines like rx2600 or rp4440. Is this configurable or is it hard configured to 10/half?

Regards
Christian
2 REPLIES 2
Peter Godron
Honored Contributor
Solution

Re: Speed and duplex mode of lanconsole

Christian,
some machines (D&K class) have hard set lan speed ports, but can have additional ports added.

Although for SUN this document may help
http://aa11.cjb.net/sun_managers/2000/07/msg00503.html

The main commands are ndd and lanadmin

#turn off autonegotiation
ndd -set /dev/hme adv_autoneg_cap 0

#enable 100 full duplex
ndd -set /dev/hme adv_100fdx_cap 1


ndd -get /dev/hme link_mode
link_mode
0=half duplex
1=full duplex

ndd -get /dev/hme link_speed
link_speed
0=10BT
1=100BT

ndd -get /dev/hme link_status
link_status
0=down
1=up

Regards
Christian Marquardt_1
Regular Advisor

Re: Speed and duplex mode of lanconsole

Thanx Peter. I've found a solution by trying out ...