I am using Linux v.16
I installed pysnmp package succesfully. I am trying to convert the .my
to .py
but I am facing errors:
1.
using this command: smidump -f python custom-mib.my | libsmi2pysnmp>custom-mib.py
The output was:
smidump: module 'custom-mib' contains errors, expect flawed output
smidump: aborting due to severe parsing errors
smidump: use the -k option to force continuation
The program 'libsmi2pysnmp' is currently not installed.
You can install it by typing: apt install python-pysnmp4
( the package is already installed. To make sure, when I apply the command: apt install python-pysnmp4
, the result is "python-pysnmp4 is already the newest version
"
2.
When I use the command: build-pysnmp-mib -o custom-mib.py custom-mib.my
,
I am facing the same error saying to install the same package.
What pysnmp version are you running? It it's past 4.3.x (inclusive), you do not really need to do any MIB conversion by hand -- it's all being done automatically by pysnmp/pysmi packages interplay. You just pass pysnmp MIB name in your query -- it should be able to do the rest.
If you can't upgrade to the latest pysnmp version, you can use the
mibdump
tool from the pysmi package instead of (long time obsolete)smidump
/build-pysnmp-mib
/libsmi2pysnmp
toolset to convert .my into .py and pass those .py MIBs to your old pysnmp instance.Here is an example
mibdump.py
tool invocation that converts theIF-MIB
into pysnmp classes:The compiled MIBs end up in
~/.pysnmp/mibs
unless you change default destination directory.