Remove: NAT64
This commit is contained in:
parent
a53995840e
commit
9dba2b3b6e
2 changed files with 0 additions and 59 deletions
|
@ -1,12 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
networking.hostName = "nat64";
|
|
||||||
|
|
||||||
imports = [
|
|
||||||
../base.nix
|
|
||||||
../services/nat64.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
# HARDWARE SPECIFIC
|
|
||||||
services.qemuGuest.enable = true;
|
|
||||||
}
|
|
|
@ -1,47 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
networking = {
|
|
||||||
jool = {
|
|
||||||
enable = true;
|
|
||||||
nat64.default = {
|
|
||||||
global.pool6 = "64:ff9b::/96"; # Default value made explicit for clarity
|
|
||||||
|
|
||||||
# Port forwarding
|
|
||||||
bib = [
|
|
||||||
{
|
|
||||||
# ExoPlaSim WireGuard
|
|
||||||
"protocol" = "UDP";
|
|
||||||
"ipv4 address" = "192.168.1.3#51821";
|
|
||||||
"ipv6 address" = "fd08:d473:bcca:1:210:3292:4922:b9aa#51821";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
pool4 = [
|
|
||||||
# Ports for static BIB entries
|
|
||||||
{
|
|
||||||
protocol = "UDP";
|
|
||||||
prefix = "192.168.1.3/32";
|
|
||||||
"port range" = "51821";
|
|
||||||
}
|
|
||||||
|
|
||||||
# Port ranges for dynamic translation
|
|
||||||
{
|
|
||||||
protocol = "TCP";
|
|
||||||
prefix = "192.168.1.3/32";
|
|
||||||
"port range" = "61001-65535";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
protocol = "UDP";
|
|
||||||
prefix = "192.168.1.3/32";
|
|
||||||
"port range" = "61001-65535";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
protocol = "ICMP";
|
|
||||||
prefix = "192.168.1.3/32";
|
|
||||||
"port range" = "61001-65535";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue