2 # Cookbook:: networking
5 # Copyright:: 2010, OpenStreetMap Foundation.
6 # Copyright:: 2009, Opscode, Inc.
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
12 # https://www.apache.org/licenses/LICENSE-2.0
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
21 # * node[:networking][:nameservers]
26 keys = data_bag_item("networking", "keys")
33 "renderer" => "networkd",
40 node[:networking][:interfaces].each do |name, interface|
41 if interface[:interface]
42 if interface[:role] && (role = node[:networking][:roles][interface[:role]])
43 if role[interface[:family]]
44 node.default[:networking][:interfaces][name][:prefix] = role[interface[:family]][:prefix]
45 node.default[:networking][:interfaces][name][:gateway] = role[interface[:family]][:gateway]
46 node.default[:networking][:interfaces][name][:routes] = role[interface[:family]][:routes]
49 node.default[:networking][:interfaces][name][:metric] = role[:metric]
50 node.default[:networking][:interfaces][name][:zone] = role[:zone]
53 if interface[:address]
54 prefix = node[:networking][:interfaces][name][:prefix]
56 node.default[:networking][:interfaces][name][:netmask] = (~IPAddr.new(interface[:address]).mask(0)).mask(prefix)
57 node.default[:networking][:interfaces][name][:network] = IPAddr.new(interface[:address]).mask(prefix)
60 interface = node[:networking][:interfaces][name]
62 deviceplan = if interface[:interface] =~ /^(.*)\.(\d+)$/
63 netplan["network"]["vlans"][interface[:interface]] ||= {
64 "id" => Regexp.last_match(2).to_i,
65 "link" => Regexp.last_match(1),
70 elsif interface[:interface] =~ /^bond\d+$/
71 netplan["network"]["bonds"][interface[:interface]] ||= {
77 netplan["network"]["ethernets"][interface[:interface]] ||= {
84 if interface[:address]
85 deviceplan["addresses"].push("#{interface[:address]}/#{prefix}")
89 deviceplan["mtu"] = interface[:mtu]
93 deviceplan["interfaces"] = interface[:bond][:slaves].to_a
95 deviceplan["parameters"] = {
96 "mode" => interface[:bond][:mode] || "active-backup",
97 "primary" => interface[:bond][:slaves].first,
98 "mii-monitor-interval" => interface[:bond][:miimon] || 100,
99 "down-delay" => interface[:bond][:downdelay] || 200,
100 "up-delay" => interface[:bond][:updelay] || 200
103 deviceplan["parameters"]["transmit-hash-policy"] = interface[:bond][:xmithashpolicy] if interface[:bond][:xmithashpolicy]
104 deviceplan["parameters"]["lacp-rate"] = interface[:bond][:lacprate] if interface[:bond][:lacprate]
107 if interface[:gateway]
108 if interface[:family] == "inet"
109 default_route = "0.0.0.0/0"
110 elsif interface[:family] == "inet6"
111 default_route = "::/0"
114 deviceplan["routes"].push(
115 "to" => default_route,
116 "via" => interface[:gateway],
117 "metric" => interface[:metric],
121 # This ordering relies on systemd-networkd adding routes
122 # in reverse order and will need moving before the previous
123 # route once that is fixed:
125 # https://github.com/systemd/systemd/issues/5430
126 # https://github.com/systemd/systemd/pull/10938
127 if interface[:family] == "inet6" &&
128 !interface[:network].include?(interface[:gateway]) &&
129 !IPAddr.new("fe80::/64").include?(interface[:gateway])
130 deviceplan["routes"].push(
131 "to" => interface[:gateway],
137 if interface[:routes]
138 interface[:routes].each do |to, parameters|
139 next if parameters[:via] == interface[:address]
145 route["type"] = parameters[:type] if parameters[:type]
146 route["via"] = parameters[:via] if parameters[:via]
147 route["metric"] = parameters[:metric] if parameters[:metric]
149 deviceplan["routes"].push(route)
153 node.rm(:networking, :interfaces, name)
157 netplan["network"]["bonds"].each_value do |bond|
158 bond["interfaces"].each do |interface|
159 netplan["network"]["ethernets"][interface] ||= { "accept-ra" => false }
163 netplan["network"]["vlans"].each_value do |vlan|
164 unless vlan["link"] =~ /^bond\d+$/
165 netplan["network"]["ethernets"][vlan["link"]] ||= { "accept-ra" => false }
169 file "/etc/netplan/01-netcfg.yaml" do
173 file "/etc/netplan/50-cloud-init.yaml" do
177 file "/etc/netplan/99-chef.yaml" do
181 content YAML.dump(netplan)
184 package "cloud-init" do
188 if node[:networking][:wireguard][:enabled]
189 wireguard_id = persistent_token("networking", "wireguard")
191 node.default[:networking][:wireguard][:address] = "fd43:e709:ea6d:1:#{wireguard_id[0, 4]}:#{wireguard_id[4, 4]}:#{wireguard_id[8, 4]}:#{wireguard_id[12, 4]}"
193 package "wireguard-tools" do
197 directory "/var/lib/systemd/wireguard" do
199 group "systemd-network"
204 file "/var/lib/systemd/wireguard/private.key" do
205 action :create_if_missing
207 group "systemd-network"
209 content %x(wg genkey)
213 node.default[:networking][:wireguard][:public_key] = %x(wg pubkey < /var/lib/systemd/wireguard/private.key).chomp
215 file "/var/lib/systemd/wireguard/preshared.key" do
216 action :create_if_missing
218 group "systemd-network"
220 content keys["wireguard"]
223 if node[:roles].include?("gateway")
224 search(:node, "roles:gateway") do |gateway|
225 next if gateway.name == node.name
226 next unless gateway[:networking][:wireguard] && gateway[:networking][:wireguard][:enabled]
228 allowed_ips = gateway.interfaces(:role => :internal).map do |interface|
229 "#{interface[:network]}/#{interface[:prefix]}"
232 node.default[:networking][:wireguard][:peers] << {
233 :public_key => gateway[:networking][:wireguard][:public_key],
234 :allowed_ips => allowed_ips,
235 :endpoint => "#{gateway.name}:51820"
240 template "/etc/systemd/network/wireguard.netdev" do
241 source "wireguard.netdev.erb"
247 template "/etc/systemd/network/wireguard.network" do
248 source "wireguard.network.erb"
254 execute "ip-link-delete-wg0" do
256 command "ip link delete wg0"
257 subscribes :run, "template[/etc/systemd/network/wireguard.netdev]"
258 only_if { ::File.exist?("/sys/class/net/wg0") }
261 execute "networkctl-reload" do
263 command "networkctl reload"
264 subscribes :run, "template[/etc/systemd/network/wireguard.netdev]"
265 subscribes :run, "template[/etc/systemd/network/wireguard.network]"
266 not_if { ENV.key?("TEST_KITCHEN") }
270 ohai "reload-hostname" do
275 execute "hostnamectl-set-hostname" do
276 command "hostnamectl set-hostname #{node[:networking][:hostname]}"
277 notifies :reload, "ohai[reload-hostname]"
278 not_if { ENV.key?("TEST_KITCHEN") || node[:hostnamectl][:static_hostname] == node[:networking][:hostname] }
281 template "/etc/hosts" do
286 not_if { ENV["TEST_KITCHEN"] }
289 service "systemd-resolved" do
290 action [:enable, :start]
293 directory "/etc/systemd/resolved.conf.d" do
299 template "/etc/systemd/resolved.conf.d/99-chef.conf" do
300 source "resolved.conf.erb"
304 notifies :restart, "service[systemd-resolved]", :immediately
307 if node[:filesystem][:by_mountpoint][:"/etc/resolv.conf"]
308 mount "/etc/resolv.conf" do
310 device node[:filesystem][:by_mountpoint][:"/etc/resolv.conf"][:devices].first
314 link "/etc/resolv.conf" do
315 to "../run/systemd/resolve/stub-resolv.conf"
320 search(:node, "networking:interfaces").collect do |n|
321 next if n[:fqdn] == node[:fqdn]
323 n.interfaces.each do |interface|
324 next unless interface[:role] == "external" && interface[:zone]
326 zones[interface[:zone]] ||= {}
327 zones[interface[:zone]][interface[:family]] ||= []
328 zones[interface[:zone]][interface[:family]] << interface[:address]
334 template "/etc/default/shorewall" do
335 source "shorewall-default.erb"
339 notifies :restart, "service[shorewall]"
342 template "/etc/shorewall/shorewall.conf" do
343 source "shorewall.conf.erb"
347 notifies :restart, "service[shorewall]"
350 template "/etc/shorewall/zones" do
351 source "shorewall-zones.erb"
355 variables :type => "ipv4"
356 notifies :restart, "service[shorewall]"
359 template "/etc/shorewall/interfaces" do
360 source "shorewall-interfaces.erb"
364 notifies :restart, "service[shorewall]"
367 template "/etc/shorewall/hosts" do
368 source "shorewall-hosts.erb"
372 variables :zones => zones
373 notifies :restart, "service[shorewall]"
376 template "/etc/shorewall/conntrack" do
377 source "shorewall-conntrack.erb"
381 notifies :restart, "service[shorewall]"
382 only_if { node[:networking][:firewall][:raw] }
385 template "/etc/shorewall/policy" do
386 source "shorewall-policy.erb"
390 notifies :restart, "service[shorewall]"
393 template "/etc/shorewall/rules" do
395 source "shorewall-rules.erb"
399 variables :family => "inet"
400 notifies :restart, "service[shorewall]"
403 notify_group "shorewall-rules" do
405 notifies :create, "template[/etc/shorewall/rules]"
408 if node[:networking][:firewall][:enabled]
409 service "shorewall" do
410 action [:enable, :start]
411 supports :restart => true
412 status_command "shorewall status"
415 service "shorewall" do
416 action [:disable, :stop]
417 supports :restart => true
418 status_command "shorewall status"
422 template "/etc/logrotate.d/shorewall" do
423 source "logrotate.shorewall.erb"
427 variables :name => "shorewall"
430 firewall_rule "limit-icmp-echo" do
436 dest_ports "echo-request"
437 rate_limit "s:1/sec:5"
440 if node[:networking][:wireguard][:enabled]
441 firewall_rule "accept-wireguard" do
451 if node[:roles].include?("gateway")
452 template "/etc/shorewall/masq" do
453 source "shorewall-masq.erb"
457 notifies :restart, "service[shorewall]"
460 file "/etc/shorewall/masq" do
462 notifies :restart, "service[shorewall]"
466 unless node.interfaces(:family => :inet6).empty?
469 template "/etc/default/shorewall6" do
470 source "shorewall-default.erb"
474 notifies :restart, "service[shorewall6]"
477 template "/etc/shorewall6/shorewall6.conf" do
478 source "shorewall6.conf.erb"
482 notifies :restart, "service[shorewall6]"
485 template "/etc/shorewall6/zones" do
486 source "shorewall-zones.erb"
490 variables :type => "ipv6"
491 notifies :restart, "service[shorewall6]"
494 template "/etc/shorewall6/interfaces" do
495 source "shorewall6-interfaces.erb"
499 notifies :restart, "service[shorewall6]"
502 template "/etc/shorewall6/hosts" do
503 source "shorewall6-hosts.erb"
507 variables :zones => zones
508 notifies :restart, "service[shorewall6]"
511 template "/etc/shorewall6/conntrack" do
512 source "shorewall-conntrack.erb"
516 notifies :restart, "service[shorewall6]"
517 only_if { node[:networking][:firewall][:raw] }
520 template "/etc/shorewall6/policy" do
521 source "shorewall-policy.erb"
525 notifies :restart, "service[shorewall6]"
528 template "/etc/shorewall6/rules" do
530 source "shorewall-rules.erb"
534 variables :family => "inet6"
535 notifies :restart, "service[shorewall6]"
538 notify_group "shorewall6-rules" do
540 notifies :create, "template[/etc/shorewall6/rules]"
543 if node[:networking][:firewall][:enabled]
544 service "shorewall6" do
545 action [:enable, :start]
546 supports :restart => true
547 status_command "shorewall6 status"
550 service "shorewall6" do
551 action [:disable, :stop]
552 supports :restart => true
553 status_command "shorewall6 status"
557 template "/etc/logrotate.d/shorewall6" do
558 source "logrotate.shorewall.erb"
562 variables :name => "shorewall6"
565 firewall_rule "limit-icmp6-echo" do
571 dest_ports "echo-request"
572 rate_limit "s:1/sec:5"
576 firewall_rule "accept-http" do
582 rate_limit node[:networking][:firewall][:http_rate_limit]
583 connection_limit node[:networking][:firewall][:http_connection_limit]
586 firewall_rule "accept-https" do
592 rate_limit node[:networking][:firewall][:http_rate_limit]
593 connection_limit node[:networking][:firewall][:http_connection_limit]