Puppet Class: nftables::rules::dhcpv6_client

Defined in:
manifests/rules/dhcpv6_client.pp

Summary

allow DHCPv6 requests in to a host

Overview



2
3
4
5
6
7
# File 'manifests/rules/dhcpv6_client.pp', line 2

class nftables::rules::dhcpv6_client {
  nftables::rule {
    'default_in-dhcpv6_client':
      content => 'ip6 saddr fe80::/10 ip6 daddr fe80::/10 udp sport 547 udp dport 546 accept',
  }
}