2022-01-06 23:18:36 +01:00
|
|
|
## {{ salt['pillar.get']('salt_managed', default='Salt Managed') }}
|
|
|
|
|
|
|
|
{%- from "nftables/map.jinja" import nftables with context %}
|
|
|
|
{%- from "nftables/map.jinja" import net with context %}
|
|
|
|
|
|
|
|
## IPv4 filtering
|
|
|
|
add table ip filter
|
|
|
|
add chain ip filter INPUT { type filter hook input priority 0; policy drop; }
|
|
|
|
add chain ip filter FORWARD { type filter hook forward priority 0; policy accept; }
|
|
|
|
add chain ip filter OUTPUT { type filter hook output priority 0; policy accept; }
|
2022-01-25 00:18:08 +01:00
|
|
|
add chain ip filter DOCKER
|
2022-01-06 23:18:36 +01:00
|
|
|
add rule ip filter INPUT iifname lo counter accept
|
|
|
|
add rule ip filter INPUT iifname tun* counter accept
|
|
|
|
add rule ip filter INPUT ct state related,established counter accept
|
|
|
|
add rule ip filter INPUT ip protocol icmp counter accept
|
|
|
|
{%- for key, value in net.ipv4_networks.items() %}
|
|
|
|
add rule ip filter INPUT ip saddr {{ value.ip }}/{{ value.mask }} ct state established,new counter accept
|
|
|
|
{%- endfor %}
|
|
|
|
{%- for key, value in net.public_ports.items() %}
|
|
|
|
add rule ip filter INPUT {{ value.proto }} dport {{ value.port }} ct state established,new counter accept
|
|
|
|
{%- endfor %}
|
2023-01-05 00:13:40 +01:00
|
|
|
{%- if nftables.log %}
|
|
|
|
add rule ip filter INPUT counter log
|
|
|
|
{%- endif %}
|
|
|
|
|
2022-01-06 23:18:36 +01:00
|
|
|
|
|
|
|
## IPv4 NAT
|
|
|
|
add table ip nat
|
2022-06-08 23:50:36 +02:00
|
|
|
add chain ip nat PREROUTING { type nat hook prerouting priority dstnat; policy accept; }
|
2022-04-03 23:02:32 +02:00
|
|
|
add chain ip nat INPUT { type nat hook input priority 1; policy accept; }
|
2022-06-08 23:50:36 +02:00
|
|
|
add chain ip nat OUTPUT { type nat hook output priority -100; policy accept; }
|
|
|
|
add chain ip nat POSTROUTING { type nat hook postrouting priority srcnat; policy accept; }
|
2022-03-12 00:00:02 +01:00
|
|
|
add chain ip nat DOCKER
|
2023-01-05 00:13:40 +01:00
|
|
|
|
|
|
|
### Main NAT rules
|
2022-01-06 23:18:36 +01:00
|
|
|
{%- for key, value in net.nats.items() %}
|
|
|
|
add rule ip nat POSTROUTING ip saddr {{ value.ip }}/{{ value.mask }} counter masquerade
|
|
|
|
{%- endfor %}
|
2023-01-05 00:13:40 +01:00
|
|
|
|
|
|
|
### Docker related rules
|
2022-06-08 23:50:36 +02:00
|
|
|
add rule ip nat POSTROUTING oifname != "docker0" ip saddr 172.17.0.0/24 counter masquerade
|
|
|
|
add rule ip nat PREROUTING fib daddr type local counter jump DOCKER
|
2022-03-12 00:00:02 +01:00
|
|
|
add rule ip nat OUTPUT ip daddr != 127.0.0.0/8 fib daddr type local counter jump DOCKER
|
2023-01-05 00:13:40 +01:00
|
|
|
add rule ip nat POSTROUTING iifname br-* counter masquerade
|
|
|
|
add rule ip nat POSTROUTING iifname veth-* counter masquerade
|
2022-03-12 00:00:02 +01:00
|
|
|
|
|
|
|
add rule ip nat DOCKER iifname "docker0" counter return
|
2022-01-06 23:18:36 +01:00
|
|
|
|
|
|
|
## IPv6 filtering
|
|
|
|
add table ip6 filter6
|
|
|
|
add chain ip6 filter6 INPUT { type filter hook input priority 0; policy drop; }
|
|
|
|
add chain ip6 filter6 FORWARD { type filter hook forward priority 0; policy accept; }
|
|
|
|
add chain ip6 filter6 OUTPUT { type filter hook output priority 0; policy accept; }
|
|
|
|
add rule ip6 filter6 INPUT iifname lo counter accept
|
|
|
|
add rule ip6 filter6 INPUT iifname tun* counter accept
|
|
|
|
add rule ip6 filter6 INPUT ct state related,established counter accept
|
|
|
|
add rule ip6 filter6 INPUT icmpv6 type {destination-unreachable, packet-too-big, time-exceeded, echo-request, echo-reply, mld-listener-query, mld-listener-report, mld-listener-reduction, nd-router-solicit, nd-router-advert, nd-neighbor-solicit, nd-neighbor-advert, nd-redirect, parameter-problem, router-renumbering} accept
|
|
|
|
{%- for key, value in net.ipv6_networks.items() %}
|
|
|
|
add rule ip6 filter6 INPUT ip6 saddr {{ value.ip }}/{{ value.mask }} ct state established,new counter accept
|
|
|
|
{%- endfor %}
|
|
|
|
{%- for key, value in net.public_ports.items() %}
|
|
|
|
add rule ip6 filter6 INPUT {{ value.proto }} dport {{ value.port }} ct state established,new counter accept
|
|
|
|
{%- endfor %}
|
2023-01-05 00:13:40 +01:00
|
|
|
{%- if nftables.log %}
|
|
|
|
add rule ip6 filter6 INPUT counter log
|
|
|
|
{%- endif %}
|
2022-04-03 23:02:32 +02:00
|
|
|
|
2022-01-06 23:18:36 +01:00
|
|
|
## Endline is mandatory
|