Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

The following code is an example configuration for a cisco device using SNMP (v2c) v1 or v2 showing how to configure and access list, a an SNMP view, SNMP read-only access and read-write access.  If you would prefer to use SNMP V3 see our guide here.

If you are looking for a good SNMP management platform to provide fault and performance management you can download NMIS from here.  NMIS is an open source network management system, which supports Cisco devices including Nexus, ASR, CRS, Catalyst and good old IOS.

Configuration

The first command in the code below allows creates an access list that includes any device from 192.168.1.X to connect to it via SNMP and names the list 42.  

The configuration then creates a view of the SNMP tree named NMIS8RO that allows the whole tree (iso is the root) to be visible (this could be changed so only the ifTable was accessible, for example), a the community string  NMISreadView is NMISreadView is then attached to the view NMIS8RO and added as read-only to the access list 42.  

...

If read-write access is required you can use the next line, NMISwrite is configured as a it enables SNMP writes using NMISwrite  as the community string that has full access to the snmp tree (no view given) when connecting from access list 42.

...

That should be all that is required to get basic SNMP access to your router configured.  If you haven't already, add your cisco device to NMIS, instructions to do that are here. Note: if you have setup your device and everything should be working but it doesn't, try using SNMP v1 (see the previous instructions for how to do that in NMIS)

Testing

To test the new configuration use snmpwalk on your linux server running NMIS or your NMIS VM:

Code Block
snmpwalk -v 2c -c NMISread <cisco_device_name_or_ip> 1.3.6.1.2.1.1

This command should output something like this:

Code Block
NMPv2-MIB::sysDescr.0 = STRING: Cisco IOS Software, 1841 Software (C1841-ADVENTERPRISEK9-M), Version 12.4(25f), RELEASE SOFTWARE (fc2)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2011 by Cisco Systems, Inc.
Compiled Tue 16-Aug-11 06:21 by prod_rel_team
SNMPv2-MIB::sysObjectID.0 = OID: SNMPv2-SMI::enterprises.9.1.620
DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (96372878) 11 days, 3:42:08.78
SNMPv2-MIB::sysContact.0 = STRING: 
SNMPv2-MIB::sysName.0 = STRING: cisco_device_name_or_ip
SNMPv2-MIB::sysLocation.0 = STRING: 
SNMPv2-MIB::sysServices.0 = INTEGER: 78
SNMPv2-MIB::sysORLastChange.0 = Timeticks: (0) 0:00:00.00

 

For more information, commands and sample configurations see the cisco configuration guide: http://www.cisco.com/en/US/docs/ios/12_2/configfun/configuration/guide/fcf014.html