snmpclitools icon indicating copy to clipboard operation
snmpclitools copied to clipboard

Pure-Python SNMP management tools

Results 9 snmpclitools issues
Sort by recently updated
recently updated
newest added

Just tried the snmptrap.py SNMPv3 example from doc: snmptrap.py -v3 -e 8000000001020304 -l authPriv -u usr-sha-aes \ -A authkey1 -X privkey1 -a SHA -x AES 172.20.16.80 12345 \ 1.3.6.1.4.1.20408.4.1.1.2 SNMPv2-MIB::sysName.0...

Whenever a value of unsigned int is attempted for snmpset.py, when the PDU is generated, it used the type Integer32 instead of Unsigned32 on line 232 of pdu.py.

Doing an SNMP_SET with the 'u' flag send a PDU for Int32. Fixed it so the PDU type is Unsigned32. Fixes #18

Windows 10 & Python 3.9 python snmpget.py -v2c -cPUBLIC 192.168.1.2 1.3.6.1.2.1.1.5.0 SNMPv2-MIB::sysName.0 = DisplayString: My Machine python snmpset.py -v2c -cPUBLIC 192.168.1.2 1.3.6.1.2.1.1.5.0 s "mymachine" SNMPv2-MIB::sysName.0 = DisplayString: mymachine python snmpget.py...

When I run a command that fails with the NetSNMP tools, it provides an appropriate error condition indicating a failure, `1`: ``` $ snmpget -v3 -l noAuthnoPriv -u myUser 127.0.0.1:12345...

Example: snmpset.py -v1 -c public 127.0.0.1:161 1.3.6.1.4.1.40989.10.16.1.5.8.0 i -583 Error: Command-line parser error at token whitespace (but snmpset.py -v1 -c public 127.0.0.1:161 1.3.6.1.4.1.40989.10.16.1.5.8.0 i 583 is OK) Traced the error...

I would like to set time and date on a piece of hardware and can successfully set the date as follows. snmpset.py -v2c -c private 192.168.1.11 .1.3.6.1.4.1.3808.2.1.5.1.0 s 06\15\2020 However...

I'd like to suggest a change to snmpwalk.py to allow it to be used from other programs. I propose putting everything from `snmpEngine = engine.SnmpEngine()` to the end of the...

The [net-snmp site](http://net-snmp.sourceforge.net/tutorial/tutorial-5/commands/snmpset.html) shows ``` type - one of i, u, t, a, o, s, x, d, n i: INTEGER, u: unsigned INTEGER, t: TIMETICKS, a: IPADDRESS o: OBJID, s:...

enhancement