...
Considering, as an example , to be sign as password password on a system whose IP address is 192.168.1.254 , to test whether the configuration works, you just have to run the following two commands to verify that return information about the queried system.
Code Block |
---|
## V1 ##V1 snmpwalk -v 1 <ip_device> -c <community_SNMP> system ## V2V2 ## snmpwalk -v2c -c <community_SNMP> <ip_device> system ## V3 ##V3 snmpwalk -v3 -l <noAuthNoPriv|authNoPriv|authPriv> -u <username> [-a <MD5|SHA>] [-A <authphrase>] [-x DES] [-X <privaphrase>] <ipaddress>[:<dest_port>] [oid] system system |