In the late 1980’s, SNMP or the Simple Network Management Protocol first emerged as a solution for managing nodes within a network. Since then SNMP data has been used to measure the system performance of devices across countless vendors to help ensure that networks stay up and running.

How Does SNMP Work?

However, before we look at the snmpwalk command, we first need to look at how SNMP works. On SNMP-enabled devices, an SNMP agent collects information from the device and stores it within a Management Information Base (MIB) where this data is stored so that it can be accessed whenever the SNMP manager polls the SNMP agent.

When the SNMP Manager queries the SNMP agent, data is taken from the MIB and sent to the SNMP Manager where it can be viewed with a network monitoring tool. There are many different commands that you can use to query an SNMP agent. The most common ways are through the use of the GET or the GET-Next command. The GET command is used to take an Object Identifier (OID) from the MIB. The GET-Next command is a little more advanced and goes through a MIB tree from OID to OID pulling information. This is where snmpwalk comes in.

What is snmpwalk?

snmpwalk is the name given to an SNMP application that runs multiple GETNEXT requests automatically. The SNMP GETNEXT request is used to query an enabled device and take SNMP data from a device. The snmpwalk command is used because it allows the user to chain GETNEXT requests together without having to enter unique commands for each and every OID or node within a sub-tree.

The snmpwalk is issued to the root node of the sub-tree so that system information is gathered from every connected node. This provides you with an efficient way to collect information from a range of devices like routers and switches. The information you collect arrives in the form of OIDs. An OID is an object which is part of the MIB within an SNMP-enabled device.

Installing snmpwalk on Windows

For Microsoft Windows users, the process of installing snmpwalk on Windows is incredibly simple.

Installing snmpwalk on Linux

On Linux devices, snmpwalk is available as a package for you to install. The process of doing this depends on your Linux distribution. However, you can install Linux by entering the following commands:

  • Redhat/Fedora/CentOs:
  • yum install net-snmp-utils
  • Ubuntu:
  • apt-get install snmp

snmpwalk Parameters and Options in Windows and Linux

snmpwalk has a range of different parameters that you can use. These include the following:

yum install net-snmp-utils

apt-get install snmp

How to Minimize the Information You See With snmpwalk

One of the first things you’ll notice when running snmpwalk is that there are too many results for you to read. You can easily end up with thousands of different results. To get around this vendors help you by providing you with a MIB file. The MIB file is used to specify which OIDs are available on a device. Many vendors provide you with a MIB file for each device you have. Having a MIB file allows you to run a query that is specific to that file, rather than walking through everything.

See also: SMNP tools

snmpwalk Examples

When using snmpwalk on a device you will be provided with a range of values by the SNMP agent. You will be walking through the OID from your starting OID onwards. If you enter the snmpwalk command on a device then a similar result to the following will display:

$ snmpwalk -v1 -c public 10.10.1.224 SNMPv2-MIB::sysDescr.0 = STRING: APC Web/SNMP Management Card SNMPv2-MIB::sysObjectID.0 = OID: SNMPv2-SMI::enterprises.318.1.3.7 SNMPv2-MIB::sysUpTime.0 = Timeticks: (47372422) 5 days, 11:35:24.22 SNMPv2-MIB::sysContact.0 = STRING: Comparitech SNMPv2-MIB::sysName.0 = STRING: APC-3425 SNMPv2-MIB::sysLocation.0 = sTRING: 3425EDISON SNMPv2-MIB::sysServices.0 = INTEGER: 72 IF-MIB:: ifNumber.0 = INTEGER: 1 IF-MIB:: ifIndex.1 = INTEGER: 1 IF-MIB:: ifDescr.1 =STRING: veya ……… SNMPv2-MIB:: snmpOutGetResponses.0 =Counter32: 338 SNMPv2-MIB: snmpOutTraps.0 = Counter32: 0 SNMPv2-MIB:: snmpEnableAuthenTraps.0 = INTEGER: 0 $

As you can see that is a lot of system information generated by a single command. Most of the lines are comprised of information pulled from the MIB.

snmpwalk example with no MIB

