2020-11-14 10:34:16 +00:00
|
|
|
defaults = {
|
|
|
|
'apt': {
|
|
|
|
'packages': {
|
|
|
|
'wide-dhcpv6-client': {},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'iptables': {
|
|
|
|
'bundle_rules': {
|
|
|
|
'wide-dhcp6c': [
|
|
|
|
'ip6tables -A INPUT -p udp -s ff00::/12 -j ACCEPT',
|
|
|
|
'ip6tables -A INPUT -p udp -s fe80::/10 -j ACCEPT',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2020-12-21 08:50:15 +00:00
|
|
|
'icinga2_api': {
|
|
|
|
'wide-dhcp6c': {
|
|
|
|
'services': {
|
|
|
|
'WIDE-DHCP6CD PROCESS': {
|
|
|
|
'command_on_monitored_host': '/usr/lib/nagios/plugins/check_procs -C dhcp6c -c 1:',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-11-14 10:34:16 +00:00
|
|
|
'wide-dhcp6c': {
|
|
|
|
'subnet_len': '8',
|
|
|
|
},
|
|
|
|
}
|
2020-11-15 08:56:06 +00:00
|
|
|
|
2020-12-18 15:30:17 +00:00
|
|
|
if node.has_bundle('pppd'):
|
|
|
|
defaults.update({
|
|
|
|
'pppd': {
|
|
|
|
'wait-until-stopped': {
|
|
|
|
'wide-dhcpv6-client.service',
|
|
|
|
},
|
2020-11-15 08:56:06 +00:00
|
|
|
}
|
2020-12-18 15:30:17 +00:00
|
|
|
})
|