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.
This commit is contained in:
Gabriel Arazas 2023-02-06 19:33:24 +08:00
parent efdbc4c103
commit 2ae9147a98
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -21,11 +21,11 @@ rec {
# * https://docs.hetzner.com/cloud/networks/faq/#are-any-ip-addresses-reserved # * https://docs.hetzner.com/cloud/networks/faq/#are-any-ip-addresses-reserved
# * https://docs.hetzner.com/robot/dedicated-server/ip/additional-ip-adresses/#gateway # * https://docs.hetzner.com/robot/dedicated-server/ip/additional-ip-adresses/#gateway
IPv4 = { IPv4 = {
address = "95.217.212.19"; address = "65.109.224.213";
gateway = "172.31.1.1"; gateway = "172.31.1.1";
}; };
IPv6 = { IPv6 = {
address = "2a01:4f9:c011:a448::1"; address = "2a01:4f9:c012:607a::1";
gateway = ipv6Gateway; gateway = ipv6Gateway;
}; };
}; };