SNMP V3 security user configuration
An administrator can create a secret prior to installing the chart. The chart can then be configured to use this existing secret by specifying the secret name in probe.snmpv3.secretName parameter.
For details about creating a secret, see Creating a secret with SNMP v3 users data.
To create a new secret automatically during chart installation, leave the probe.snmpv3.secretName parameter unset and follow the details below to set the probe.snmpv3.users parameter to specify a list of SNMP V3 users.
The SNMP V3 User object consists of the following parameters.
|
Parameter name |
Description |
|---|---|
|
name |
The security user name. Example: |
|
authEncryptionMethod |
The authentication type ( Example: |
|
authEncryptionPassword |
The authentication password. This must be at least eight characters in length. Example: |
|
privacyEncryptionMethod |
The type of privacy (either This parameter is optional. Example: |
|
privacyEncryptionPassword |
The privacy password. This parameter is optional. Example: |
|
authEngineIdentifier |
The engine ID of the trap source associated with the user. The engine ID is required for traps, but optional for informs. Example: |
- name: netcoolTrap
authEncryptionMethod: MD5
authEncryptionPassword: tr4psMD5
privacyEncryptionMethod: DES
privacyEncryptionPassword: tr4psDES
authEngineIdentifier: '0x0102030405'You can add more user entries to add more security users. The following example shows two
security users netcoolTrap and netcoolInforms.
probe:
snmpv3:
enabled: true
users:
- name: netcoolTrap
authEncryptionMethod: "MD5"
authEncryptionPassword: "tr4psMD5"
privacyEncryptionMethod: "DES"
privacyEncryptionPassword: "tr4psDES"
authEngineIdentifier: "0x0102030405"
- name: netcoolInform
authEncryptionMethod: "MD5"
authEncryptionPassword: "1nformsMD5"
privacyEncryptionMethod: "DES"
privacyEncryptionPassword: "1nformsDES"