Ilya Etingof
Ilya Etingof
PySMI's `mibdump` tool can generate a JSON [like this](http://mibs.snmplabs.com/json/fulltexts/IF-MIB.json) from any given MIB. The tool will attempt to download dependencies from [mibs.snmplabs.com](http://mibs.snmplabs.com/asn1). If the dependency is missing, the whole compilation...
Try adding two `--mib-source` options like this: mibdump.py --mib-source http://192.168.1.170/ --mib-source http://mibs.snmplabs.com/asn1 LSI-MegaRAID-SAS1-MIB The end result would be that `mibdump` will search first on your local site, when it can't...
Perhaps you are using some old pysmi version. Try this command: mibdump.py --mib-source=http://192.168.1.170/ --mib-source=http://mibs.snmplabs.com/asn1/@mib@ LSI-MegaRAID-SAS-MIB BTW, here is [the documentation](http://snmplabs.com/pysmi/mibdump.html#specifying-mib-source).
Yes, 0.3.4 is the latest [release](https://github.com/etingof/pysmi/releases). Are you saying that without this `@mib@` magic MIB search does not work for you?
I am not sure about this declaration: ``` Snmp ::= SEQUENCE { snmpAccessRight INTEGER, snmpCommunityName OCTET STRING, snmpCommunityTable SnmpCommunityEntry, snmpPort INTEGER, ipDynamicAddress IpAddress, --OCTET STRING, ipStaticAddress IpAddress, --OCTET STRING, macAddress...
Oh, that seems to be a bug in `pysnmp`. Try the HEAD of [this branch](https://github.com/etingof/pysnmp/tree/pysnmp-4.4.5).
...on the second thought, may be it's actually not so much a bug - may be it's just that you use incompatible version of pyasn1. Could you please try to...
Just a quick note that if you run the [mibcopy tool](http://snmplabs.com/pysmi/mibcopy.html) on your repo, it should rename all the MIBs canonically and drop accidental dups.
Could you please be a bit more specific? I guess snmpfwd should not require anything Windows-specific save for the `pycryptodome` package (which is already optional in master).
Good progress! \o/ Unfortunately, I am not aware of external process invocation feature. However, it should not be hard to write one based on one of the [existing plugins](https://github.com/etingof/snmpfwd/tree/master/plugins). The...