I am attempting to retrieve the MAC Addresses of devices connected to ports on a Cisco Catalyst 3750X. The documentation for how to do this can be found here
The problem I am experiencing is that there are OIDs being skipped which I know to exist. Using an independent tool from F5 I was able to perform an SNMP Walk on the device which returned the results I was expecting:
*1.3.6.1.2.1.17.4.3.1.1.0.0.104.31.130.191 00 00 68 1F 82 BF
*1.3.6.1.2.1.17.4.3.1.1.0.10.156.82.23.175 00 0A 9C 52 17 AF
*1.3.6.1.2.1.17.4.3.1.1.0.19.198.0.104.194 00 13 C6 00 68 C2
*1.3.6.1.2.1.17.4.3.1.1.0.21.178.161.39.131 00 15 B2 A1 27 83
where the snmpwalk's starting OID is from step 2 of the documentation: .1.3.6.1.2.1.17.4.3.1.1 Note that I have confirmed that F5's snmpwalk is using the same version as my snmpwalk and the same port( V2c and 161 respectively ).
Now, when I use the Win2008 tool for SNMPWalking (recc'ed by F5), the OIDs containing MAC Addresses are skipped, but I do receive data for the surrounding OIDs.
OID=.1.3.6.1.2.1.17.1.4.1.5.106, Type=Counter32, Value=0
OID=.1.3.6.1.2.1.17.1.4.1.5.107, Type=Counter32, Value=0
OID=.1.3.6.1.2.1.17.1.4.1.5.108, Type=Counter32, Value=0
OID=.1.3.6.1.2.1.17.4.1.0, Type=Counter32, Value=0
OID=.1.3.6.1.2.1.17.4.2.0, Type=Integer, Value=300
OID=.1.3.6.1.2.1.17.4.4.1.1.49, Type=Integer, Value=49
OID=.1.3.6.1.2.1.17.4.4.1.1.50, Type=Integer, Value=50
OID=.1.3.6.1.2.1.17.4.4.1.1.51, Type=Integer, Value=51
If you'll look closely at the above OIDs, you can see that the OIDs endings move from 17.1.4, to 17.4.1, to 17.4.2, to 17.4.4. Yet, the OIDs I am interested in are represented by 17.4.3.
This is the command I issued against the device:
snmpwalk.exe -r:[IPHERE] -v:2 -c:[READCOMMSTRINGHERE] -os:1.3.6.1.2.1.17.4.3.1.1 -op:.1.3.6.1.4
The only thing I can think of is that I'm not specifying the VLAN properly, but I don't believe that's actually an issue. In the documentation it states that the community string should be something like "public@1" to represent VLAN1. I've tried using @1, @2 and no suffix -- all returned identical values.
I am wondering if it is possible for a device to deny results like this over SNMP V2? I'm really trying to find an avenue to debug, but I am under the impression that if the device speaks to me, and gives me data, then we should be set. It speaks to me, so the IP is correct and I have permission to talk to it. It gives me data -- the community string is correct. It does not give me all data, though.
Anyone more familiar with SNMPWalk than I... much appreciated.
Cheers