Puppet Class: nftables::inet_filter
- Inherits:
- nftables
- Defined in:
- manifests/inet_filter.pp
Overview
manage basic chains in table inet filter
| 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | # File 'manifests/inet_filter.pp', line 2
class nftables::inet_filter inherits nftables {
  $_reject_rule = epp('nftables/reject_rule.epp',
    {
      'log_prefix' => sprintf($nftables::log_prefix, { 'chain' => '%<chain>s', 'comment' => 'Rejected: ' }),
      'log_limit'  => $nftables::log_limit
    }
  )
  nftables::config {
    'inet-filter':
      prefix => '',
      source => 'puppet:///modules/nftables/config/puppet-inet-filter.nft';
  }
  nftables::chain {
    [
      'INPUT',
      'OUTPUT',
      'FORWARD',
      'global',
    ]:;
  }
  nftables::chain {
    'default_in':
      inject => '10-INPUT';
    'default_out':
      inject => '10-OUTPUT';
    'default_fwd':
      inject => '10-FORWARD';
  }
  # inet-filter-chain-INPUT
  nftables::rule {
    'INPUT-type':
      order   => '01',
      content => 'type filter hook input priority 0';
    'INPUT-policy':
      order   => '02',
      content => 'policy drop';
    'INPUT-lo':
      order   => '03',
      content => 'iifname lo accept';
    'INPUT-jump_global':
      order   => '04',
      content => 'jump global';
  }
  if $nftables::log_discarded {
    nftables::rule {
      'INPUT-log_discarded':
        order   => '97',
        content => sprintf($_reject_rule, { 'chain' => 'INPUT' }),
    }
  }
  if $nftables::reject_with {
    nftables::rule {
      'INPUT-reject':
        order   => '98',
        content => "reject with ${$nftables::reject_with}";
    }
  }
  if $nftables::in_out_conntrack {
    include nftables::inet_filter::in_out_conntrack
  }
  # inet-filter-chain-OUTPUT
  nftables::rule {
    'OUTPUT-type':
      order   => '01',
      content => 'type filter hook output priority 0';
    'OUTPUT-policy':
      order   => '02',
      content => 'policy drop';
    'OUTPUT-lo':
      order   => '03',
      content => 'oifname lo accept';
    'OUTPUT-jump_global':
      order   => '04',
      content => 'jump global';
  }
  if $nftables::log_discarded {
    nftables::rule {
      'OUTPUT-log_discarded':
        order   => '97',
        content => sprintf($_reject_rule, { 'chain' => 'OUTPUT' }),
    }
  }
  if $nftables::reject_with {
    nftables::rule {
      'OUTPUT-reject':
        order   => '98',
        content => "reject with ${$nftables::reject_with}";
    }
  }
  if $nftables::in_out_conntrack {
    include nftables::inet_filter::in_out_conntrack
  }
  # inet-filter-chain-FORWARD
  nftables::rule {
    'FORWARD-type':
      order   => '01',
      content => 'type filter hook forward priority 0';
    'FORWARD-policy':
      order   => '02',
      content => 'policy drop';
    'FORWARD-jump_global':
      order   => '03',
      content => 'jump global';
  }
  if $nftables::log_discarded {
    nftables::rule {
      'FORWARD-log_discarded':
        order   => '97',
        content => sprintf($_reject_rule, { 'chain' => 'FORWARD' });
    }
  }
  if $nftables::reject_with {
    nftables::rule {
      'FORWARD-reject':
        order   => '98',
        content => "reject with ${$nftables::reject_with}";
    }
  }
  if $nftables::fwd_conntrack {
    include nftables::inet_filter::fwd_conntrack
  }
  # basic outgoing rules
  if $nftables::out_all {
    include nftables::rules::out::all
  } else {
    if $nftables::out_ntp {
      include nftables::rules::out::chrony
    }
    if $nftables::out_dns {
      include nftables::rules::out::dns
    }
    if $nftables::out_http {
      include nftables::rules::out::http
    }
    if $nftables::out_https {
      include nftables::rules::out::https
    }
    if $nftables::out_icmp {
      include nftables::rules::out::icmp
    }
  }
  # allow forwarding traffic on bridges
  include nftables::bridges
  # basic ingoing rules
  if $nftables::in_ssh {
    include nftables::rules::ssh
  }
  if $nftables::in_icmp {
    include nftables::rules::icmp
  }
} |