Sunday, May 3, 2009

Determine the Speed & Duplex for each live NIC on the Solaris system

Determine the Speed & Duplex for each live NIC on the Solaris system

 

 

  1. Find the type of interface

#netstat –i

 

  1. Follow below steps depends upon NIC type

 

 

S.No

NIC Type

NIC Speed

NIC Duplex

1

ce

#kstat ce: :parameters | grep link_speed

 

If output value,

10     à 10 Mbit/s

100   à 100 Mbit/s

1000 à 1 Gbit/s

 

 

 

#kstat ce: :parameters | grep link_duplex

 

If output value,

1 à Half

2 à Full

 

2

bge

#kstat bge: :parameters | grep link_speed

 

If output value,

10     à 10 Mbit/s

100   à 100 Mbit/s

1000 à 1 Gbit/s

 

 

#kstat bge: :parameters | grep link_duplex

 

If output value,

1 à Half

2 à Full

3

iprb

#kstat iprb: |grep ifspeed

 

If output value,

10000000  à 10 Mbit/s

100000000 à 100 Mbit/s

1000000000 à 1 Gbit/s

#kstat iprb: |grep duplex

 

(Output will show half/full directly)

4

le

 

      SPEED="10 Mbit/s"

 

  • Here speed is constant for le type NIC

 

DUPLEX="half"

 

 

  • Here Duplex is constant for le type NIC

 

5

Others

(hme, ge, eri, qfe
)

 

#ndd -get /dev/ link_speed

 

If output value,

0     à 10 Mbit/s

1   à 100 Mbit/s

1000 à 1 Gbit/s

 

 

#ndd -get /dev/ link_mode

 

If output value,

1 à Half

2 à Full

 

No comments:

Post a Comment