155 lines
4.8 KiB
Nix
155 lines
4.8 KiB
Nix
{ config, lib, pkgs, gcSecrets, ... }:
|
|
let
|
|
port = 51820;
|
|
serverName = "dandelion";
|
|
serverInterface = "enp0s6";
|
|
serverIp = gcSecrets.wireguard.gateway;
|
|
|
|
forwarding = {
|
|
# "22727" = [ "10.100.0.3" "7777" ];
|
|
};
|
|
|
|
mapForwards = type:
|
|
builtins.concatStringsSep "\n" (
|
|
lib.mapAttrsToList (sport: tuple:
|
|
let
|
|
dest = builtins.head tuple;
|
|
dport = lib.last tuple;
|
|
in ''
|
|
${pkgs.iptables}/bin/iptables -${type} PREROUTING -t nat -i ${serverInterface} -p tcp --dport ${sport} -j DNAT --to ${dest}:${dport}
|
|
${pkgs.iptables}/bin/iptables -${type} FORWARD -p tcp -d ${dest} --dport ${dport} -j ACCEPT
|
|
'') forwarding
|
|
);
|
|
|
|
routeBypass = {
|
|
anemone = {
|
|
interface = "wlp1s0";
|
|
routes = [ serverIp ];
|
|
};
|
|
hyacinth = {
|
|
interface = "enp5s0";
|
|
routes = [ serverIp ];
|
|
};
|
|
};
|
|
|
|
clients = {
|
|
# caramel = {
|
|
# publicKey = "VDqcpS0lJzFgwikj61MJ1xc9P8Cuq0NXa+Hc+etn2iA=";
|
|
# allowedIPs = [ "10.100.0.2/32" ];
|
|
# };
|
|
hyacinth = {
|
|
publicKey = "6nVhazYdmC15A/nke9VrqIg3sOBVOmqj4GEsyBq7MVo=";
|
|
allowedIPs = [ "10.100.0.3/32" "${gcSecrets.wireguard.ipv6Subnet}:3"];
|
|
};
|
|
anemone = {
|
|
publicKey = "px5+JNdAmqBvUC++DhiJrUBRAr+BYP6iYVt4sbhPTWY=";
|
|
allowedIPs = [ "10.100.0.4/32" "${gcSecrets.wireguard.ipv6Subnet}:4" ];
|
|
};
|
|
hibiscus = {
|
|
publicKey = "vQ5a2KMrwi7RCRsD0yvog+n35vQYFuvwiPn+W4lbRBw=";
|
|
allowedIPs = [ "10.100.0.5/32" "${gcSecrets.wireguard.ipv6Subnet}:5" ];
|
|
};
|
|
};
|
|
|
|
clientPeers = builtins.attrValues clients;
|
|
serverPeer = {
|
|
publicKey = "3ugIk2tQZXjAH9/95s63ld2WNUHQrd4Mz5jzbln6oj0=";
|
|
allowedIPs = [ "0.0.0.0/0" "::/0" ];
|
|
endpoint = "${serverIp}:${toString port}";
|
|
persistentKeepalive = 25;
|
|
};
|
|
server6OnlyPeer = {
|
|
publicKey = "3ugIk2tQZXjAH9/95s63ld2WNUHQrd4Mz5jzbln6oj0=";
|
|
allowedIPs = [ "::/0" ];
|
|
endpoint = "${serverIp}:${toString port}";
|
|
persistentKeepalive = 25;
|
|
};
|
|
|
|
serverConfig = {
|
|
nat = {
|
|
enable = true;
|
|
externalInterface = serverInterface;
|
|
internalInterfaces = [ "wg0" ];
|
|
};
|
|
firewall = {
|
|
allowedTCPPorts = (builtins.map (s: lib.strings.toInt s) (builtins.attrNames forwarding));
|
|
allowedUDPPorts = [ port ];
|
|
};
|
|
|
|
wireguard.interfaces.wg0 = {
|
|
ips = [ "10.100.0.1/24" "${gcSecrets.wireguard.ipv6Subnet}:1" ];
|
|
listenPort = port;
|
|
|
|
postSetup = ''
|
|
${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -s 10.100.0.0/24 -o ${serverInterface} -j MASQUERADE
|
|
${mapForwards "A"}
|
|
'';
|
|
postShutdown = ''
|
|
${pkgs.iptables}/bin/iptables -t nat -D POSTROUTING -s 10.100.0.0/24 -o ${serverInterface} -j MASQUERADE
|
|
${mapForwards "D"}
|
|
'';
|
|
|
|
privateKeyFile = config.age.secrets."wg_${serverName}".path;
|
|
peers = clientPeers;
|
|
};
|
|
};
|
|
|
|
clientConfig = {
|
|
wireguard.interfaces.wg0 =
|
|
let
|
|
client = clients."${config.networking.hostName}";
|
|
routes = routeBypass."${config.networking.hostName}";
|
|
mapRoutes = type: lib.concatMapStringsSep "\n" (r: "${pkgs.iproute2}/bin/ip route ${type} ${r} dev ${routes.interface}") routes.routes;
|
|
in {
|
|
ips = client.allowedIPs;
|
|
listenPort = port;
|
|
|
|
postSetup = ''
|
|
${mapRoutes "add"}
|
|
${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -s 10.100.0.0/24 -o ${serverInterface} -j MASQUERADE
|
|
'';
|
|
|
|
postShutdown = ''
|
|
${mapRoutes "del"}
|
|
${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -s 10.100.0.0/24 -o ${serverInterface} -j MASQUERADE
|
|
'';
|
|
|
|
privateKeyFile = config.age.secrets."wg_${config.networking.hostName}".path;
|
|
peers = [ serverPeer ];
|
|
};
|
|
};
|
|
|
|
clientQuickConfig = {
|
|
wg-quick.interfaces =
|
|
let
|
|
client = clients."${config.networking.hostName}";
|
|
in {
|
|
wg0 = {
|
|
address = client.allowedIPs;
|
|
dns = [ "2606:4700:4700::1111" "2606:4700:4700::1001" "1.1.1.1" "1.0.0.1" ];
|
|
privateKeyFile = config.age.secrets."wg_${config.networking.hostName}".path;
|
|
|
|
peers = [ server6OnlyPeer ];
|
|
};
|
|
wg1 = {
|
|
address = client.allowedIPs;
|
|
dns = [ "2606:4700:4700::1111" "2606:4700:4700::1001" "1.1.1.1" "1.0.0.1" ];
|
|
privateKeyFile = config.age.secrets."wg_${config.networking.hostName}".path;
|
|
|
|
peers = [ serverPeer ];
|
|
autostart = false;
|
|
};
|
|
};
|
|
};
|
|
in {
|
|
boot.kernel.sysctl = lib.mkIf (config.networking.hostName == serverName) ({
|
|
"net.ipv6.conf.all.forwarding" = true;
|
|
"net.ipv6.conf.default.forwarding" = true;
|
|
});
|
|
networking =
|
|
lib.mkMerge [
|
|
(lib.mkIf (config.networking.hostName == serverName) serverConfig)
|
|
#(lib.mkIf (builtins.hasAttr config.networking.hostName clients) clientConfig)
|
|
(lib.mkIf (builtins.hasAttr config.networking.hostName clients) clientQuickConfig)
|
|
];
|
|
}
|