Checking the Status of Your NICs

By Sandra Henry-Stocker  Add a new comment

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.

    Add a comment

    Post a comment using one of these accounts
    Or join now
    At least 6 characters

    Note: Comment will appear soon after you have activated your account.
    Obscene/spam comments will be removed and accounts suspended.
    The information you submit is subject to our Privacy Policy and Terms of Service.

    ITworld LIVE

    NetworkingWhite Papers & Webcasts

    White Paper

    The 2011 iPass Mobile Enterprise Report

    This industry survey covers trends, recommendations and a policy guide on managing Enterprise Mobility for IT management and CIOs. Get data on employee device liability, as well as smartphone/tablet penetration, budget control and provisioning. Find out how your organization compares, how to ensure mobile worker productivity, and control costs.

    Webcast On Demand

    Managing Enterprise Mobility Costs

    Mobile employees, especially those traveling internationally, were spending time and resources finding and making connections. Roaming costs were out of control. The IT Administrator at The Hay Group tells you how he got more control over these costs, providing management with predictable budgets and insights while ensuring employee productivity.

    Sponsor: iPass

    White Paper

    Digital Transformation: Creating New Business Models Where Digital Meets Physical

    Individuals and businesses alike are embracing the digital revolution. Social networks and digital devices are being used to engage government, businesses and civil society, as well as friends and family.

    White Paper

    The Journey to the Private Cloud

    Both business and IT need the agility enabled by the private cloud. Now you can apply technologies and processes pioneered by public cloud services to your own data center.

    Webcast On Demand

    Navigating the Public Cloud

    InfoWorld contributing editor and consultant David Linthicum offers expert advice about choosing services to outsource to the public cloud providers, cloud data security and identity, integrating public cloud services, and how to avoid provider lock-in.

    Sponsor: Intel

    See more White Papers | Webcasts

    Ask a question

    Ask a Question