2020-12-15 20:22:07 +01:00
|
|
|
{ config, pkgs, lib, ... }:
|
2020-12-15 12:59:27 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[
|
|
|
|
./hardware-configuration.nix
|
|
|
|
../../configuration/common
|
2020-12-15 20:22:07 +01:00
|
|
|
../../configuration/router
|
2020-12-15 12:59:27 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
boot.loader.grub.enable = true;
|
|
|
|
boot.loader.grub.version = 2;
|
|
|
|
boot.loader.grub.device = "/dev/sda";
|
|
|
|
|
|
|
|
networking.hostName = "porter";
|
|
|
|
|
|
|
|
networking.useDHCP = false;
|
2020-12-15 20:22:07 +01:00
|
|
|
# Local Router IPs
|
|
|
|
networking.interfaces.lo.ipv6.addresses = [
|
|
|
|
{ address = "fd00:152:152:102::1"; prefixLength = 64; }
|
2020-12-16 11:17:11 +01:00
|
|
|
{ address = "fd00:152:152::1"; prefixLength = 128; } # Anycast
|
2020-12-15 20:22:07 +01:00
|
|
|
];
|
|
|
|
networking.interfaces.lo.ipv4.addresses = [
|
|
|
|
{ address = "10.152.102.1"; prefixLength = 24; }
|
2020-12-16 11:17:11 +01:00
|
|
|
{ address = "10.152.0.1"; prefixLength = 32; } # Anycast
|
2020-12-15 20:22:07 +01:00
|
|
|
];
|
|
|
|
# Network
|
2020-12-15 12:59:27 +01:00
|
|
|
networking.interfaces.ens3.ipv4.addresses = [ { address = "188.34.158.206"; prefixLength = 32; } ];
|
|
|
|
networking.interfaces.ens3.ipv6.addresses = [ { address = "2a01:4f8:c010:4c92::1"; prefixLength = 64; } ];
|
|
|
|
networking.defaultGateway = { address = "172.31.1.1"; interface = "ens3"; };
|
|
|
|
networking.defaultGateway6 = { address = "fe80::1"; interface = "ens3"; };
|
|
|
|
networking.nameservers = [ "213.133.98.98" "213.133.99.99" "213.133.100.100" ];
|
|
|
|
|
2020-12-15 18:13:56 +01:00
|
|
|
networking.wireguard.enable = true;
|
|
|
|
networking.wireguard.interfaces = {
|
2020-12-16 12:30:38 +01:00
|
|
|
wg-carbon = {
|
|
|
|
ips = [ "fe80::138:1/64" "169.254.138.1/24" ];
|
|
|
|
peers = [ {
|
|
|
|
allowedIPs = [ "0.0.0.0/0" "::/0" ];
|
|
|
|
publicKey = "ezemzjfG6OZ3rHcCvuh+N1VfaIgbijvFbvvRmhasu2E=";
|
|
|
|
} ];
|
|
|
|
listenPort = 50138;
|
|
|
|
allowedIPsAsRoutes = false;
|
|
|
|
privateKeyFile = "/var/src/secrets/wireguard/wg-carbon";
|
|
|
|
};
|
2020-12-15 18:13:56 +01:00
|
|
|
wg-nonat = {
|
2020-12-16 11:15:59 +01:00
|
|
|
ips = [ "fe80::1337:1/64" "169.254.137.1/24" ];
|
2020-12-15 18:13:56 +01:00
|
|
|
peers = [ {
|
|
|
|
allowedIPs = [ "0.0.0.0/0" "::/0" ];
|
|
|
|
endpoint = "nonat.net.clerie.de:51337";
|
|
|
|
publicKey = "Z5HltUKBSOzePqZCJjSsJPZ3UxGjFR4a5Vxmm+ePNRk=";
|
|
|
|
} ];
|
|
|
|
listenPort = 51337;
|
|
|
|
allowedIPsAsRoutes = false;
|
|
|
|
privateKeyFile = "/var/src/secrets/wireguard/wg-nonat";
|
2020-12-16 11:15:59 +01:00
|
|
|
};
|
2020-12-15 18:13:56 +01:00
|
|
|
};
|
|
|
|
|
2020-12-26 01:49:13 +01:00
|
|
|
clerie.nginx-port-forward = {
|
|
|
|
enable = true;
|
|
|
|
tcpPorts."2022" = {
|
|
|
|
host = "nonat.net.clerie.de";
|
|
|
|
port = 22;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-12-16 12:30:38 +01:00
|
|
|
networking.firewall.allowedUDPPorts = [ 50138 51337 ];
|
2020-12-15 18:13:56 +01:00
|
|
|
|
2020-12-17 03:04:30 +01:00
|
|
|
petabyte.policyrouting = {
|
|
|
|
enable = true;
|
|
|
|
rules6 = [
|
|
|
|
{ rule = "from all to fd00:152:152::/48 lookup 1000"; prio = 10000; } # OSPF
|
|
|
|
{ rule = "from fd00:152:152::/48 lookup 2000"; prio = 10000; } # BGP
|
|
|
|
{ rule = "from all to fd00:152:152::/48 unreachable"; prio = 20000; }
|
|
|
|
];
|
|
|
|
rules4 = [
|
|
|
|
{ rule = "from all to 10.152.0.0/16 lookup 1000"; prio = 10000; } # OSPF
|
|
|
|
{ rule = "from 10.152.0.0/16 lookup 2000"; prio = 10000; } # BGP
|
|
|
|
{ rule = "from all to 10.152.0.0/16 unreachable"; prio = 20000; }
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
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-15 20:22:07 +01:00
|
|
|
|
|
|
|
protocol direct {
|
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-17 03:04:30 +01:00
|
|
|
protocol kernel kernel_ospf6 {
|
|
|
|
kernel table 1000;
|
2020-12-15 20:22:07 +01:00
|
|
|
ipv6 {
|
|
|
|
table ospf6;
|
|
|
|
export filter {
|
2020-12-17 01:41:45 +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 03:04:30 +01:00
|
|
|
protocol kernel kernel_ospf4 {
|
|
|
|
kernel table 1000;
|
2020-12-16 11:15:59 +01:00
|
|
|
ipv4 {
|
|
|
|
table ospf4;
|
|
|
|
export filter {
|
2020-12-17 01:41:45 +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 {
|
2020-12-16 12:30:38 +01:00
|
|
|
interface "wg-carbon" {
|
|
|
|
cost 80;
|
|
|
|
type pointopoint;
|
|
|
|
};
|
2020-12-15 20:22:07 +01:00
|
|
|
interface "wg-nonat" {
|
|
|
|
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 {
|
2020-12-16 12:30:38 +01:00
|
|
|
interface "wg-carbon" {
|
|
|
|
cost 80;
|
|
|
|
type pointopoint;
|
|
|
|
};
|
2020-12-16 11:15:59 +01:00
|
|
|
interface "wg-nonat" {
|
|
|
|
cost 80;
|
|
|
|
type pointopoint;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-12-15 20:22:07 +01:00
|
|
|
protocol device {
|
|
|
|
scan time 10;
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
2020-12-15 12:59:27 +01:00
|
|
|
system.stateVersion = "21.03";
|
|
|
|
}
|