diff options
author | Alex Auvolat <alex@adnab.me> | 2022-02-26 00:13:08 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-02-26 00:13:08 +0100 |
commit | 86b98732212661c4398c21d1be689d8a1a5b5263 (patch) | |
tree | 60f11e9357ce24c9a61fd364195731abbcedaeee /cluster/staging/cluster.nix | |
parent | 0940e0bdfc191aff87cbc94490812190d4b7cf58 (diff) | |
download | nixcfg-86b98732212661c4398c21d1be689d8a1a5b5263.tar.gz nixcfg-86b98732212661c4398c21d1be689d8a1a5b5263.zip |
Wireguard directly using LAN addresses when possible
Diffstat (limited to 'cluster/staging/cluster.nix')
-rw-r--r-- | cluster/staging/cluster.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cluster/staging/cluster.nix b/cluster/staging/cluster.nix index 2b6cb6c..79fb3fb 100644 --- a/cluster/staging/cluster.nix +++ b/cluster/staging/cluster.nix @@ -5,27 +5,34 @@ deuxfleurs.cluster_nodes = [ { hostname = "spoutnik"; + site_name = "pluton"; publicKey = "fO8qZOZmnug84cA8nvfjl5MUqyWljP0BAz/4tHRZyEg="; IP = "10.42.2.2"; endpoint = "77.141.67.109:42136"; } { hostname = "cariacou"; + site_name = "neptune"; publicKey = "qxrtfn2zRVnN52Y5NYumyU3/FcRMnh3kJ2C37JfrczA="; IP = "10.42.2.21"; endpoint = "82.66.112.151:33721"; + lan_endpoint = "192.168.1.21:33721"; } { hostname = "carcajou"; + site_name = "neptune"; publicKey = "7Nm7pMmyS7Nts1MB+loyD8u84ODxHPTkDu+uqQR6yDk="; IP = "10.42.2.22"; endpoint = "82.66.112.151:33722"; + lan_endpoint = "192.168.1.22:33722"; } { hostname = "caribou"; + site_name = "neptune"; publicKey = "g6ZED/wPn5MPfytJKwPI19808CXtEad0IJUkEAAzwyY="; IP = "10.42.2.23"; endpoint = "82.66.112.151:33723"; + lan_endpoint = "192.168.1.23:33723"; } ]; deuxfleurs.admin_nodes = [ |