Can you please confirm what the syntax is for an snmp v 3 walk from the Prognosis\Server\Configuration directory
I've been using this syntax to great effect for V 2c
..\snmpwalk.exe -c <community string> -v 2c <ip address of the gateway> 1.3.6.1.2.1.1
whats the v 3 equivalent? thanks
Hello Justin,
SNMPWALK Tool instructions:
SNMPWALK Tool NOTES:
SNMPv2c Example:
..\snmpwalk -m ALL -v 2c -c COMMUNITYSTRING 127.0.0.1
SNMPv3 Examples:
Unauthenticated request (which still requires a user name):
..\snmpwalk -m ALL -v 3 -n "" -u USERNAME -l noAuthNoPriv 127.0.0.1
Authenticated request (choose MD5 or SHA [remove the unused type] for -a option):
..\snmpwalk -m ALL -v 3 -n "" -u USERNAME -a MD5 or SHA -A "AuthenticationPASSPHRASE" -l authNoPriv 127.0.0.1
Authenticated and encrypted request (choose MD5 or SHA [remove the unused type] for -a option & choose AES or DES [remove the unused type] for -x option):
..\snmpwalk -m ALL -v 3 -n "" -u USERNAME -a MD5 or SHA -A "AuthenticationPASSPHRASE" -x AES or DES -X "PrivacyPASSPHRASE" -l authPriv 127.0.0.1
Thank you,
Scott Baldwin
Members | Likes |
---|---|
43 | |
36 | |
23 | |
17 | |
11 |