nixos-conf/services/siit-dc.nix

23 lines
401 B
Nix
Raw Normal View History

2025-02-21 02:03:23 +02:00
{ ... }:
let
gua_pref = "2001:14ba:a090:39";
in
{
networking = {
jool = {
enable = true;
siit.default = {
global.pool6 = "${gua_pref}46::/96";
# Explicit address mappings
eamt = [
{
2025-02-21 02:33:43 +02:00
"ipv6 prefix" = "${gua_pref}d1:be24:11ff:fe42:dd76/128";
2025-02-21 02:14:49 +02:00
"ipv4 prefix" = "192.168.250.10/32";
2025-02-21 02:03:23 +02:00
}
];
};
};
};
}