Prototype-X / Zabbix-Template-Juniper-MX-BGP4-ipv4-ipv6

Zabbix Template for Juniper MX discovery BGP4 peers ipv4 and ipv6, RE, interfaces
GNU General Public License v3.0
36 stars 23 forks source link

Documentation SNMPv3 key #8

Open millingworth opened 6 years ago

millingworth commented 6 years ago

In your readme for SNMPv3 you have the key listed as:

LLD.py["-h", {HOST.CONN}, "-v3", "-u{$SNMP_USER}", "-l{$SNMP_LEVEL}", "-aSHA", "-A{$SNMP_AUTH}", "-xAES", "-X{$SNMP_PRIV}", "-mi", "{#PEERADDR}", "-m", "{#PREFXTBL}", "{#ADDRTYPE}", "{#ASNUM}"]

I had to change the format to get this working:

LLD.py["-h", {HOST.CONN}, "-v", "3",  "-l", "authPriv", "-u", "{$SNMP_SECURITY}", "-a", "SHA", "-A", "{$SNMP_AUTH}", "-x", "AES", "-X", "{$SNMP_PRIV}", "-mi", "{#PEERADDR}", "-m", "{#PREFXTBL}", "{#ADDRTYPE}", "{#ASNUM}"]