Ilya Etingof

Results 259 comments of Ilya Etingof

Awesome! Is it some SNMP manager application you are working on? I bet the new MIB won't work for SNMP agent based on pysnmp 4...

This seems to have something to do with command-line options parsing. That is, it does not hit any of the networking code yet. May be try to replace `=` with...

I think the root of the problem is here: ``` pyasn1.error.PyAsn1Error: Attempted "__ne__" operation on ASN.1 schema object ``` I have two suggestions to play with: * Make sure that...

These "long" commands belong to the re-written snmpsim, which is still in GitHub master. It's not released as a package yet. So it should work on Mac if you install...

Thank you for raising this issue! > The authentication and privacy protocols used by the notification module should be independent of > those used for incoming SNMPv3 traffic to snmpsim....

So what happens if you run snmpsim with `--variation-modules-dir` option pointing to the right location?

That might happen, eventually. Depends on time and priorities...

if you flip `lexicographicMode` to `False`, would that change the behavior to what you expect? When it's `False`, the call would not query OIDs that do not belong to the...

Ah, it seems I misinterpreted your question! Is it that you want just one command in response? Then do not iterate more than once over `snmp_iter`. The `GETBULK` command (which...

> error_indication, error_status, error_index, var_binds = snmp_iter You need to iterate the iterator so: ``` error_indication, error_status, error_index, var_binds = next(snmp_iter) ``` But now, having read your explanation, I think...