It looks like 1.1 = iso
I think you may want to look at this:
If we look at the OBJECT ciscoCircuitInterfaceGroup
.1.3.6.1.4.1.9.9.160.3.2.1
ciscoCircuitInterfaceGroup OBJECT-TYPE
-- FROM CISCO-CIRCUIT-INTERFACE-MIB
DESCRIPTION "The Cisco Circuit Interface MIB objects."
::= { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) cisco(9) ciscoMgmt(9) ciscoCircuitInterfaceMIB(160) ciscoCircuitInterfaceMIBConformance(3) ciscoCircuitInterfaceMIBGroups(2) 1 }
You can see how the "1.3.6.1.4.1.9.9.160.3.2.1" is the numeric value.
So, walking the tree back some more....
.1.3.6.1.4.1.9.9.160
ciscoCircuitInterfaceMIB OBJECT-TYPE
-- FROM CISCO-CIRCUIT-INTERFACE-MIB
DESCRIPTION "The MIB module to configure the circuit description
for an interface.
The circuit description can be used to describe and
identify circuits on interfaces like ATM,
frame-relay etc."
::= { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) cisco(9) ciscoMgmt(9) 160 }
It starts to make more sense as you work in it, but it takes some time.
This is a handy tool:
https://www.marcuscom.com/snmptrans/
Now, reading the data back in.....
I think you will have to build some regex and lookups, unless someone has a better method.
... View more