16 lines
372 B
Nix
16 lines
372 B
Nix
{
|
|
ovenNat = {
|
|
oven = { address = "10.0.42.1"; prefixLength = 24; };
|
|
pastila = { address = "10.0.42.100"; prefixLength = 24; };
|
|
|
|
# ports to open on pastila and forward through the NAT in oven
|
|
forwardPorts = [
|
|
{ num = 80; proto = "tcp"; }
|
|
{ num = 22; proto = "tcp"; }
|
|
];
|
|
};
|
|
onlineNetDNS = [
|
|
"51.159.47.28"
|
|
"51.159.47.26"
|
|
];
|
|
}
|