In the example below, you can see a snmpwalk example with no MIB. The second number on the first line, or the .1.3.6.1.4.1.318, is the OID that we started from.

$ snmpwalk -v1 -c public 10.10.1.224 .1.3.6.1.4.1.318 SNMPv2-SMI::enterprises.318.1.1.1.1.1.1.0 = STRING: “Silcon DP340E” SNMPv2-SMI::enterprises.318.1.1.1.1.1.2.0 = STRING: “UPS_IDEN” SNMPv2-SMI::enterprises.318.1.1.1.1.2.1.0 = STRING: “314.10.D ……

snmpwalk example with MIB denoted

However, if you have a specific MIB then you can get more detailed information returned back to you from the objects that you want to view. In the example below the -m command denotes the MIB that is going to be queried.

$ snmpwalk -v1 -c public -m “./APC-POWERNET.txt” 10.10.1.224 apc PowerNet-MIB::upsBasicIdentModel.0 = STRING: “Silcon DP340E” PowerNet-MIB::upsBasicIdentName.0 = STRING: “UPS_IDEN” PowerNet-MIB::upsAdvIdentFirmwareRevision.0 = STRING: “314.10.D” …..

snmpwalk example command on Linux

Below is a snmpwalk example command on Linux. As you can see this functions in much the same way walking through the OIDs to pull the relevant system information from the connected devices:

% snmpwalk-v 1 localhost public system # system.sysDescr.o = “SunOS name sun4c”

system.sysObjectID.o = OID: enterprises.ucdavis.ucdSnmpAgent.sunos4

system.sys.UpTime.o = Timeticks (595637548) 68 days, 22:32:55

system.sysContact.o = “sys_admin@stc.org>”

system.sysName.o = “Ridyadh_o8_WS”

system.sysLocation.o = “Ridyadh, KSA”

system.sysServices.o = 72

Save Time with snmpwalk

snmpwalk seems like a complicated concept but it isn’t in reality. The snmpwalk command is simply a shorthand way to use multiple GETNEXT requests without having to type lots of different commands. With one snmpwalk command, you can fire off lots of different GETNEXT and view your infrastructure health.

If you’re using the snmpwalk command then it’s important to remember to cut down the amount of information you receive as much as possible. Specifying a MIB will allow you to see specific information rather than data collected from an entire database of object IDs!

By drawing SNMP data from devices throughout your network this way, you can make sure that you don’t miss anything important happening on your network. After all the snmpwalk command is there to help you pull SNMP data from devices in your network as efficiently as possible.

Using MIB with an SNMP agent

SNMP agents collect network device information and store it in a Management Information Base (MIB) and become accessible to powerful SNMP tools.

Our methodology for selecting MIB analyzers like snmpwalk

We reviewed the market for MIB analyzers like snmpwalk and assessed the options based on the following criteria:

  • An interpreter for the OID structure of SNMP
  • A tool that includes a visual layout of the OID tree
  • A view that shows the OID value plus a description for each active node
  • A display of whether an OID node has a value or not
  • A graphical user interface that is easy to use
  • A free trial for a no-risk assessment
  • Value for money represented by useful functionality at a good price

ManageEngine SNMP MIB Browser

The SNMP MIB Browser from ManageEngine is a visual SNMP Walk tool that will run on Windows and Linux. This is a great free alternative to the big network monitoring systems like PRTG if you just want to see the details in the MIB returned by a specific device. The MIB Browser can also query a series of devices and summarize their MIBs.

Download the free SNMP MIB Browser from ManageEngine.

Pros:

  • Lets you query a specific device or a range of devices
  • Will run on Linux and Windows
  • Supports SNMP v1, v2, and v3
  • Can be set up to query and read MIBs continuously
  • Has an alert system that can be set up to trigger if a fail status is in a MIB
  • Will send alerts by email
  • Can parse MIBs

Cons:

  • Not a full network monitor

See also: Best SNMP Monitoring Tools

  • Go to the Start Menu, expand Windows Administrative Tools, and click on Services.
  • Scroll down the displayed list of services to find the SNMP entry. Its Status should be Running if it is working.