determining ethernet port speed in solaris


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users determining ethernet port speed in solaris
# 1  
Old 11-07-2003
determining ethernet port speed in solaris

i purchased, what was labeled as a 4-port fast ethernet sbus card from ebay.

i installed it in my ultra1, and it seems to be working fine. how can i determine if the card is infact a fast ethernet card vs. the standard ethernet 4-port card?
# 2  
Old 11-07-2003
Look at the man page for the driver it's using. Fast ethernet drivers will have features to change speed and turn autoneg on and off. The only fast 4-port card I know is qfe and "man qfe" describes what it can do. But there may be others.
# 3  
Old 11-07-2003
hmmm... i'd still like to know if there is a specific command... but i got lazy and looked at the switch lights... it is a 10/100 4-port card Smilie
# 4  
Old 11-07-2003
You could use the ndd command to show you the settings for your interfaces. I don't remember the exact options you'd use, but if you do

ndd /dev/tcp \?

it will show you the list of parameters ndd can report. One of them should certainly be able to tell you the speed.
# 5  
Old 11-07-2003
The tcp driver won't know the link speed. How could it? There could be many links. You have to ask the card's driver.

ndd /dev/qfe instance n -get \?

would show the possible parameters for a qfe card. But unless you're already familiar with the qfe driver, you would probably do a "man qfe" first. And in any event you're back to needing to know the driver's name.
# 6  
Old 11-07-2003
That's right of course. Use ndd on the particular interface, not on tcp itself. Now that you wrote that, I remember the ndd commands I was using to set link speeds were all done with /dev/qfe just like you say. Sorry I messed it up the first time.
# 7  
Old 11-07-2003
danke to you both...

this goes in curious infomation file. Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. AIX

AIX 4.2 increase ethernet speed

Hello. I have a server RS/6000 with AIX 4.2. The server have a network card with 10/100mbps speed, but for some reason, the ethernet only runs at 10Mbps, it doesn,t matter if I put the net cable on a 100Mbps switch, it keeps running at 10Mbps speed.... I know how to view/change ethernet speed... (1 Reply)
Discussion started by: little_ball
1 Replies

2. UNIX for Dummies Questions & Answers

Determining Disk Speed

Hi, I went to a computer store and the salesman sold me a SATA cable and told me that all SATA cables are the same. Another salesman at a different store told me a cable rated for SATA 2, which I bought, MIGHT work as well as one rate for SATA 3 but it is not guaranteed. I decided to run a... (3 Replies)
Discussion started by: mojoman
3 Replies

3. UNIX for Advanced & Expert Users

Determine the ethernet (NIC) card speed.

Hi, Does anyone know how can I determine the maximum capable speed on a network interface card for different OS like HP, Sun, AIX and Linux. I am aware of the tool "ethtool" which can be used for Linux. Are there any handly commands or /proc files where I can get this info depending on the OS.... (3 Replies)
Discussion started by: devtakh
3 Replies

4. Red Hat

Duplicating ethernet speed

Hi guys, Suppose you have a server with two ethernet cards (1GB each) and each cards are connecting to two different switches cisco 3750. My question is: How can I setup my server's network interfaces to increase the throughput up to 2GB? is it possible? If not, do you know another way to up... (3 Replies)
Discussion started by: iga3725
3 Replies

5. Solaris

Ethernet Port Name

I have a new Sun 440 and I am trying to configure it. Non of the Ethernet ports are enabled; when I issue "ifconfig -a" it returns nothing. Is there a way to know the available port name (e.g. ce, bge, etc.) by running a command or so ? (4 Replies)
Discussion started by: StarSol
4 Replies

6. Solaris

Reg. Ethernet port

Hi Friends, I am using intel system installed solaris 10, when i check ifconfig -a it doesn't show any thing eg-for HP servers hme0, for sun servers-iprb0. for me it doesn't show any thing, and tell me what files to be modified. Thanks in Advance. (1 Reply)
Discussion started by: kurva
1 Replies

7. UNIX for Dummies Questions & Answers

how can i see ethernet card speed in solars

hai this is nagesh when i was doing practical , i find some dought. iam using solaris 9. how can i see the ethernet card speed , wheather it is halfduplex or full duplex.any body please help me (4 Replies)
Discussion started by: nag.mi2000
4 Replies

8. AIX

AIX - Determining link speed

I am trying to find a command to return the "link" speed of the networks installed on AIX. ifconfig - gives me where the link is up and the duplex setting. I need to determine for example if the ethernet connection is 10, 100, 1000 Mbs or what the current speed is based on the network media... (3 Replies)
Discussion started by: karlgo
3 Replies
Login or Register to Ask a Question