nixos-conf/services/siit-dc.nix
2025-02-21 02:14:49 +02:00

22 lines
399 B
Nix

{ ... }:
let
gua_pref = "2001:14ba:a090:39";
in
{
networking = {
jool = {
enable = true;
siit.default = {
global.pool6 = "${gua_pref}46::/96";
# Explicit address mappings
eamt = [
{
"ipv6 prefix" = "${gua_pref}d1:f0bf:efb:c23:b751/128";
"ipv4 prefix" = "192.168.250.10/32";
}
];
};
};
};
}