default access list for device_auth should be ipv4 and ipv6

This commit is contained in:
Oliver Gorwits
2020-02-12 16:55:16 +00:00
parent c5140e2061
commit ab6305b4cf
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2.044015 - 2020-02-12
[BUG FIXES]
* default access list for device_auth should be ipv4 and ipv6
2.044014 - 2020-02-09 2.044014 - 2020-02-09
[BUG FIXES] [BUG FIXES]

View File

@@ -63,7 +63,7 @@ sub fixup_device_auth {
$stanza->{tag} ||= $tag; $stanza->{tag} ||= $tag;
$stanza->{read} = 1 if !exists $stanza->{read}; $stanza->{read} = 1 if !exists $stanza->{read};
$stanza->{no} ||= []; $stanza->{no} ||= [];
$stanza->{only} ||= ['any']; $stanza->{only} ||= ['group:__ANY__'];
die "error: config: snmpv2 community in device_auth must be single item, not list\n" die "error: config: snmpv2 community in device_auth must be single item, not list\n"
if ref $stanza->{community}; if ref $stanza->{community};

View File

@@ -209,7 +209,8 @@ defanged_admin: 'admin'
# mibdirs defaults to contents of mibhome # mibdirs defaults to contents of mibhome
host_groups: host_groups:
__ANY__: __ANY__:
- 'any' - '0.0.0.0/0'
- '::/0'
__LOCAL_ADDRESSES__: __LOCAL_ADDRESSES__:
- '::1' - '::1'
- 'fe80::/10' - 'fe80::/10'