Puppet Class: nftables::rules::out::dhcpv6_client
- Defined in:
- manifests/rules/out/dhcpv6_client.pp
Summary
Allow DHCPv6 requests out of a hostOverview
| 2 3 4 5 6 7 | # File 'manifests/rules/out/dhcpv6_client.pp', line 2
class nftables::rules::out::dhcpv6_client {
  nftables::rule {
    'default_out-dhcpv6_client':
      content => 'ip6 saddr fe80::/10 udp sport 546 udp dport 547 accept',
  }
} |