Cisco 877: QoS and Class-map stats over SNMP?

Soldato
Joined
18 Oct 2002
Posts
7,139
Location
Ironing
Is it possible to get hold of QoS and class-map stats via SNMP on a Cisco 877? I'm trying to figure out a way to monitor how much traffic is being allocated to which class-map in real-time so I can make sure the QoS is working properly. I'm looking through the MIB browser, but can't find anything on it.

*edit* I think I'm looking for the CISCO-CLASS-BASED-QOS-MIB-CAPABILITY which according to http://www.cisco.com/en/US/prod/col...s6200/product_data_sheet0900aecd8028a976.html is supported. Can't for the life of me figure out how to access it.
 
Last edited:
Currently looking at cricket, but just trying to get anything out of snmpwalk at the moment. I've got a fairly simple config - three class-maps (one realtime, one besteffort, and one scavenger) and just want to see what proportion of traffic is mapped to which. I can get something out of 1.3.6.1.4.1.9.9.166:

Code:
growse@bounce ~ $ snmpwalk -v2c -c public hostname 1.3.6.1.4.1.9.9.166
SNMPv2-SMI::enterprises.9.9.166.1.6.1.1.1.5750752 = STRING: "ipnat-policyxx-in2out"
SNMPv2-SMI::enterprises.9.9.166.1.6.1.1.2.5750752 = ""
SNMPv2-SMI::enterprises.9.9.166.1.7.1.1.1.1593 = STRING: "class-default"
SNMPv2-SMI::enterprises.9.9.166.1.7.1.1.1.14305089 = STRING: "ipnat-class-acl-102"
SNMPv2-SMI::enterprises.9.9.166.1.7.1.1.2.1593 = ""
SNMPv2-SMI::enterprises.9.9.166.1.7.1.1.2.14305089 = ""
SNMPv2-SMI::enterprises.9.9.166.1.7.1.1.3.1593 = INTEGER: 3
SNMPv2-SMI::enterprises.9.9.166.1.7.1.1.3.14305089 = INTEGER: 2
SNMPv2-SMI::enterprises.9.9.166.1.8.1.1.1.1594 = STRING: "Match any "
SNMPv2-SMI::enterprises.9.9.166.1.8.1.1.1.4612066 = STRING: "Match access-group 0"
SNMPv2-SMI::enterprises.9.9.166.1.8.1.1.2.1594 = INTEGER: 1
SNMPv2-SMI::enterprises.9.9.166.1.8.1.1.2.4612066 = INTEGER: 1
 
Back
Top Bottom