Networking

Checking the Status of Your NICs

September 15, 2009, 05:21 PM — 

The reports can tell you a lot of useful things about your network interface cards. You can tell what type of interfaces you have, whether they are auto-negotiating their duplex settings with whatever switch or other device they connect to, whether they're up, what speed they're running and whether they're running in full or half duplex. You also get a listing of the MAC (hardware) addresses associated with each interface.

Here are a couple examples:

      Link:  Auto-Neg:   Status:   Speed:    Mode:  Ethernet Address:
---------------------------------------------------------------------
      bge0         ON        UP    100MB      FDX    0:3:ba:55:21:a4
      bge1         ON        UP    100MB      FDX    0:3:ba:55:21:a5

      Link:  Auto-Neg:   Status:   Speed:    Mode:  Ethernet Address:
---------------------------------------------------------------------
     nxge0        OFF        UP    100MB      FDX   0:21:28:26:c0:ff
     nxge1	  OFF	     UP    100MB      FDX   0:21:28:26:c1:00

The tool is a Korn shell script that contains a series of commands and case statements that yank information configuration parameters and settings from various kernel drivers and interpret the results for you. Instead of having to type commands like this one and interpreting that the "0" as meaning OFF or "1" as meaning ON, we get the information in a tidy column.

# /usr/sbin/ndd -get /dev/nxge0 adv_autoneg_cap
0

It includes a series of commands and case statements such as this ndd command and case statement that translates 0, 1 or anything else as half duplex, full duples or an error:

mode=`${NDD} -get /dev/${1} link_mode`
case $mode in
   1) MODE=FDX          ;;
   0) MODE=HDX          ;;
   *) MODE=ERROR        ;;
esac
}

It can extract information from commands like this and add it to your table:

# /usr/sbin/dladm show-dev nxge0
nxge0           link: up        speed: 100   Mbps       duplex: full

You can get download this script from BigAdmin at this page:

http://www.sun.com/bigadmin/scripts/submittedScripts/nicstatus.txt

Distribute the tool across your systems or add it to a shared (NFS-mounted) file system and you can easily check the status of network interface cards.

The nicstatus script is a user-contributed script that Paul Bates, James Council Octave Orgeron and others provided (see the comments at the top of the script for additional details).

Due to the commands used in the script (such as ndd), it must be run as root.

Sign up for ITworld's Daily newsletter
Follow ITworld on Twitter @IT_world

I like it!
Post a comment
The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
peer-to-peer

Esther Schindler
If the comments are ugly, the code is ugly

claird
SVG a graphics format for 21st century

pasmith
Take Chrome OS for a test spin

Sandra Henry-Stocker
Solaris Tip: Have Your Files Changed Since Installation?

sjvn
64-bits of protection?

jfruh
Android fragments vs. the iPhone monolith

mikelgan
What Gizmodo missed about the Pro WX Wireless USB disk drive

 

Sidekick: The Good News & the Bad News
Either way you look at it Microsoft Data Center management did not follow standards or best practices in this failure. In which case it makes me wonder more about the outsourcing of corporate data much less personal data.
- mburton325

Join the conversation here

The Daily Tip

The Daily TipQuick, practical advice for IT pros. Made fresh daily.

Hot tips:

Want to cash in on your IT savvy? Send your tip to tips@itworld.com. If we post it, we'll send you a $25 Amazon e-gift card.

Newsletters

Subscribe to ITWORLD TODAY and receive the latest IT news and analysis.

I would like to receive offers via email from ITworld partners.
By clicking submit you agree to the terms and conditions outlined in ITworld's privacy policy.
Featured Sponsor

AISO founders envisioned a Web hosting company that was environmentally friendly. While the company employed energy-efficient innovations like solar panels, its infrastructure produced unacceptable power and cooling requirements. Find out how AISO leveraged AMD technology to overcome their challenge in this case study white paper.

In this whitepaper, Scalar explores the opportunity to change the landscape with respect to mission critical databases built around Oracle. Leveraging technologies such as Linux, high-end commodity processing power and Oracle RAC technology to architect, design, build and maintain database infrastructure that delivers maximum availability, reliability and performance at a fraction of traditional cost.

On a typical day, weather.com, the Web site for The Weather Channel in Atlanta, serves up between 15 million and 20 million page views. But in September 2004, when back-to-back hurricanes ransacked Florida, the peak traffic on one day more than tripled: over 70 million page views by more than 7 million unique visitors. Read the full success story now.

Marketplace