From 2ae9147a98063b98ead1e7c11f3537114ab2cb70 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Mon, 6 Feb 2023 19:33:24 +0800 Subject: [PATCH] hosts/plover: update IP addresses Decided to go with a new production-like run. Networking really stumps over for the past days. :( I'll eventually learn if I go with the simplest examples as I learn along configuring an Ubuntu-based system in the meantime then translate it to my NixOS config. --- hosts/plover/modules/hardware/networks.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/plover/modules/hardware/networks.nix b/hosts/plover/modules/hardware/networks.nix index 0056ba9c..742dc8ae 100644 --- a/hosts/plover/modules/hardware/networks.nix +++ b/hosts/plover/modules/hardware/networks.nix @@ -21,11 +21,11 @@ rec { # * https://docs.hetzner.com/cloud/networks/faq/#are-any-ip-addresses-reserved # * https://docs.hetzner.com/robot/dedicated-server/ip/additional-ip-adresses/#gateway IPv4 = { - address = "95.217.212.19"; + address = "65.109.224.213"; gateway = "172.31.1.1"; }; IPv6 = { - address = "2a01:4f9:c011:a448::1"; + address = "2a01:4f9:c012:607a::1"; gateway = ipv6Gateway; }; };