diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-05-22 21:12:09 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-06-04 19:19:29 +0200 |
commit | 3f553cf6effe76cafb031051b3aa3ca87e7b84a1 (patch) | |
tree | dd3df714ee9429fbf156c673ce5d9011fc4025e3 /interface-definitions | |
parent | 1d9b22e1e80f0ae9a760feccaf6c2672adf2e33a (diff) | |
download | vyos-1x-3f553cf6effe76cafb031051b3aa3ca87e7b84a1.tar.gz vyos-1x-3f553cf6effe76cafb031051b3aa3ca87e7b84a1.zip |
T655: Add support for SNMPv3 'noAuthNoPriv' security level
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/snmp.xml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/interface-definitions/snmp.xml b/interface-definitions/snmp.xml index 4bfb61576..3edc22aa4 100644 --- a/interface-definitions/snmp.xml +++ b/interface-definitions/snmp.xml @@ -209,17 +209,21 @@ </leafNode> <leafNode name="seclevel"> <properties> - <help>Defines security level</help> + <help>Security levels</help> + <valueHelp> + <format>noauth</format> + <description>Messages not authenticated and not encrypted (noAuthNoPriv)</description> + </valueHelp> <valueHelp> <format>auth</format> - <description>Requests must be authenticated</description> + <description>Messages are authenticated but not encrypted (AuthNoPriv)</description> </valueHelp> <valueHelp> <format>priv</format> - <description>Enforce use of encryption</description> + <description>Messages are authenticated and encrypted (AuthPriv)</description> </valueHelp> <constraint> - <regex>(auth|priv)</regex> + <regex>(noauth|auth|priv)</regex> </constraint> </properties> </leafNode> |