Parsing 100M of MIBs

2017-01-25 Thread Chris Fowler
I'm tying to do something that works on a smaller scale, but on a larger scale keeping up with MIB syntax errors and such is a problem. I have a device that has 25M of MIB files. snmptranslate takes too long to process through '+ALL'. I've used the SNMP Perl module so I wrote a translation servic

Re: Parsing 100M of MIBs

2017-01-25 Thread Ilya Etingof
Just a quick note that this tool [1] should be able to dump MIBs into individual [2] JSON files and maps of MIB objects [3]. May be you could then load such JSONs into a DB and make your service talking to that DB to perform the translation you need? Not sure how relevant my suggestion would be