Daniel Swarbrick

Results 298 comments of Daniel Swarbrick

Aha... well, it's as simple as this: both MIBs are trying to declare the same `PowerNet-MIB` module. They happily coexist and the generator succeeds if I change the module name...

Believe me when I say that hand-editing MIBs is seriously not fun. The only objects which technically clash (redefined) in apc_cpdu_v1_3.mib.txt are: ``` apc OBJECT IDENTIFIER ::= { enterprises 318...

A simple `go build` should work - at least it does on *nix. Beware that the generator is not pure Go - it uses cgo and links against netsnmp. You...

Have you tried reducing `max_repetitions` to a lower value? (default 25)

@jsfrerot Can you try replacing `1.3.6.1.4.1.40989` with `1.3.6.1.4.1.40989.10` in your generator.yml, re-generate your config, and try again?

`smilint` spews out a ton of warnings for that MIB (or you can check it online at http://www.muonics.com/Tools/smicheck.php). It's difficult to debug flaky snmp engines without access to the device,...

The key difference in the snmp_exporter capture is that it is trying to do a `GET` on 1.3.6.1.4.1.40989.10, whereas snmpwalk is doing `GETNEXT`. The `GET` fails because there is no...

@jsfrerot Out of curiosity, can you try an snmpwalk of 1.3.6.1.4.1.40989 _without_ the `-Cc` option? I suspect it will fail.

It's nearly 10 years since I wrote my last MIB, but I noticed that the first subidentifier after the "MG-SOFT Corporation" private enterprise number is `1.3.6.1.4.1.40989.10`. I'm a bit out...

> I've tried to use what you proposed: > > ```yaml > fmt: > version: 1 > walk: > - vCardState > - vDeviceType > - vDeviceDescription > - vSoftwareVerion...