Difference between revisions of "SNMP"
Jump to navigation
Jump to search
(Created page with "Ciscoish type switches (cn1610) ``` ssh admin@x.x.x.x configure snmp-server view readonly iso.3.6.1.2.1 included snmp-server group "group1" v3 priv read "readonly" snmp-server...") |
|||
Line 1: | Line 1: | ||
− | + | Object needs to support SNMPv3 - https://en.wikipedia.org/wiki/Simple_Network_Management_Protocol | |
+ | |||
+ | Short examples to adding snmpv3 to Cisco(ish) routers and other devices like cisco/netapp cn1610 | ||
``` | ``` | ||
ssh admin@x.x.x.x | ssh admin@x.x.x.x | ||
Line 9: | Line 11: | ||
write memory | write memory | ||
``` | ``` | ||
+ | |||
+ | ``` | ||
+ | snmpwalk -v3 -l authPriv -u user1 -a SHA -A "<secretpassword>" -x DES -X "<secretpassword>" 10.x.x.x | ||
+ | ``` | ||
+ | |||
+ | ref: | ||
+ | |||
+ | https://github.com/librenms/librenms/blob/master/doc/Support/SNMP-Configuration-Examples.md | ||
+ | https://www.linickx.com/snmpwalk-v3-and-snmpget-v3-examples | ||
+ | https://wiki.archlinux.org/index.php/Snmpd | ||
+ | |||
+ | https://library.netapp.com/ecm/ecm_download_file/ECMP1117874 |
Revision as of 19:12, 26 February 2020
Object needs to support SNMPv3 - https://en.wikipedia.org/wiki/Simple_Network_Management_Protocol
Short examples to adding snmpv3 to Cisco(ish) routers and other devices like cisco/netapp cn1610
ssh admin@x.x.x.x configure snmp-server view readonly iso.3.6.1.2.1 included snmp-server group "group1" v3 priv read "readonly" snmp-server user "user1" group1 auth-sha-key <secretpassword> priv-des-key <secretpassword> end write memory
snmpwalk -v3 -l authPriv -u user1 -a SHA -A "<secretpassword>" -x DES -X "<secretpassword>" 10.x.x.x
ref:
https://github.com/librenms/librenms/blob/master/doc/Support/SNMP-Configuration-Examples.md https://www.linickx.com/snmpwalk-v3-and-snmpget-v3-examples https://wiki.archlinux.org/index.php/Snmpd
https://library.netapp.com/ecm/ecm_download_file/ECMP1117874