Puppet Class: nftables::services::dhcpv6_client
  
  
    - Inherits:
- nftables
    - Defined in:
- 
      manifests/services/dhcpv6_client.pp
    
 
  Summary
  Allow in and outbound traffic for DHCPv6 server
Overview
  
  
    
      | 
2
3
4
5
6
7
8
9 | # File 'manifests/services/dhcpv6_client.pp', line 2
class nftables::services::dhcpv6_client inherits nftables {
  if $nftables::out_all {
    fail('All outgoing traffic is allowed, you might want to use only nftables::rules::dhcpv6_client')
  }
  include nftables::rules::dhcpv6_client
  include nftables::rules::out::dhcpv6_client
} |