2014-11-20 10:37:48 +00:00
|
|
|
|
{ config, lib, pkgs, utils, ... }:
|
|
|
|
|
|
|
|
|
|
with utils;
|
2014-12-11 00:28:45 +00:00
|
|
|
|
with lib;
|
2014-11-20 10:37:48 +00:00
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
|
|
cfg = config.networking;
|
|
|
|
|
interfaces = attrValues cfg.interfaces;
|
|
|
|
|
|
2017-09-24 15:54:48 +01:00
|
|
|
|
slaves = concatMap (i: i.interfaces) (attrValues cfg.bonds)
|
|
|
|
|
++ concatMap (i: i.interfaces) (attrValues cfg.bridges)
|
2018-12-29 10:16:51 +00:00
|
|
|
|
++ concatMap (i: attrNames (filterAttrs (_: config: config.type != "internal") i.interfaces)) (attrValues cfg.vswitches)
|
2017-09-24 15:54:48 +01:00
|
|
|
|
++ concatMap (i: [i.interface]) (attrValues cfg.macvlans)
|
|
|
|
|
++ concatMap (i: [i.interface]) (attrValues cfg.vlans);
|
|
|
|
|
|
2014-11-20 10:37:48 +00:00
|
|
|
|
# We must escape interfaces due to the systemd interpretation
|
|
|
|
|
subsystemDevice = interface:
|
|
|
|
|
"sys-subsystem-net-devices-${escapeSystemdPath interface}.device";
|
|
|
|
|
|
|
|
|
|
interfaceIps = i:
|
2017-12-03 04:13:14 +00:00
|
|
|
|
i.ipv4.addresses
|
|
|
|
|
++ optionals cfg.enableIPv6 i.ipv6.addresses;
|
2014-11-20 10:37:48 +00:00
|
|
|
|
|
2014-11-25 09:53:37 +00:00
|
|
|
|
destroyBond = i: ''
|
|
|
|
|
while true; do
|
|
|
|
|
UPDATED=1
|
|
|
|
|
SLAVES=$(ip link | grep 'master ${i}' | awk -F: '{print $2}')
|
|
|
|
|
for I in $SLAVES; do
|
|
|
|
|
UPDATED=0
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "$I" nomaster
|
2014-11-25 09:53:37 +00:00
|
|
|
|
done
|
|
|
|
|
[ "$UPDATED" -eq "1" ] && break
|
|
|
|
|
done
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "${i}" down 2>/dev/null || true
|
|
|
|
|
ip link del dev "${i}" 2>/dev/null || true
|
2014-11-25 09:53:37 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2017-02-02 21:21:03 +00:00
|
|
|
|
# warn that these attributes are deprecated (2017-2-2)
|
|
|
|
|
# Should be removed in the release after next
|
|
|
|
|
bondDeprecation = rec {
|
|
|
|
|
deprecated = [ "lacp_rate" "miimon" "mode" "xmit_hash_policy" ];
|
|
|
|
|
filterDeprecated = bond: (filterAttrs (attrName: attr:
|
|
|
|
|
elem attrName deprecated && attr != null) bond);
|
|
|
|
|
};
|
2014-11-20 10:37:48 +00:00
|
|
|
|
|
2017-02-02 21:21:03 +00:00
|
|
|
|
bondWarnings =
|
|
|
|
|
let oneBondWarnings = bondName: bond:
|
|
|
|
|
mapAttrsToList (bondText bondName) (bondDeprecation.filterDeprecated bond);
|
|
|
|
|
bondText = bondName: optName: _:
|
|
|
|
|
"${bondName}.${optName} is deprecated, use ${bondName}.driverOptions";
|
|
|
|
|
in {
|
|
|
|
|
warnings = flatten (mapAttrsToList oneBondWarnings cfg.bonds);
|
|
|
|
|
};
|
2014-11-20 10:37:48 +00:00
|
|
|
|
|
2017-02-02 21:21:03 +00:00
|
|
|
|
normalConfig = {
|
2020-05-17 20:57:01 +01:00
|
|
|
|
systemd.network.links = let
|
|
|
|
|
createNetworkLink = i: nameValuePair "40-${i.name}" {
|
|
|
|
|
matchConfig.OriginalName = i.name;
|
|
|
|
|
linkConfig = optionalAttrs (i.macAddress != null) {
|
|
|
|
|
MACAddress = i.macAddress;
|
|
|
|
|
} // optionalAttrs (i.mtu != null) {
|
|
|
|
|
MTUBytes = toString i.mtu;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
in listToAttrs (map createNetworkLink interfaces);
|
2014-11-20 10:37:48 +00:00
|
|
|
|
systemd.services =
|
|
|
|
|
let
|
|
|
|
|
|
2016-09-30 09:45:48 +01:00
|
|
|
|
deviceDependency = dev:
|
2017-02-09 22:08:48 +00:00
|
|
|
|
# Use systemd service if we manage device creation, else
|
|
|
|
|
# trust udev when not in a container
|
2024-01-02 02:32:50 +00:00
|
|
|
|
if (dev == null || dev == "lo") then []
|
|
|
|
|
else if (hasAttr dev (filterAttrs (k: v: v.virtual) cfg.interfaces)) ||
|
2017-02-18 03:54:15 +00:00
|
|
|
|
(hasAttr dev cfg.bridges) ||
|
2017-02-09 22:08:48 +00:00
|
|
|
|
(hasAttr dev cfg.bonds) ||
|
|
|
|
|
(hasAttr dev cfg.macvlans) ||
|
|
|
|
|
(hasAttr dev cfg.sits) ||
|
|
|
|
|
(hasAttr dev cfg.vlans) ||
|
2018-04-03 21:00:12 +01:00
|
|
|
|
(hasAttr dev cfg.vswitches)
|
2017-02-09 22:08:48 +00:00
|
|
|
|
then [ "${dev}-netdev.service" ]
|
2024-01-02 02:32:50 +00:00
|
|
|
|
else optional (!config.boot.isContainer) (subsystemDevice dev);
|
2016-09-30 09:45:48 +01:00
|
|
|
|
|
2017-09-18 13:46:37 +01:00
|
|
|
|
hasDefaultGatewaySet = (cfg.defaultGateway != null && cfg.defaultGateway.address != "")
|
2018-02-19 20:30:49 +00:00
|
|
|
|
|| (cfg.enableIPv6 && cfg.defaultGateway6 != null && cfg.defaultGateway6.address != "");
|
2017-09-18 13:46:37 +01:00
|
|
|
|
|
2022-06-24 18:43:40 +01:00
|
|
|
|
needNetworkSetup = cfg.resolvconf.enable || cfg.defaultGateway != null || cfg.defaultGateway6 != null;
|
|
|
|
|
|
|
|
|
|
networkLocalCommands = lib.mkIf needNetworkSetup {
|
2014-11-20 10:37:48 +00:00
|
|
|
|
after = [ "network-setup.service" ];
|
|
|
|
|
bindsTo = [ "network-setup.service" ];
|
|
|
|
|
};
|
|
|
|
|
|
2022-06-24 18:43:40 +01:00
|
|
|
|
networkSetup = lib.mkIf needNetworkSetup
|
2014-11-20 10:37:48 +00:00
|
|
|
|
{ description = "Networking Setup";
|
|
|
|
|
|
2016-09-09 04:25:56 +01:00
|
|
|
|
after = [ "network-pre.target" "systemd-udevd.service" "systemd-sysctl.service" ];
|
|
|
|
|
before = [ "network.target" "shutdown.target" ];
|
|
|
|
|
wants = [ "network.target" ];
|
2018-09-23 21:55:59 +01:00
|
|
|
|
# exclude bridges from the partOf relationship to fix container networking bug #47210
|
|
|
|
|
partOf = map (i: "network-addresses-${i.name}.service") (filter (i: !(hasAttr i.name cfg.bridges)) interfaces);
|
2016-09-09 04:25:56 +01:00
|
|
|
|
conflicts = [ "shutdown.target" ];
|
2017-09-18 13:46:37 +01:00
|
|
|
|
wantedBy = [ "multi-user.target" ] ++ optional hasDefaultGatewaySet "network-online.target";
|
2014-11-20 10:37:48 +00:00
|
|
|
|
|
|
|
|
|
unitConfig.ConditionCapability = "CAP_NET_ADMIN";
|
|
|
|
|
|
2021-03-14 16:05:16 +00:00
|
|
|
|
path = [ pkgs.iproute2 ];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
|
2016-09-09 04:25:56 +01:00
|
|
|
|
serviceConfig = {
|
|
|
|
|
Type = "oneshot";
|
|
|
|
|
RemainAfterExit = true;
|
|
|
|
|
};
|
2014-11-20 10:37:48 +00:00
|
|
|
|
|
2016-10-02 13:00:12 +01:00
|
|
|
|
unitConfig.DefaultDependencies = false;
|
|
|
|
|
|
2014-11-20 10:37:48 +00:00
|
|
|
|
script =
|
2014-12-01 09:18:26 +00:00
|
|
|
|
''
|
2019-07-15 18:18:49 +01:00
|
|
|
|
${optionalString config.networking.resolvconf.enable ''
|
2019-03-09 11:42:14 +00:00
|
|
|
|
# Set the static DNS configuration, if given.
|
|
|
|
|
${pkgs.openresolv}/sbin/resolvconf -m 1 -a static <<EOF
|
|
|
|
|
${optionalString (cfg.nameservers != [] && cfg.domain != null) ''
|
|
|
|
|
domain ${cfg.domain}
|
|
|
|
|
''}
|
|
|
|
|
${optionalString (cfg.search != []) ("search " + concatStringsSep " " cfg.search)}
|
|
|
|
|
${flip concatMapStrings cfg.nameservers (ns: ''
|
|
|
|
|
nameserver ${ns}
|
|
|
|
|
'')}
|
|
|
|
|
EOF
|
2014-11-20 10:37:48 +00:00
|
|
|
|
''}
|
2014-12-01 09:18:26 +00:00
|
|
|
|
|
2014-11-20 10:37:48 +00:00
|
|
|
|
# Set the default gateway.
|
2017-01-14 01:14:16 +00:00
|
|
|
|
${optionalString (cfg.defaultGateway != null && cfg.defaultGateway.address != "") ''
|
2017-09-01 05:24:37 +01:00
|
|
|
|
${optionalString (cfg.defaultGateway.interface != null) ''
|
|
|
|
|
ip route replace ${cfg.defaultGateway.address} dev ${cfg.defaultGateway.interface} ${optionalString (cfg.defaultGateway.metric != null)
|
|
|
|
|
"metric ${toString cfg.defaultGateway.metric}"
|
|
|
|
|
} proto static
|
|
|
|
|
''}
|
|
|
|
|
ip route replace default ${optionalString (cfg.defaultGateway.metric != null)
|
2017-02-09 22:09:07 +00:00
|
|
|
|
"metric ${toString cfg.defaultGateway.metric}"
|
|
|
|
|
} via "${cfg.defaultGateway.address}" ${
|
2014-11-20 10:37:48 +00:00
|
|
|
|
optionalString (cfg.defaultGatewayWindowSize != null)
|
2017-01-14 01:14:16 +00:00
|
|
|
|
"window ${toString cfg.defaultGatewayWindowSize}"} ${
|
|
|
|
|
optionalString (cfg.defaultGateway.interface != null)
|
2017-09-01 05:24:37 +01:00
|
|
|
|
"dev ${cfg.defaultGateway.interface}"} proto static
|
2014-11-20 10:37:48 +00:00
|
|
|
|
''}
|
2017-01-14 01:14:16 +00:00
|
|
|
|
${optionalString (cfg.defaultGateway6 != null && cfg.defaultGateway6.address != "") ''
|
2017-09-01 05:24:37 +01:00
|
|
|
|
${optionalString (cfg.defaultGateway6.interface != null) ''
|
|
|
|
|
ip -6 route replace ${cfg.defaultGateway6.address} dev ${cfg.defaultGateway6.interface} ${optionalString (cfg.defaultGateway6.metric != null)
|
|
|
|
|
"metric ${toString cfg.defaultGateway6.metric}"
|
|
|
|
|
} proto static
|
|
|
|
|
''}
|
|
|
|
|
ip -6 route replace default ${optionalString (cfg.defaultGateway6.metric != null)
|
2017-02-09 22:09:07 +00:00
|
|
|
|
"metric ${toString cfg.defaultGateway6.metric}"
|
|
|
|
|
} via "${cfg.defaultGateway6.address}" ${
|
2014-12-18 01:54:06 +00:00
|
|
|
|
optionalString (cfg.defaultGatewayWindowSize != null)
|
2017-01-14 01:14:16 +00:00
|
|
|
|
"window ${toString cfg.defaultGatewayWindowSize}"} ${
|
|
|
|
|
optionalString (cfg.defaultGateway6.interface != null)
|
2017-09-01 05:24:37 +01:00
|
|
|
|
"dev ${cfg.defaultGateway6.interface}"} proto static
|
2014-12-18 01:54:06 +00:00
|
|
|
|
''}
|
2014-11-20 10:37:48 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2014-11-24 20:06:07 +00:00
|
|
|
|
# For each interface <foo>, create a job ‘network-addresses-<foo>.service"
|
|
|
|
|
# that performs static address configuration. It has a "wants"
|
2014-11-20 10:37:48 +00:00
|
|
|
|
# dependency on ‘<foo>.service’, which is supposed to create
|
|
|
|
|
# the interface and need not exist (i.e. for hardware
|
|
|
|
|
# interfaces). It has a binds-to dependency on the actual
|
|
|
|
|
# network device, so it only gets started after the interface
|
|
|
|
|
# has appeared, and it's stopped when the interface
|
|
|
|
|
# disappears.
|
2014-11-24 20:06:07 +00:00
|
|
|
|
configureAddrs = i:
|
2014-11-20 10:37:48 +00:00
|
|
|
|
let
|
|
|
|
|
ips = interfaceIps i;
|
|
|
|
|
in
|
2014-11-24 20:06:07 +00:00
|
|
|
|
nameValuePair "network-addresses-${i.name}"
|
2015-04-20 15:12:19 +01:00
|
|
|
|
{ description = "Address configuration of ${i.name}";
|
2017-09-24 14:55:02 +01:00
|
|
|
|
wantedBy = [
|
|
|
|
|
"network-setup.service"
|
|
|
|
|
"network.target"
|
|
|
|
|
];
|
2016-09-09 04:25:56 +01:00
|
|
|
|
# order before network-setup because the routes that are configured
|
|
|
|
|
# there may need ip addresses configured
|
|
|
|
|
before = [ "network-setup.service" ];
|
2016-09-30 09:45:48 +01:00
|
|
|
|
bindsTo = deviceDependency i.name;
|
|
|
|
|
after = [ "network-pre.target" ] ++ (deviceDependency i.name);
|
2014-11-20 10:37:48 +00:00
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
|
serviceConfig.RemainAfterExit = true;
|
2017-04-04 13:18:49 +01:00
|
|
|
|
# Restart rather than stop+start this unit to prevent the
|
|
|
|
|
# network from dying during switch-to-configuration.
|
|
|
|
|
stopIfChanged = false;
|
2021-03-14 16:05:16 +00:00
|
|
|
|
path = [ pkgs.iproute2 ];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
script =
|
|
|
|
|
''
|
2017-04-04 13:18:49 +01:00
|
|
|
|
state="/run/nixos/network/addresses/${i.name}"
|
2017-07-27 15:23:20 +01:00
|
|
|
|
mkdir -p $(dirname "$state")
|
2017-04-04 13:18:49 +01:00
|
|
|
|
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "${i.name}" up
|
2020-05-17 20:57:01 +01:00
|
|
|
|
|
2017-07-27 15:23:20 +01:00
|
|
|
|
${flip concatMapStrings ips (ip:
|
|
|
|
|
let
|
|
|
|
|
cidr = "${ip.address}/${toString ip.prefixLength}";
|
|
|
|
|
in
|
|
|
|
|
''
|
|
|
|
|
echo "${cidr}" >> $state
|
|
|
|
|
echo -n "adding address ${cidr}... "
|
2024-05-17 00:02:29 +01:00
|
|
|
|
if out=$(ip addr replace "${cidr}" dev "${i.name}" 2>&1); then
|
2017-07-27 15:23:20 +01:00
|
|
|
|
echo "done"
|
2024-05-17 00:02:29 +01:00
|
|
|
|
else
|
|
|
|
|
echo "'ip addr replace "${cidr}" dev "${i.name}"' failed: $out"
|
2017-07-27 15:23:20 +01:00
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
''
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
state="/run/nixos/network/routes/${i.name}"
|
2017-04-04 13:18:49 +01:00
|
|
|
|
mkdir -p $(dirname "$state")
|
|
|
|
|
|
2017-12-03 04:13:14 +00:00
|
|
|
|
${flip concatMapStrings (i.ipv4.routes ++ i.ipv6.routes) (route:
|
2017-07-27 15:23:20 +01:00
|
|
|
|
let
|
|
|
|
|
cidr = "${route.address}/${toString route.prefixLength}";
|
2017-07-28 15:45:58 +01:00
|
|
|
|
via = optionalString (route.via != null) ''via "${route.via}"'';
|
|
|
|
|
options = concatStrings (mapAttrsToList (name: val: "${name} ${val} ") route.options);
|
2022-06-02 19:16:25 +01:00
|
|
|
|
type = toString route.type;
|
2017-07-27 15:23:20 +01:00
|
|
|
|
in
|
|
|
|
|
''
|
|
|
|
|
echo "${cidr}" >> $state
|
|
|
|
|
echo -n "adding route ${cidr}... "
|
2022-06-02 19:16:25 +01:00
|
|
|
|
if out=$(ip route add ${type} "${cidr}" ${options} ${via} dev "${i.name}" proto static 2>&1); then
|
2017-07-27 15:23:20 +01:00
|
|
|
|
echo "done"
|
|
|
|
|
elif ! echo "$out" | grep "File exists" >/dev/null 2>&1; then
|
2022-06-02 19:16:25 +01:00
|
|
|
|
echo "'ip route add ${type} "${cidr}" ${options} ${via} dev "${i.name}"' failed: $out"
|
2017-07-27 15:23:20 +01:00
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
''
|
|
|
|
|
)}
|
|
|
|
|
'';
|
2017-04-04 13:18:49 +01:00
|
|
|
|
preStop = ''
|
2017-07-27 15:23:20 +01:00
|
|
|
|
state="/run/nixos/network/routes/${i.name}"
|
2020-05-29 11:20:06 +01:00
|
|
|
|
if [ -e "$state" ]; then
|
|
|
|
|
while read cidr; do
|
|
|
|
|
echo -n "deleting route $cidr... "
|
|
|
|
|
ip route del "$cidr" dev "${i.name}" >/dev/null 2>&1 && echo "done" || echo "failed"
|
|
|
|
|
done < "$state"
|
|
|
|
|
rm -f "$state"
|
|
|
|
|
fi
|
2017-07-27 15:23:20 +01:00
|
|
|
|
|
2017-04-04 13:18:49 +01:00
|
|
|
|
state="/run/nixos/network/addresses/${i.name}"
|
2020-05-29 11:20:06 +01:00
|
|
|
|
if [ -e "$state" ]; then
|
|
|
|
|
while read cidr; do
|
|
|
|
|
echo -n "deleting address $cidr... "
|
|
|
|
|
ip addr del "$cidr" dev "${i.name}" >/dev/null 2>&1 && echo "done" || echo "failed"
|
|
|
|
|
done < "$state"
|
|
|
|
|
rm -f "$state"
|
|
|
|
|
fi
|
2017-04-04 13:18:49 +01:00
|
|
|
|
'';
|
2014-11-20 10:37:48 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
createTunDevice = i: nameValuePair "${i.name}-netdev"
|
|
|
|
|
{ description = "Virtual Network Interface ${i.name}";
|
2020-08-06 03:12:57 +01:00
|
|
|
|
bindsTo = optional (!config.boot.isContainer) "dev-net-tun.device";
|
|
|
|
|
after = optional (!config.boot.isContainer) "dev-net-tun.device" ++ [ "network-pre.target" ];
|
2016-09-09 04:25:56 +01:00
|
|
|
|
wantedBy = [ "network-setup.service" (subsystemDevice i.name) ];
|
|
|
|
|
partOf = [ "network-setup.service" ];
|
2017-09-24 15:01:07 +01:00
|
|
|
|
before = [ "network-setup.service" ];
|
2021-03-14 16:05:16 +00:00
|
|
|
|
path = [ pkgs.iproute2 ];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
serviceConfig = {
|
|
|
|
|
Type = "oneshot";
|
|
|
|
|
RemainAfterExit = true;
|
|
|
|
|
};
|
|
|
|
|
script = ''
|
2018-01-31 04:51:09 +00:00
|
|
|
|
ip tuntap add dev "${i.name}" mode "${i.virtualType}" user "${i.virtualOwner}"
|
2014-11-20 10:37:48 +00:00
|
|
|
|
'';
|
|
|
|
|
postStop = ''
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link del dev ${i.name} || true
|
2014-11-20 10:37:48 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
createBridgeDevice = n: v: nameValuePair "${n}-netdev"
|
|
|
|
|
(let
|
2016-09-30 13:52:46 +01:00
|
|
|
|
deps = concatLists (map deviceDependency v.interfaces);
|
2014-11-20 10:37:48 +00:00
|
|
|
|
in
|
|
|
|
|
{ description = "Bridge Interface ${n}";
|
2016-09-09 04:25:56 +01:00
|
|
|
|
wantedBy = [ "network-setup.service" (subsystemDevice n) ];
|
2015-01-07 22:34:15 +00:00
|
|
|
|
bindsTo = deps ++ optional v.rstp "mstpd.service";
|
2016-09-09 04:25:56 +01:00
|
|
|
|
partOf = [ "network-setup.service" ] ++ optional v.rstp "mstpd.service";
|
2016-09-07 11:09:20 +01:00
|
|
|
|
after = [ "network-pre.target" ] ++ deps ++ optional v.rstp "mstpd.service"
|
2020-05-17 20:57:01 +01:00
|
|
|
|
++ map (i: "network-addresses-${i}.service") v.interfaces;
|
2017-09-24 15:01:07 +01:00
|
|
|
|
before = [ "network-setup.service" ];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
|
serviceConfig.RemainAfterExit = true;
|
2021-03-14 16:05:16 +00:00
|
|
|
|
path = [ pkgs.iproute2 ];
|
2014-11-25 09:53:37 +00:00
|
|
|
|
script = ''
|
|
|
|
|
# Remove Dead Interfaces
|
|
|
|
|
echo "Removing old bridge ${n}..."
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link show dev "${n}" >/dev/null 2>&1 && ip link del dev "${n}"
|
2014-11-20 10:37:48 +00:00
|
|
|
|
|
2014-11-25 09:53:37 +00:00
|
|
|
|
echo "Adding bridge ${n}..."
|
|
|
|
|
ip link add name "${n}" type bridge
|
2014-11-20 10:37:48 +00:00
|
|
|
|
|
2014-11-25 09:53:37 +00:00
|
|
|
|
# Enslave child interfaces
|
|
|
|
|
${flip concatMapStrings v.interfaces (i: ''
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "${i}" master "${n}"
|
|
|
|
|
ip link set dev "${i}" up
|
2014-11-25 09:53:37 +00:00
|
|
|
|
'')}
|
2017-02-11 15:46:55 +00:00
|
|
|
|
# Save list of enslaved interfaces
|
|
|
|
|
echo "${flip concatMapStrings v.interfaces (i: ''
|
|
|
|
|
${i}
|
|
|
|
|
'')}" > /run/${n}.interfaces
|
2014-11-20 10:37:48 +00:00
|
|
|
|
|
2017-07-27 06:49:18 +01:00
|
|
|
|
${optionalString config.virtualisation.libvirtd.enable ''
|
|
|
|
|
# Enslave dynamically added interfaces which may be lost on nixos-rebuild
|
2020-03-09 09:05:13 +00:00
|
|
|
|
#
|
|
|
|
|
# if `libvirtd.service` is not running, do not use `virsh` which would try activate it via 'libvirtd.socket' and thus start it out-of-order.
|
|
|
|
|
# `libvirtd.service` will set up bridge interfaces when it will start normally.
|
|
|
|
|
#
|
2020-05-21 09:33:51 +01:00
|
|
|
|
if /run/current-system/systemd/bin/systemctl --quiet is-active 'libvirtd.service'; then
|
2020-03-09 09:05:13 +00:00
|
|
|
|
for uri in qemu:///system lxc:///; do
|
|
|
|
|
for dom in $(${pkgs.libvirt}/bin/virsh -c $uri list --name); do
|
|
|
|
|
${pkgs.libvirt}/bin/virsh -c $uri dumpxml "$dom" | \
|
2023-10-29 17:27:16 +00:00
|
|
|
|
${pkgs.xmlstarlet}/bin/xmlstarlet sel -t -m "//domain/devices/interface[@type='bridge'][source/@bridge='${n}'][target/@dev]" -v "concat('ip link set dev ',target/@dev,' master ',source/@bridge,';')" | \
|
2020-03-09 09:05:13 +00:00
|
|
|
|
${pkgs.bash}/bin/bash
|
|
|
|
|
done
|
2017-08-01 11:30:58 +01:00
|
|
|
|
done
|
2020-03-09 09:05:13 +00:00
|
|
|
|
fi
|
2017-07-27 06:49:18 +01:00
|
|
|
|
''}
|
|
|
|
|
|
2015-01-14 00:10:39 +00:00
|
|
|
|
# Enable stp on the interface
|
2015-01-07 22:34:15 +00:00
|
|
|
|
${optionalString v.rstp ''
|
2015-01-14 00:10:39 +00:00
|
|
|
|
echo 2 >/sys/class/net/${n}/bridge/stp_state
|
2015-01-07 22:34:15 +00:00
|
|
|
|
''}
|
|
|
|
|
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "${n}" up
|
2014-11-25 09:53:37 +00:00
|
|
|
|
'';
|
|
|
|
|
postStop = ''
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "${n}" down || true
|
|
|
|
|
ip link del dev "${n}" || true
|
2017-02-11 15:46:55 +00:00
|
|
|
|
rm -f /run/${n}.interfaces
|
2014-11-25 09:53:37 +00:00
|
|
|
|
'';
|
2017-02-11 15:46:55 +00:00
|
|
|
|
reload = ''
|
|
|
|
|
# Un-enslave child interfaces (old list of interfaces)
|
|
|
|
|
for interface in `cat /run/${n}.interfaces`; do
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "$interface" nomaster up
|
2017-02-11 15:46:55 +00:00
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
# Enslave child interfaces (new list of interfaces)
|
|
|
|
|
${flip concatMapStrings v.interfaces (i: ''
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "${i}" master "${n}"
|
|
|
|
|
ip link set dev "${i}" up
|
2017-02-11 15:46:55 +00:00
|
|
|
|
'')}
|
|
|
|
|
# Save list of enslaved interfaces
|
|
|
|
|
echo "${flip concatMapStrings v.interfaces (i: ''
|
|
|
|
|
${i}
|
|
|
|
|
'')}" > /run/${n}.interfaces
|
|
|
|
|
|
|
|
|
|
# (Un-)set stp on the bridge
|
|
|
|
|
echo ${if v.rstp then "2" else "0"} > /sys/class/net/${n}/bridge/stp_state
|
|
|
|
|
'';
|
|
|
|
|
reloadIfChanged = true;
|
2014-11-20 10:37:48 +00:00
|
|
|
|
});
|
|
|
|
|
|
2015-09-22 14:49:17 +01:00
|
|
|
|
createVswitchDevice = n: v: nameValuePair "${n}-netdev"
|
|
|
|
|
(let
|
2018-12-29 10:16:51 +00:00
|
|
|
|
deps = concatLists (map deviceDependency (attrNames (filterAttrs (_: config: config.type != "internal") v.interfaces)));
|
2020-05-17 20:57:01 +01:00
|
|
|
|
internalConfigs = map (i: "network-addresses-${i}.service") (attrNames (filterAttrs (_: config: config.type == "internal") v.interfaces));
|
2015-09-22 14:49:17 +01:00
|
|
|
|
ofRules = pkgs.writeText "vswitch-${n}-openFlowRules" v.openFlowRules;
|
|
|
|
|
in
|
|
|
|
|
{ description = "Open vSwitch Interface ${n}";
|
2018-12-29 10:16:51 +00:00
|
|
|
|
wantedBy = [ "network-setup.service" (subsystemDevice n) ] ++ internalConfigs;
|
|
|
|
|
# before = [ "network-setup.service" ];
|
|
|
|
|
# should work without internalConfigs dependencies because address/link configuration depends
|
|
|
|
|
# on the device, which is created by ovs-vswitchd with type=internal, but it does not...
|
|
|
|
|
before = [ "network-setup.service" ] ++ internalConfigs;
|
|
|
|
|
partOf = [ "network-setup.service" ]; # shutdown the bridge when network is shutdown
|
|
|
|
|
bindsTo = [ "ovs-vswitchd.service" ]; # requires ovs-vswitchd to be alive at all times
|
|
|
|
|
after = [ "network-pre.target" "ovs-vswitchd.service" ] ++ deps; # start switch after physical interfaces and vswitch daemon
|
|
|
|
|
wants = deps; # if one or more interface fails, the switch should continue to run
|
2015-09-22 14:49:17 +01:00
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
|
serviceConfig.RemainAfterExit = true;
|
2021-03-14 16:05:16 +00:00
|
|
|
|
path = [ pkgs.iproute2 config.virtualisation.vswitch.package ];
|
2018-12-29 10:16:51 +00:00
|
|
|
|
preStart = ''
|
|
|
|
|
echo "Resetting Open vSwitch ${n}..."
|
|
|
|
|
ovs-vsctl --if-exists del-br ${n} -- add-br ${n} \
|
|
|
|
|
-- set bridge ${n} protocols=${concatStringsSep "," v.supportedOpenFlowVersions}
|
|
|
|
|
'';
|
2015-09-22 14:49:17 +01:00
|
|
|
|
script = ''
|
2018-12-29 10:16:51 +00:00
|
|
|
|
echo "Configuring Open vSwitch ${n}..."
|
|
|
|
|
ovs-vsctl ${concatStrings (mapAttrsToList (name: config: " -- add-port ${n} ${name}" + optionalString (config.vlan != null) " tag=${toString config.vlan}") v.interfaces)} \
|
|
|
|
|
${concatStrings (mapAttrsToList (name: config: optionalString (config.type != null) " -- set interface ${name} type=${config.type}") v.interfaces)} \
|
2015-09-22 14:49:17 +01:00
|
|
|
|
${concatMapStrings (x: " -- set-controller ${n} " + x) v.controllers} \
|
|
|
|
|
${concatMapStrings (x: " -- " + x) (splitString "\n" v.extraOvsctlCmds)}
|
|
|
|
|
|
2018-12-29 10:16:51 +00:00
|
|
|
|
|
2015-09-22 14:49:17 +01:00
|
|
|
|
echo "Adding OpenFlow rules for Open vSwitch ${n}..."
|
2018-12-29 10:16:51 +00:00
|
|
|
|
ovs-ofctl --protocols=${v.openFlowVersion} add-flows ${n} ${ofRules}
|
2015-09-22 14:49:17 +01:00
|
|
|
|
'';
|
|
|
|
|
postStop = ''
|
2018-12-29 10:16:51 +00:00
|
|
|
|
echo "Cleaning Open vSwitch ${n}"
|
2023-05-20 03:11:38 +01:00
|
|
|
|
echo "Shutting down internal ${n} interface"
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev ${n} down || true
|
2018-12-29 10:16:51 +00:00
|
|
|
|
echo "Deleting flows for ${n}"
|
|
|
|
|
ovs-ofctl --protocols=${v.openFlowVersion} del-flows ${n} || true
|
|
|
|
|
echo "Deleting Open vSwitch ${n}"
|
|
|
|
|
ovs-vsctl --if-exists del-br ${n} || true
|
2015-09-22 14:49:17 +01:00
|
|
|
|
'';
|
|
|
|
|
});
|
|
|
|
|
|
2014-11-20 10:37:48 +00:00
|
|
|
|
createBondDevice = n: v: nameValuePair "${n}-netdev"
|
|
|
|
|
(let
|
2016-09-30 13:52:46 +01:00
|
|
|
|
deps = concatLists (map deviceDependency v.interfaces);
|
2014-11-20 10:37:48 +00:00
|
|
|
|
in
|
|
|
|
|
{ description = "Bond Interface ${n}";
|
2016-09-09 04:25:56 +01:00
|
|
|
|
wantedBy = [ "network-setup.service" (subsystemDevice n) ];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
bindsTo = deps;
|
2016-09-09 04:25:56 +01:00
|
|
|
|
partOf = [ "network-setup.service" ];
|
2014-12-02 01:19:06 +00:00
|
|
|
|
after = [ "network-pre.target" ] ++ deps
|
2020-05-17 20:57:01 +01:00
|
|
|
|
++ map (i: "network-addresses-${i}.service") v.interfaces;
|
2017-09-24 15:01:07 +01:00
|
|
|
|
before = [ "network-setup.service" ];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
|
serviceConfig.RemainAfterExit = true;
|
2021-03-14 16:05:16 +00:00
|
|
|
|
path = [ pkgs.iproute2 pkgs.gawk ];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
script = ''
|
2014-11-25 09:53:37 +00:00
|
|
|
|
echo "Destroying old bond ${n}..."
|
|
|
|
|
${destroyBond n}
|
2014-11-20 10:37:48 +00:00
|
|
|
|
|
2014-11-25 09:53:37 +00:00
|
|
|
|
echo "Creating new bond ${n}..."
|
|
|
|
|
ip link add name "${n}" type bond \
|
2017-02-02 21:21:03 +00:00
|
|
|
|
${let opts = (mapAttrs (const toString)
|
|
|
|
|
(bondDeprecation.filterDeprecated v))
|
|
|
|
|
// v.driverOptions;
|
|
|
|
|
in concatStringsSep "\n"
|
|
|
|
|
(mapAttrsToList (set: val: " ${set} ${val} \\") opts)}
|
2014-11-20 10:37:48 +00:00
|
|
|
|
|
2014-11-25 09:53:37 +00:00
|
|
|
|
# !!! There must be a better way to wait for the interface
|
|
|
|
|
while [ ! -d "/sys/class/net/${n}" ]; do sleep 0.1; done;
|
2014-11-20 10:37:48 +00:00
|
|
|
|
|
|
|
|
|
# Bring up the bond and enslave the specified interfaces
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "${n}" up
|
2014-11-20 10:37:48 +00:00
|
|
|
|
${flip concatMapStrings v.interfaces (i: ''
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "${i}" down
|
|
|
|
|
ip link set dev "${i}" master "${n}"
|
2014-11-20 10:37:48 +00:00
|
|
|
|
'')}
|
|
|
|
|
'';
|
2014-11-25 09:53:37 +00:00
|
|
|
|
postStop = destroyBond n;
|
2014-11-20 10:37:48 +00:00
|
|
|
|
});
|
|
|
|
|
|
2014-11-26 23:42:32 +00:00
|
|
|
|
createMacvlanDevice = n: v: nameValuePair "${n}-netdev"
|
|
|
|
|
(let
|
2016-09-30 09:45:48 +01:00
|
|
|
|
deps = deviceDependency v.interface;
|
2014-11-26 23:42:32 +00:00
|
|
|
|
in
|
|
|
|
|
{ description = "Vlan Interface ${n}";
|
2016-09-09 04:25:56 +01:00
|
|
|
|
wantedBy = [ "network-setup.service" (subsystemDevice n) ];
|
2014-11-26 23:42:32 +00:00
|
|
|
|
bindsTo = deps;
|
2016-09-09 04:25:56 +01:00
|
|
|
|
partOf = [ "network-setup.service" ];
|
2014-12-02 01:19:06 +00:00
|
|
|
|
after = [ "network-pre.target" ] ++ deps;
|
2017-09-24 15:01:07 +01:00
|
|
|
|
before = [ "network-setup.service" ];
|
2014-11-26 23:42:32 +00:00
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
|
serviceConfig.RemainAfterExit = true;
|
2021-03-14 16:05:16 +00:00
|
|
|
|
path = [ pkgs.iproute2 ];
|
2014-11-26 23:42:32 +00:00
|
|
|
|
script = ''
|
|
|
|
|
# Remove Dead Interfaces
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link show dev "${n}" >/dev/null 2>&1 && ip link delete dev "${n}"
|
2014-11-26 23:42:32 +00:00
|
|
|
|
ip link add link "${v.interface}" name "${n}" type macvlan \
|
|
|
|
|
${optionalString (v.mode != null) "mode ${v.mode}"}
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "${n}" up
|
2014-11-26 23:42:32 +00:00
|
|
|
|
'';
|
|
|
|
|
postStop = ''
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link delete dev "${n}" || true
|
2014-11-26 23:42:32 +00:00
|
|
|
|
'';
|
|
|
|
|
});
|
|
|
|
|
|
2021-08-11 10:02:47 +01:00
|
|
|
|
createFouEncapsulation = n: v: nameValuePair "${n}-fou-encap"
|
|
|
|
|
(let
|
|
|
|
|
# if we have a device to bind to we can wait for its addresses to be
|
|
|
|
|
# configured, otherwise external sequencing is required.
|
|
|
|
|
deps = optionals (v.local != null && v.local.dev != null)
|
|
|
|
|
(deviceDependency v.local.dev ++ [ "network-addresses-${v.local.dev}.service" ]);
|
|
|
|
|
fouSpec = "port ${toString v.port} ${
|
|
|
|
|
if v.protocol != null then "ipproto ${toString v.protocol}" else "gue"
|
|
|
|
|
} ${
|
|
|
|
|
optionalString (v.local != null) "local ${escapeShellArg v.local.address} ${
|
|
|
|
|
optionalString (v.local.dev != null) "dev ${escapeShellArg v.local.dev}"
|
|
|
|
|
}"
|
|
|
|
|
}";
|
|
|
|
|
in
|
|
|
|
|
{ description = "FOU endpoint ${n}";
|
|
|
|
|
wantedBy = [ "network-setup.service" (subsystemDevice n) ];
|
|
|
|
|
bindsTo = deps;
|
|
|
|
|
partOf = [ "network-setup.service" ];
|
|
|
|
|
after = [ "network-pre.target" ] ++ deps;
|
|
|
|
|
before = [ "network-setup.service" ];
|
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
|
serviceConfig.RemainAfterExit = true;
|
|
|
|
|
path = [ pkgs.iproute2 ];
|
|
|
|
|
script = ''
|
|
|
|
|
# always remove previous incarnation since show can't filter
|
|
|
|
|
ip fou del ${fouSpec} >/dev/null 2>&1 || true
|
|
|
|
|
ip fou add ${fouSpec}
|
|
|
|
|
'';
|
|
|
|
|
postStop = ''
|
|
|
|
|
ip fou del ${fouSpec} || true
|
|
|
|
|
'';
|
|
|
|
|
});
|
|
|
|
|
|
2014-11-20 10:37:48 +00:00
|
|
|
|
createSitDevice = n: v: nameValuePair "${n}-netdev"
|
|
|
|
|
(let
|
2016-10-11 22:18:02 +01:00
|
|
|
|
deps = deviceDependency v.dev;
|
2014-11-20 10:37:48 +00:00
|
|
|
|
in
|
|
|
|
|
{ description = "6-to-4 Tunnel Interface ${n}";
|
2016-09-09 04:25:56 +01:00
|
|
|
|
wantedBy = [ "network-setup.service" (subsystemDevice n) ];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
bindsTo = deps;
|
2016-09-09 04:25:56 +01:00
|
|
|
|
partOf = [ "network-setup.service" ];
|
2014-12-02 01:19:06 +00:00
|
|
|
|
after = [ "network-pre.target" ] ++ deps;
|
2017-09-24 15:01:07 +01:00
|
|
|
|
before = [ "network-setup.service" ];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
|
serviceConfig.RemainAfterExit = true;
|
2021-03-14 16:05:16 +00:00
|
|
|
|
path = [ pkgs.iproute2 ];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
script = ''
|
|
|
|
|
# Remove Dead Interfaces
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link show dev "${n}" >/dev/null 2>&1 && ip link delete dev "${n}"
|
2014-11-20 10:37:48 +00:00
|
|
|
|
ip link add name "${n}" type sit \
|
|
|
|
|
${optionalString (v.remote != null) "remote \"${v.remote}\""} \
|
|
|
|
|
${optionalString (v.local != null) "local \"${v.local}\""} \
|
|
|
|
|
${optionalString (v.ttl != null) "ttl ${toString v.ttl}"} \
|
2021-08-11 11:48:43 +01:00
|
|
|
|
${optionalString (v.dev != null) "dev \"${v.dev}\""} \
|
|
|
|
|
${optionalString (v.encapsulation != null)
|
|
|
|
|
"encap ${v.encapsulation.type} encap-dport ${toString v.encapsulation.port} ${
|
|
|
|
|
optionalString (v.encapsulation.sourcePort != null)
|
|
|
|
|
"encap-sport ${toString v.encapsulation.sourcePort}"
|
|
|
|
|
}"}
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "${n}" up
|
2014-11-20 10:37:48 +00:00
|
|
|
|
'';
|
|
|
|
|
postStop = ''
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link delete dev "${n}" || true
|
2014-11-20 10:37:48 +00:00
|
|
|
|
'';
|
|
|
|
|
});
|
|
|
|
|
|
2021-12-07 15:44:00 +00:00
|
|
|
|
createGreDevice = n: v: nameValuePair "${n}-netdev"
|
|
|
|
|
(let
|
|
|
|
|
deps = deviceDependency v.dev;
|
2022-03-22 14:54:25 +00:00
|
|
|
|
ttlarg = if lib.hasPrefix "ip6" v.type then "hoplimit" else "ttl";
|
2021-12-07 15:44:00 +00:00
|
|
|
|
in
|
|
|
|
|
{ description = "GRE Tunnel Interface ${n}";
|
|
|
|
|
wantedBy = [ "network-setup.service" (subsystemDevice n) ];
|
|
|
|
|
bindsTo = deps;
|
|
|
|
|
partOf = [ "network-setup.service" ];
|
|
|
|
|
after = [ "network-pre.target" ] ++ deps;
|
|
|
|
|
before = [ "network-setup.service" ];
|
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
|
serviceConfig.RemainAfterExit = true;
|
|
|
|
|
path = [ pkgs.iproute2 ];
|
|
|
|
|
script = ''
|
|
|
|
|
# Remove Dead Interfaces
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link show dev "${n}" >/dev/null 2>&1 && ip link delete dev "${n}"
|
2021-12-07 15:44:00 +00:00
|
|
|
|
ip link add name "${n}" type ${v.type} \
|
|
|
|
|
${optionalString (v.remote != null) "remote \"${v.remote}\""} \
|
|
|
|
|
${optionalString (v.local != null) "local \"${v.local}\""} \
|
2022-03-22 14:54:25 +00:00
|
|
|
|
${optionalString (v.ttl != null) "${ttlarg} ${toString v.ttl}"} \
|
2021-12-07 15:44:00 +00:00
|
|
|
|
${optionalString (v.dev != null) "dev \"${v.dev}\""}
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "${n}" up
|
2021-12-07 15:44:00 +00:00
|
|
|
|
'';
|
|
|
|
|
postStop = ''
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link delete dev "${n}" || true
|
2021-12-07 15:44:00 +00:00
|
|
|
|
'';
|
|
|
|
|
});
|
|
|
|
|
|
2014-11-20 10:37:48 +00:00
|
|
|
|
createVlanDevice = n: v: nameValuePair "${n}-netdev"
|
|
|
|
|
(let
|
2016-09-30 09:45:48 +01:00
|
|
|
|
deps = deviceDependency v.interface;
|
2014-11-20 10:37:48 +00:00
|
|
|
|
in
|
|
|
|
|
{ description = "Vlan Interface ${n}";
|
2016-09-09 04:25:56 +01:00
|
|
|
|
wantedBy = [ "network-setup.service" (subsystemDevice n) ];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
bindsTo = deps;
|
2016-09-09 04:25:56 +01:00
|
|
|
|
partOf = [ "network-setup.service" ];
|
2014-12-02 01:19:06 +00:00
|
|
|
|
after = [ "network-pre.target" ] ++ deps;
|
2017-09-24 15:01:07 +01:00
|
|
|
|
before = [ "network-setup.service" ];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
|
serviceConfig.RemainAfterExit = true;
|
2021-03-14 16:05:16 +00:00
|
|
|
|
path = [ pkgs.iproute2 ];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
script = ''
|
|
|
|
|
# Remove Dead Interfaces
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link show dev "${n}" >/dev/null 2>&1 && ip link delete dev "${n}"
|
2014-11-20 10:37:48 +00:00
|
|
|
|
ip link add link "${v.interface}" name "${n}" type vlan id "${toString v.id}"
|
2018-12-29 10:16:51 +00:00
|
|
|
|
|
|
|
|
|
# We try to bring up the logical VLAN interface. If the master
|
|
|
|
|
# interface the logical interface is dependent upon is not up yet we will
|
2018-08-13 21:38:32 +01:00
|
|
|
|
# fail to immediately bring up the logical interface. The resulting logical
|
|
|
|
|
# interface will brought up later when the master interface is up.
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link set dev "${n}" up || true
|
2014-11-20 10:37:48 +00:00
|
|
|
|
'';
|
|
|
|
|
postStop = ''
|
2023-10-29 17:27:16 +00:00
|
|
|
|
ip link delete dev "${n}" || true
|
2014-11-20 10:37:48 +00:00
|
|
|
|
'';
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
in listToAttrs (
|
2014-11-24 20:06:07 +00:00
|
|
|
|
map configureAddrs interfaces ++
|
2014-11-20 10:37:48 +00:00
|
|
|
|
map createTunDevice (filter (i: i.virtual) interfaces))
|
|
|
|
|
// mapAttrs' createBridgeDevice cfg.bridges
|
2015-09-22 14:49:17 +01:00
|
|
|
|
// mapAttrs' createVswitchDevice cfg.vswitches
|
2014-11-20 10:37:48 +00:00
|
|
|
|
// mapAttrs' createBondDevice cfg.bonds
|
2014-11-26 23:42:32 +00:00
|
|
|
|
// mapAttrs' createMacvlanDevice cfg.macvlans
|
2021-08-11 10:02:47 +01:00
|
|
|
|
// mapAttrs' createFouEncapsulation cfg.fooOverUDP
|
2014-11-20 10:37:48 +00:00
|
|
|
|
// mapAttrs' createSitDevice cfg.sits
|
2021-12-07 15:44:00 +00:00
|
|
|
|
// mapAttrs' createGreDevice cfg.greTunnels
|
2014-11-20 10:37:48 +00:00
|
|
|
|
// mapAttrs' createVlanDevice cfg.vlans
|
|
|
|
|
// {
|
2019-08-13 22:52:01 +01:00
|
|
|
|
network-setup = networkSetup;
|
|
|
|
|
network-local-commands = networkLocalCommands;
|
2014-11-20 10:37:48 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services.udev.extraRules =
|
|
|
|
|
''
|
|
|
|
|
KERNEL=="tun", TAG+="systemd"
|
|
|
|
|
'';
|
|
|
|
|
|
2017-02-02 21:21:03 +00:00
|
|
|
|
|
2014-11-20 10:37:48 +00:00
|
|
|
|
};
|
|
|
|
|
|
2017-02-02 21:21:03 +00:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
config = mkMerge [
|
|
|
|
|
bondWarnings
|
|
|
|
|
(mkIf (!cfg.useNetworkd) normalConfig)
|
2017-09-24 15:54:48 +01:00
|
|
|
|
{ # Ensure slave interfaces are brought up
|
|
|
|
|
networking.interfaces = genAttrs slaves (i: {});
|
|
|
|
|
}
|
2017-02-02 21:21:03 +00:00
|
|
|
|
];
|
2014-11-20 10:37:48 +00:00
|
|
|
|
}
|