Ilya Etingof

Results 242 comments of Ilya Etingof

The doc on `snmpsimd` is [up](http://snmplabs.com/snmpsim/command-line-options.html).

Thanks for rising this! Are you planning to push a PR or should I fix it? BTW, are you running this check against current master?

Yes, MIBs are completely optional on the client side (i.e. for SNMP manager). The only nuisance you might encounter when not having a MIB is that response values can sometimes...

What happens if you just compile your MIB by hand with [mibdump.py](http://snmplabs.com/pysmi/mibdump.html) tool? ``` mibdump.py --rebuild --generate-mib-texts YOUR-MIB ``` The output goes to `~/.pysnmp/mibs` by default. We should have your...

Which `pysmi` version are you using? If not the latest, it makes sense to upgrade. Alternatively, if you can pull [pysmi master](https://github.com/etingof/pysmi) and run the same `mibdump.py` command, we'd see...

My test with pysmi master seems to succeed. I've taken IF-MIB as a guinea pig and changed `ifStackStatus` object's MAX-ACCESS to not-accessible. Then mibdump produced this code: ``` _IfStackStatus_Type =...

> Hmmm interesting. I will try it again from my end, while upgrading to pysnmp since i have not tried this yet. I will let you know what happens Just...

You seem to be using pysmi 0.3.4 or the file is not overwritten or it's some other file. ;-) ``` # PySNMP MIB module IF-MIB (http://snmplabs.com/pysmi) # ASN.1 source file://.\IF-MIB.txt...

May be your python is importing something unexpected. Here's my compiled file: ``` ASN.1 source file://./IF-MIB Produced by pysmi-0.4.0 at Wed Nov 13 14:12:21 2019 On host igarlic platform Darwin...

> Do you know when version 0.4.0 of pysmi will be officially released? That's on my TODO list. I need some time to wrap up things with the new major...