diff options
author | Alex Auvolat <alex@adnab.me> | 2022-12-07 11:21:39 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-12-07 11:21:39 +0100 |
commit | 4e3db0cd5e8e1ef5c7653c46912c618a0c5b5530 (patch) | |
tree | 8bda1129b3f9a399ff413a9c42a1b1f40ee30d9b | |
parent | c9bcfb5e46be68fce56e2612b4bbf75508e1e814 (diff) | |
download | nixcfg-4e3db0cd5e8e1ef5c7653c46912c618a0c5b5530.tar.gz nixcfg-4e3db0cd5e8e1ef5c7653c46912c618a0c5b5530.zip |
staging: correct public IPs through NAT for wireguard
-rw-r--r-- | cluster/staging/cluster.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cluster/staging/cluster.nix b/cluster/staging/cluster.nix index c387a22..b9a4fed 100644 --- a/cluster/staging/cluster.nix +++ b/cluster/staging/cluster.nix @@ -14,7 +14,7 @@ publicKey = "qxrtfn2zRVnN52Y5NYumyU3/FcRMnh3kJ2C37JfrczA="; IP = "10.14.1.1"; lan_endpoint = "192.168.1.21:33799"; - endpoint = "192.168.1.21:33799"; ## TODO nat + endpoint = "77.207.15.215:33721"; } { hostname = "carcajou"; @@ -22,7 +22,7 @@ publicKey = "7Nm7pMmyS7Nts1MB+loyD8u84ODxHPTkDu+uqQR6yDk="; IP = "10.14.1.2"; lan_endpoint = "192.168.1.22:33799"; - endpoint = "192.168.1.22:33799"; ## TODO nat + endpoint = "77.207.15.215:33722"; } { hostname = "caribou"; @@ -30,7 +30,7 @@ publicKey = "lABn/axzD1jkFulX8c+K3B3CbKXORlIMDDoe8sQVxhs="; IP = "10.14.1.3"; lan_endpoint = "192.168.1.23:33799"; - endpoint = "192.168.1.23:33799"; ## TODO nat + endpoint = "77.207.15.215:33723"; } ]; |