]> git.openstreetmap.org Git - chef.git/blob - cookbooks/networking/templates/default/nftables.conf.erb
Avoid dropping third party tables when stopping an nftables firewall
[chef.git] / cookbooks / networking / templates / default / nftables.conf.erb
1 #!/usr/sbin/nft -f
2
3 define external-interfaces = { <%= @interfaces.sort.uniq.join(", ") %> }
4
5 define ip-private-addresses = { 10.0.0.0/8, 127.0.0.0/8, 169.254.0.0/16, 172.16.0.0/12, 192.0.2.0/24, 192.168.0.0/16 }
6 define ip6-private-addresses = { 2001:db8::/32, fc00::/7 }
7
8 table inet filter {
9   set ip-osm-addresses {
10     type ipv4_addr
11 <%- unless Array(@hosts["inet"]).empty? %>
12     elements = { <%= Array(@hosts["inet"]).sort.join(", ") %> }
13 <%- end %>
14   }
15
16   set ip6-osm-addresses {
17     type ipv6_addr
18 <%- unless Array(@hosts["inet"]).empty? %>
19     elements = { <%= Array(@hosts["inet6"]).sort.join(", ") %> }
20 <%- end %>
21   }
22
23   set ip-blacklist {
24     type ipv4_addr
25     flags dynamic
26   }
27
28   set ip6-blacklist {
29     type ipv6_addr
30     flags dynamic
31   }
32
33 <%- node[:networking][:firewall][:sets].each do |set| %>
34   set <%= set %> {
35 <%- if set.end_with?("-ip") %>
36     type ipv4_addr
37 <%- elsif set.end_with?("-ip6") %>
38     type ipv6_addr
39 <%- end %>
40     flags dynamic
41   }
42
43 <%- end %>
44   chain log-and-drop {
45     limit rate 1/second log
46     drop
47   }
48
49   chain log-and-reject {
50     limit rate 1/second log
51     reject
52   }
53
54   chain incoming {
55     ip saddr { $ip-private-addresses } jump log-and-drop
56     ip6 saddr { $ip6-private-addresses } jump log-and-drop
57
58     ip saddr @ip-blacklist jump log-and-drop
59     ip6 saddr @ip6-blacklist jump log-and-drop
60
61     ct state { established, related } accept
62
63     icmp type { destination-unreachable } accept
64     icmpv6 type { nd-neighbor-solicit, nd-neighbor-advert, nd-router-solicit, nd-router-advert } accept
65
66     icmp type { echo-request } limit rate 1/second accept
67     icmpv6 type { echo-request } limit rate 1/second accept
68
69     meta l4proto { icmp, icmpv6 } jump log-and-drop
70
71 <%- node[:networking][:firewall][:incoming].uniq.each do |rule| %>
72     <%= rule %>
73 <%- end %>
74
75     jump log-and-drop
76   }
77
78   chain outgoing {
79     ip daddr { $ip-private-addresses } jump log-and-drop
80     ip6 daddr { $ip6-private-addresses } jump log-and-drop
81
82 <%- node[:networking][:firewall][:outgoing].each do |rule| %>
83     <%= rule %>
84 <%- end %>
85
86     accept
87   }
88
89   chain input {
90     type filter hook input priority filter;
91
92     iif { $external-interfaces } jump incoming
93
94     accept
95   }
96
97   chain forward {
98     type filter hook forward priority filter;
99
100     iif { $external-interfaces } jump incoming
101     oif { $external-interfaces } jump outgoing
102
103     accept
104   }
105
106   chain output {
107     type filter hook output priority filter;
108
109     oif { $external-interfaces } jump outgoing
110
111     accept
112   }
113 }
114 <%- if node[:roles].include?("gateway") %>
115
116 table ip nat {
117   chain postrouting {
118     type nat hook postrouting priority srcnat;
119
120 <%- node.interfaces(:role => :external).each do |external| %>
121 <%- node.interfaces(:role => :internal).each do |internal| %>
122     oif { < %= external[:interface] %> } ip saddr { <%= internal[:network] %>/<%= internal[:prefix] %> } snat <%= external[:address] %>
123 <%- end %>
124 <%- end %>
125   }
126 }
127 <%- end %>