1
0
Fork 0
nixfiles/hosts/nonat/configuration.nix

180 lines
4.3 KiB
Nix
Raw Normal View History

2020-12-07 16:57:50 +01:00
{ config, pkgs, lib, ... }:
{
imports =
[
./hardware-configuration.nix
../../configuration/common
../../configuration/proxmox-vm
2020-12-15 20:22:07 +01:00
../../configuration/router
2020-12-07 16:57:50 +01:00
];
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/vda";
networking.hostName = "nonat";
networking.useDHCP = false;
2020-12-15 20:22:07 +01:00
# Local Router IPs
networking.interfaces.lo.ipv6.addresses = [
{ address = "fd00:152:152:103::1"; prefixLength = 64; }
{ address = "fd00:152:152::1"; prefixLength = 128; } # Anycast
2020-12-15 20:22:07 +01:00
];
networking.interfaces.lo.ipv4.addresses = [
{ address = "10.152.103.1"; prefixLength = 24; }
{ address = "10.152.0.1"; prefixLength = 32; } # Anycast
2020-12-15 20:22:07 +01:00
];
# Network
2020-12-07 16:57:50 +01:00
networking.interfaces.ens18.ipv4.addresses = [
{ address = "141.24.46.169"; prefixLength = 24; }
];
networking.interfaces.ens18.ipv6.addresses = [
{ address = "2001:638:904:ffca::6"; prefixLength = 64; }
];
networking.defaultGateway = { address = "141.24.46.1"; interface = "ens18"; };
networking.defaultGateway6 = { address = "2001:638:904:ffca::1"; interface = "ens18"; };
2020-12-07 17:03:56 +01:00
networking.nameservers = [ "2001:638:904:ffcc::3" "2001:638:904:ffcc::4" "141.24.40.3" "141.24.40.4" ];
2020-12-07 16:57:50 +01:00
networking.interfaces.ens19.ipv4.addresses = [
{ address = "192.168.10.1"; prefixLength = 24; }
];
networking.nat = {
2020-12-17 03:56:06 +01:00
enableIPv6 = true;
2020-12-07 16:57:50 +01:00
enable = true;
externalInterface = "ens18";
2020-12-17 03:56:06 +01:00
externalIPv6 = (lib.head config.networking.interfaces.ens18.ipv6.addresses).address;
2020-12-07 16:57:50 +01:00
externalIP = (lib.head config.networking.interfaces.ens18.ipv4.addresses).address;
internalInterfaces = [ "ens19" ];
2020-12-17 03:56:06 +01:00
internalIPv6s = [ "fd00:152:152::/48" ];
internalIPs = [ "10.152.0.0/16" ];
2020-12-07 16:57:50 +01:00
};
2020-12-15 18:13:56 +01:00
networking.wireguard.enable = true;
networking.wireguard.interfaces = {
2021-02-03 19:37:15 +01:00
wg-gatekeeper6 = {
2021-01-10 18:47:11 +01:00
ips = [ "fe80::128:2/64" "169.254.128.2/24" ];
peers = [ {
allowedIPs = [ "0.0.0.0/0" "::/0" ];
2021-02-03 19:37:15 +01:00
endpoint = "[2a01:4f8:c0c:15f1::1]:50128";
2021-01-10 18:47:11 +01:00
publicKey = "7QHjiBbWhpOw4OX3Ye58v0YEOqhdfGJSyaHCdiCa20Q=";
} ];
listenPort = 50128;
allowedIPsAsRoutes = false;
2021-02-03 19:37:15 +01:00
privateKeyFile = "/var/src/secrets/wireguard/wg-gatekeeper6";
2021-01-10 18:47:11 +01:00
};
2021-02-03 19:37:15 +01:00
wg-porter6 = {
2020-12-16 11:15:59 +01:00
ips = [ "fe80::1337:2/64" "169.254.137.2/24" ];
2020-12-15 18:13:56 +01:00
peers = [ {
allowedIPs = [ "0.0.0.0/0" "::/0" ];
2021-02-03 19:37:15 +01:00
endpoint = "[2a03:4000:6:48d::1]:51337";
2020-12-15 18:13:56 +01:00
publicKey = "TzQV60SvPZuJ9yTzvyGwejyXw1SlKkilS4UUvrQcyGk=";
} ];
listenPort = 51337;
allowedIPsAsRoutes = false;
2021-02-03 19:37:15 +01:00
privateKeyFile = "/var/src/secrets/wireguard/wg-porter6";
2020-12-16 11:15:59 +01:00
};
2020-12-15 18:13:56 +01:00
};
2021-01-10 18:47:11 +01:00
networking.firewall.allowedUDPPorts = [ 50128 51337 ];
2020-12-15 18:13:56 +01:00
2020-12-15 20:22:07 +01:00
services.bird2.enable = true;
services.bird2.config = ''
router id ${ (lib.head config.networking.interfaces.lo.ipv4.addresses).address };
ipv6 table ospf6;
2020-12-16 11:15:59 +01:00
ipv4 table ospf4;
2020-12-16 13:33:35 +01:00
2020-12-16 12:59:41 +01:00
protocol direct direct_lo {
2020-12-16 11:15:59 +01:00
interface "lo";
ipv6 {
table ospf6;
};
ipv4 {
table ospf4;
};
2020-12-15 20:22:07 +01:00
}
2020-12-16 12:59:41 +01:00
protocol direct direct_ens19 {
interface "ens19";
ipv6 {
table ospf6;
};
ipv4 {
table ospf4;
};
}
2020-12-17 01:35:27 +01:00
protocol kernel kernel_ospf6 {
2020-12-15 20:22:07 +01:00
ipv6 {
table ospf6;
export filter {
2020-12-17 01:35:27 +01:00
krt_prefsrc=${ (lib.head config.networking.interfaces.lo.ipv6.addresses).address };
2020-12-15 20:22:07 +01:00
accept;
};
import none;
};
}
2020-12-17 01:35:27 +01:00
protocol kernel kernel_ospf4 {
2020-12-16 11:15:59 +01:00
ipv4 {
table ospf4;
export filter {
2020-12-17 01:35:27 +01:00
krt_prefsrc=${ (lib.head config.networking.interfaces.lo.ipv4.addresses).address };
2020-12-16 11:15:59 +01:00
accept;
};
import none;
};
}
protocol ospf v3 ospf_6 {
2020-12-15 20:22:07 +01:00
ipv6 {
table ospf6;
import all;
export all;
};
area 0 {
2021-02-03 19:37:15 +01:00
interface "wg-gatekeeper6" {
2021-01-10 18:47:11 +01:00
cost 80;
type pointopoint;
};
2021-02-03 19:37:15 +01:00
interface "wg-porter6" {
2020-12-15 20:22:07 +01:00
cost 80;
type pointopoint;
};
};
}
2020-12-16 11:15:59 +01:00
protocol ospf v3 ospf_4 {
ipv4 {
table ospf4;
import all;
export all;
};
area 0 {
2021-02-03 19:37:15 +01:00
interface "wg-gatekeeper6" {
2021-01-10 18:47:11 +01:00
cost 80;
type pointopoint;
};
2021-02-03 19:37:15 +01:00
interface "wg-porter6" {
2020-12-16 11:15:59 +01:00
cost 80;
type pointopoint;
};
};
}
2020-12-15 20:22:07 +01:00
protocol device {
scan time 10;
}
'';
2021-02-24 12:09:44 +01:00
clerie.monitoring = {
enable = true;
id = "103";
pubkey = "BHRfdK+HsoBXQHgLXotMnfPgfRrsVNHdSg19fvS2kg4=";
2022-03-22 12:16:28 +01:00
bird = true;
2021-02-24 12:09:44 +01:00
};
2020-12-07 16:57:50 +01:00
system.stateVersion = "21.03";
}