diff options
Diffstat (limited to 'cluster/staging')
-rw-r--r-- | cluster/staging/cluster.nix | 6 | ||||
-rw-r--r-- | cluster/staging/site/neptune.nix | 4 | ||||
-rw-r--r-- | cluster/staging/ssh_config | 9 |
3 files changed, 11 insertions, 8 deletions
diff --git a/cluster/staging/cluster.nix b/cluster/staging/cluster.nix index 2ad79bf..0836dcb 100644 --- a/cluster/staging/cluster.nix +++ b/cluster/staging/cluster.nix @@ -5,9 +5,9 @@ # Bootstrap nodes for Wesher overlay network services.wesher.join = [ - "2a01:e0a:c:a720::21" # cariacou - "2a01:e0a:c:a720::22" # carcajou - "2a01:e0a:c:a720::23" # caribou + "192.168.1.21" # cariacou + "192.168.1.22" # carcajou + "192.168.1.23" # caribou ]; # The IP range to use for the Wesher overlay of this cluster diff --git a/cluster/staging/site/neptune.nix b/cluster/staging/site/neptune.nix index 38a4bab..034c634 100644 --- a/cluster/staging/site/neptune.nix +++ b/cluster/staging/site/neptune.nix @@ -2,11 +2,11 @@ { deuxfleurs.site_name = "neptune"; - deuxfleurs.lan_default_gateway = "192.168.1.254"; + deuxfleurs.lan_default_gateway = "192.168.1.1"; deuxfleurs.lan_ip_prefix_length = 24; deuxfleurs.ipv6_prefix_length = 64; - networking.nameservers = [ "192.168.1.254" ]; + networking.nameservers = [ "192.168.1.1" ]; networking.firewall.allowedTCPPorts = [ 80 443 ]; diff --git a/cluster/staging/ssh_config b/cluster/staging/ssh_config index 9bc4e6e..3360725 100644 --- a/cluster/staging/ssh_config +++ b/cluster/staging/ssh_config @@ -1,13 +1,16 @@ UserKnownHostsFile ./ssh_known_hosts Host caribou - HostName 2a01:e0a:c:a720::23 + #HostName 2a01:e0a:c:a720::23 + HostName 192.168.1.23 Host carcajou - HostName 2a01:e0a:c:a720::22 + #HostName 2a01:e0a:c:a720::22 + HostName 192.168.1.22 Host cariacou - HostName 2a01:e0a:c:a720::21 + #HostName 2a01:e0a:c:a720::21 + HostName 192.168.1.21 Host spoutnik HostName 10.42.0.2 |