We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
When I run a command that fails with the NetSNMP tools, it provides an appropriate error condition indicating a failure, 1:
1
$ snmpget -v3 -l noAuthnoPriv -u myUser 127.0.0.1:12345 1.0 snmpget: Timeout $ echo $? 1
However, the similar command (only tested in windows, but I believe this is not platform dependent) with these tools returns 0:
0
C:\>python snmpget.py -v3 -u myUser -l noAuthNoPriv 127.0.0.1:12345 1.0 No SNMP response received before timeout C:\>echo %ERRORLEVEL% 0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I run a command that fails with the NetSNMP tools, it provides an appropriate error condition indicating a failure,
1
:However, the similar command (only tested in windows, but I believe this is not platform dependent) with these tools returns
0
:The text was updated successfully, but these errors were encountered: