diff --git a/hosts/vm-infra/configuration.nix b/hosts/vm-infra/configuration.nix index fc81430..555e045 100644 --- a/hosts/vm-infra/configuration.nix +++ b/hosts/vm-infra/configuration.nix @@ -18,6 +18,22 @@ # Setup JOOL NAT64 networking.jool = { enable = true; - nat64.default = { }; + nat64.default = { + global.pool6 = "64:ff9b::/96"; + pool4 = [ + { + protocol = "TCP"; + prefix = "10.64.0.1/32"; + } + { + protocol = "UDP"; + prefix = "10.64.0.1/32"; + } + { + protocol = "ICMP"; + prefix = "10.64.0.1/32"; + } + ]; + }; }; }