[2013/05/26 18:26:36] #net-snmp <csmart> probably a n00b question, for which I apologise, but I have the following snmp command to get memory usage which works with snmpwalk:
[2013/05/26 18:26:40] #net-snmp <csmart> snmpwalk -v 2c -c <password> <ip> 1.3.6.1.4.1.9.9.48.1.1.1.6.1
[2013/05/26 18:27:10] #net-snmp <csmart> I need to use that in a python script, which I have done with "sysDesc" just fine, but this one doesn't seem to work
[2013/05/26 18:27:20] #net-snmp <csmart> oid = netsnmp.Varbind('sysDescr')
[2013/05/26 18:27:44] #net-snmp <csmart> result = netsnmp.snmpwalk(oid, Version = 2, DestHost = 'ip', Community = 'password')
[2013/05/26 18:27:52] #net-snmp <csmart> that works ^^
[2013/05/26 18:28:12] #net-snmp <csmart> but I'm not sure how to convert oid of "1.3.6.1.4.1.9.9.48.1.1.1.6.1" into the python format
[2013/05/26 18:43:30] #net-snmp <csmart> well that is, when I try if I get an empty result set
[2013/05/26 18:57:58] #net-snmp <csmart> hmm.. tcpdump shows the results are coming back
[2013/05/26 22:28:05] #net-snmp <csmart> nevermind, I'm an idiot, I should have been snmpgetting them not walking
[2013/05/26 22:28:07] #net-snmp <csmart> get works