From 3c04e993b75d67bed5fc269d84ff1519353f0a32 Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Thu, 28 Jul 2022 16:16:57 +0300 Subject: [PATCH] networking: Add grant roaming wg --- cookbooks/networking/recipes/default.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cookbooks/networking/recipes/default.rb b/cookbooks/networking/recipes/default.rb index 162e0c3a8..22ed79abe 100644 --- a/cookbooks/networking/recipes/default.rb +++ b/cookbooks/networking/recipes/default.rb @@ -262,11 +262,18 @@ if node[:networking][:wireguard][:enabled] :endpoint => "gate.compton.nu:51820" } + # Grant home node.default[:networking][:wireguard][:peers] << { :public_key => "RofATnvlWxP3mt87+QKRXFE5MVxtoCcTsJ+yftZYEE4=", :allowed_ips => "10.89.122.1/32", :endpoint => "gate.firefishy.com:51820" } + + # Grant roaming + node.default[:networking][:wireguard][:peers] << { + :public_key => "RofATnvlWxP3mt87+QKRXFE5MVxtoCcTsJ+yftZYEE4=", + :allowed_ips => "10.89.123.1/32" + } end template "/etc/systemd/network/wireguard.netdev" do -- 2.43.2