ITL: Add securityLevel to snmpv3 CheckCommand

For example if using snmpv3 without encryption.
Defaults set to privAuth to stay compatible to older versions.

fixes #9416

Signed-off-by: Michael Friedrich <michael.friedrich@netways.de>
This commit is contained in:
Christian Lehmann 2015-03-31 15:04:58 +02:00 committed by Michael Friedrich
parent e88cc78a4f
commit 2a6c0d87af
2 changed files with 4 additions and 2 deletions

View File

@ -697,7 +697,8 @@ Name | Description
snmpv3_address | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
snmpv3_user | **Required.** The username to log in with.
snmpv3_auth_alg | **Optional.** The authentication algorithm. Defaults to SHA.
snmpv3_auth_key | **Required.** The authentication key.
snmpv3_seclevel | **Optional.** The security level. Defaults to authPriv.
snmpv3_auth_key | **Required,** The authentication key. Required if `snmpv3_seclevel` is set to `authPriv` otherwise optional.
snmpv3_priv_alg | **Optional.** The encryption algorithm. Defaults to AES.
snmpv3_priv_key | **Required.** The encryption key.
snmpv3_oid | **Required.** The SNMP OID.

View File

@ -1003,7 +1003,7 @@ object CheckCommand "snmpv3" {
arguments = {
"-H" = "$snmpv3_address$"
"-P" = 3
"--seclevel" = "authPriv"
"--seclevel" = "$snmpv3_seclevel$"
"-U" = "$snmpv3_user$"
"-a" = "$snmpv3_auth_alg$"
"-A" = "$snmpv3_auth_key$"
@ -1018,6 +1018,7 @@ object CheckCommand "snmpv3" {
vars.snmpv3_address = "$check_address$"
vars.snmpv3_auth_alg = "SHA"
vars.snmpv3_priv_alg = "AES"
vars.snmpv3_seclevel = "authPriv"
}
object CheckCommand "snmp-uptime" {