Ilya Etingof
Ilya Etingof
The exact same code runs for me with the latest pysnmp and its dependencies. I've a couple of MIBs lended in `~/.pysnmp/mibs/*.py` once I run your script. Can you make...
Do you have your MIB (`RS-COMMON-MIB.my`) specified in `.loadModules()`? mibBuilder.loadModules('SNMPv2-MIB', 'SNMP-FRAMEWORK-MIB', 'SNMP-COMMUNITY-MIB', 'IP-MIB')
> Are their ways to pull DESCRIPTION or STATUS as well? Sure, you should be able to get everything from MIB definitions. These methods are not yet documented -- this...
The MIBs and the objects defined in MIBs are maintained by the `MibBuilder` by the MIB module name + MIB object name pair: mibName, objName = 'SNMP-FRAMEWORK-MIB', 'snmpEngineID' mibObj, =...
The texts should be there... Can you remove everything from `~/.pysnmp/mibs/*` then add the `genText` option to your script: compiler.addMibCompiler(mibBuilder, sources=['/users/admin/desktop/mib/mibfiles/', 'http://mibs.snmplabs.com/asn1/'], genTexts=True) Re-run the script and check the MIB...
Thank you for rising this! And sorry for insanely late response! One thing I do not quite understand is how do you address the individual simulated agents? My immediate guess...
One thing I am not sure I understand is how do you map subinterfaces to .snmprec files? The only thought that comes to my mind is to do it through...
> Let's say we created eth0:0 subinterface with IP 172.22.10.10, so we are adding --agent-udpv4-endpoint=172.22.10.10 to the command. So you have snmpsimd listening at 172.22.10.10 and you have a bunch...
Right, I see, thanks! That perhaps means that with the patch you are using, one snmpsimd process can serve just one .snmprec file under given community name.... BTW, if I...
Just repeat [--agent-udpv4-endpoint](http://snmplabs.com/snmpsim/documentation/command-line-options.html#agent-udpv4-endpoint) option as many times as you need to. If you run out of command-line length, you can use `--args-from-file` option to read the same command-line from a...