diff options
author | Christian Breunig <christian@breunig.cc> | 2023-02-10 19:42:44 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-02-10 19:42:44 +0100 |
commit | 011e6a2cdea8fca73f7c433de5e2d6bc22bd9c19 (patch) | |
tree | 7391f3de5a743615cc3acdf9942380473eab6be3 /interface-definitions/snmp.xml.in | |
parent | a31f6d45f72dbe556bd3f3d7d62935251888eca5 (diff) | |
download | vyos-1x-011e6a2cdea8fca73f7c433de5e2d6bc22bd9c19.tar.gz vyos-1x-011e6a2cdea8fca73f7c433de5e2d6bc22bd9c19.zip |
snmp: T4857: explicitly define default community networks 0.0.0.0/0 and ::/0
After the RESTRICTED view was introduced snmpd requires a network to be
specified. Before adding the RESTRICTED view snmpd always assumed the default
network 0.0.0.0/0.
This commit re-adds the build in default networks for IPv4 and IPv6 and
exposes it as a proper default to the CLI so the user is informed about it:
vyos@vyos# set service snmp community foooo
Possible completions:
authorization Authorization type (default: ro)
+ client IP address of SNMP client allowed to contact system
+ network Subnet of SNMP client(s) allowed to contact system (default:
0.0.0.0/0, ::/0)
Diffstat (limited to 'interface-definitions/snmp.xml.in')
-rw-r--r-- | interface-definitions/snmp.xml.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/interface-definitions/snmp.xml.in b/interface-definitions/snmp.xml.in index 10dd828a5..592db7f4e 100644 --- a/interface-definitions/snmp.xml.in +++ b/interface-definitions/snmp.xml.in @@ -13,9 +13,9 @@ <properties> <help>Community name</help> <constraint> - <regex>[a-zA-Z0-9\-_!@*#]{1,100}</regex> + <regex>[[:alnum:]-_!@*#]{1,100}</regex> </constraint> - <constraintErrorMessage>Community string is limited to alphanumerical characters, !, @, * and # with a total lenght of 100</constraintErrorMessage> + <constraintErrorMessage>Community string is limited to alphanumerical characters, -, _, !, @, *, and # with a total lenght of 100</constraintErrorMessage> </properties> <children> <leafNode name="authorization"> @@ -65,6 +65,7 @@ </constraint> <multi/> </properties> + <defaultValue>0.0.0.0/0 ::/0</defaultValue> </leafNode> </children> </tagNode> |