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

174 lines
3.8 KiB
Nix
Raw Normal View History

2020-12-16 12:30:38 +01:00
{ config, pkgs, lib, ... }:
2020-12-06 16:40:47 +01:00
{
imports =
[
./hardware-configuration.nix
../../configuration/common
2020-12-07 15:14:33 +01:00
../../configuration/router
2020-12-06 16:40:47 +01:00
];
boot.kernelParams = [ "console=ttyS0,115200n8" ];
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.extraConfig = "
serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
terminal_input serial
terminal_output serial
";
networking.hostName = "carbon";
networking.useDHCP = false;
2020-12-16 12:30:38 +01:00
# Local Router IPs
networking.interfaces.lo.ipv6.addresses = [
{ address = "fd00:152:152:104::1"; prefixLength = 64; }
{ address = "fd00:152:152::1"; prefixLength = 128; } # Anycast
];
networking.interfaces.lo.ipv4.addresses = [
{ address = "10.152.104.1"; prefixLength = 24; }
{ address = "10.152.0.1"; prefixLength = 32; } # Anycast
];
# Network
2020-12-06 16:40:47 +01:00
networking.interfaces.enp1s0.useDHCP = true;
2020-12-17 01:21:50 +01:00
networking.interfaces.enp2s0.ipv6.addresses = [ { address = "fd00:152:152:4::1"; prefixLength = 64; } ];
networking.interfaces.enp2s0.ipv4.addresses = [ { address = "10.152.4.1"; prefixLength = 24; } ];
2020-12-06 16:40:47 +01:00
2020-12-07 15:24:04 +01:00
networking.wireguard.enable = true;
networking.wireguard.interfaces = {
2020-12-16 12:30:38 +01:00
wg-porter = {
ips = [ "fe80::138:2/64" "169.254.138.2/24" ];
peers = [ {
allowedIPs = [ "0.0.0.0/0" "::/0" ];
endpoint = "porter.net.clerie.de:50138";
publicKey = "aP6optNE7nVk6coo+USkSDtB62rAc/isfofRML9V2HM=";
persistentKeepalive = 25;
} ];
2020-12-07 15:26:35 +01:00
allowedIPsAsRoutes = false;
2020-12-16 12:30:38 +01:00
privateKeyFile = "/var/src/secrets/wireguard/wg-porter";
2020-12-07 15:24:04 +01:00
};
};
2020-12-16 12:30:38 +01:00
services.bird2.enable = true;
services.bird2.config = ''
router id ${ (lib.head config.networking.interfaces.lo.ipv4.addresses).address };
ipv6 table ospf6;
ipv4 table ospf4;
2020-12-17 01:35:27 +01:00
ipv6 table bgp6;
ipv4 table bgp4;
2020-12-16 12:30:38 +01:00
2020-12-17 01:21:50 +01:00
protocol direct direct_lo {
2020-12-16 12:30:38 +01:00
interface "lo";
ipv6 {
table ospf6;
2020-12-17 01:21:50 +01:00
};
ipv4 {
table ospf4;
};
}
protocol direct direct_enp2s0 {
interface "enp2s0";
ipv6 {
table ospf6;
2020-12-16 12:30:38 +01:00
};
ipv4 {
table ospf4;
};
}
protocol kernel kernel_6 {
ipv6 {
table ospf6;
export filter {
krt_prefsrc=${ (lib.head config.networking.interfaces.lo.ipv6.addresses).address };
accept;
};
import none;
};
}
protocol kernel kernel_4 {
ipv4 {
table ospf4;
export filter {
krt_prefsrc=${ (lib.head config.networking.interfaces.lo.ipv4.addresses).address };
accept;
};
import none;
};
}
protocol ospf v3 ospf_6 {
ipv6 {
table ospf6;
import all;
export all;
};
area 0 {
interface "wg-porter" {
cost 80;
type pointopoint;
};
};
}
protocol ospf v3 ospf_4 {
ipv4 {
table ospf4;
import all;
export all;
};
area 0 {
interface "wg-porter" {
cost 80;
type pointopoint;
};
};
}
2020-12-17 01:35:27 +01:00
template bgp ibgp6 {
local as 4200002574;
graceful restart on;
source address ${ (lib.head config.networking.interfaces.lo.ipv6.addresses).address };
ipv6 {
table bgp6;
next hop self;
import keep filtered;
import all;
export all;
};
}
template bgp ibgp4 {
local as 4200002574;
graceful restart on;
source address ${ (lib.head config.networking.interfaces.lo.ipv4.addresses).address };
ipv4 {
table bgp4;
next hop self;
import keep filtered;
import all;
export all;
};
}
protocol bgp bgp_nonat from ibgp6 {
neighbor fd00:152:152:103::1 as 4200002574;
}
protocol bgp bgp_porter from ibgp6 {
neighbor fd00:152:152:102::1 as 4200002574;
}
2020-12-16 12:30:38 +01:00
protocol device {
scan time 10;
}
'';
2020-12-06 16:40:47 +01:00
system.stateVersion = "21.03";
}