network/nix/nixos-module/container/upstream.nix

75 lines
2.2 KiB
Nix

{ hostName, config, lib, ... }:
let
hostConf = config.site.hosts.${hostName};
upstreamInterfaces =
lib.filterAttrs (_: { upstream, ... }: upstream != null)
hostConf.interfaces;
firstUpstreamInterface =
if builtins.length (builtins.attrNames upstreamInterfaces) > 0
then builtins.head (
builtins.attrNames upstreamInterfaces
)
else null;
enabled = (firstUpstreamInterface != null);
in
{
systemd.network.networks = {
core = {
# systemd-networkd only requests Prefix Delegation via DHCPv6 on
# the upstream interface if another interface is configured for it.
# without this, the static ipv6 subnet won't be routed to us.
networkConfig.DHCPv6PrefixDelegation = true;
dhcpV6PrefixDelegationConfig = {
SubnetId = "81";
# because we have static addresses, we don't actually use this
Assign = false;
};
};
} // builtins.mapAttrs (_: { upstream, ... }: {
DHCP = "yes";
networkConfig.IPv6AcceptRA = true;
dhcpV6Config.PrefixDelegationHint = "::/56";
# Traffic Shaping
extraConfig = ''
[CAKE]
Parent = root
# DOCSIS overhead
OverheadBytes = 18
Bandwidth = ${toString upstream.upBandwidth}K
'';
}) upstreamInterfaces;
networking.nat = lib.optionalAttrs enabled {
enable = true;
internalInterfaces = [ "core" ];
externalInterface = firstUpstreamInterface;
# Provide IPv6 upstream for everyone, using NAT66 when not from
# our static prefixes
extraCommands =
builtins.concatStringsSep "\n" (
map (net: ''
ip6tables -t nat -X ${net}_nat || true
ip6tables -t nat -N ${net}_nat
${builtins.concatStringsSep "\n" (
map (subnet: ''
ip6tables -t nat -A ${net}_nat \
-s ${subnet} \
-j RETURN
'') upstreamInterfaces.${net}.upstream.noNat.subnets6
)}
ip6tables -t nat -A ${net}_nat -j MASQUERADE
ip6tables -t nat -A POSTROUTING \
-o ${net} \
-j ${net}_nat
'') (builtins.attrNames upstreamInterfaces)
);
inherit (hostConf) forwardPorts;
};
}