catvayor
bc5ee80d69
Some checks failed
Check meta / check_meta (pull_request) Successful in 26s
Check meta / check_dns (pull_request) Successful in 47s
build configuration / build_vault01 (pull_request) Successful in 1m14s
build configuration / build_compute01 (pull_request) Successful in 1m16s
build configuration / build_web02 (pull_request) Successful in 54s
build configuration / build_storage01 (pull_request) Successful in 1m27s
build configuration / build_web01 (pull_request) Successful in 1m33s
build configuration / build_rescue01 (pull_request) Successful in 55s
build configuration / build_web02 (push) Successful in 1m7s
build configuration / build_storage01 (push) Successful in 1m13s
build configuration / build_rescue01 (push) Successful in 1m12s
build configuration / build_compute01 (push) Successful in 1m16s
build configuration / build_vault01 (push) Successful in 1m15s
build configuration / build_web01 (push) Successful in 1m36s
lint / check (push) Successful in 24s
build configuration / push_to_cache (pull_request) Failing after 2m17s
build configuration / push_to_cache (push) Successful in 2m42s
194 lines
4.4 KiB
Nix
194 lines
4.4 KiB
Nix
{
|
|
pkgs,
|
|
lib,
|
|
meta,
|
|
name,
|
|
...
|
|
}:
|
|
|
|
let
|
|
inherit (lib) mapAttrs' nameValuePair;
|
|
|
|
uplink = {
|
|
ip = "10.120.33.250";
|
|
prefix = 30;
|
|
|
|
router = "10.120.33.249";
|
|
};
|
|
|
|
mkNetwork =
|
|
name:
|
|
{
|
|
address ? [ ],
|
|
extraNetwork ? { },
|
|
...
|
|
}:
|
|
nameValuePair "10-${name}" ({ inherit name address; } // extraNetwork);
|
|
|
|
mkNetdev =
|
|
name:
|
|
{ Id, ... }:
|
|
nameValuePair "10-${name}" {
|
|
netdevConfig = {
|
|
Name = name;
|
|
Kind = "vlan";
|
|
};
|
|
vlanConfig.Id = Id;
|
|
};
|
|
|
|
mkUserVlan =
|
|
id:
|
|
let
|
|
# on alloue 10.0.0.0/17 aux thurnés, avec un /27 chacun, on garde 10.0.0.0/27 pour nous (routeur et autres)
|
|
vlan = 4094 - id;
|
|
prefix24nb = (id + 1) / 8;
|
|
prefix27nb = (id + 1 - prefix24nb * 8) * 32;
|
|
netIP = "10.0.${toString prefix24nb}.${toString prefix27nb}";
|
|
servIP = "10.0.${toString prefix24nb}.${toString (prefix27nb + 1)}";
|
|
interfaceName = "vlan-user-${toString vlan}";
|
|
in
|
|
{
|
|
name = interfaceName;
|
|
value = {
|
|
Id = vlan;
|
|
extraNetwork = {
|
|
networkConfig = {
|
|
LinkLocalAddressing = "no";
|
|
DHCPServer = "yes";
|
|
};
|
|
linkConfig.Promiscuous = true;
|
|
addresses = [
|
|
{
|
|
addressConfig = {
|
|
Address = "${servIP}/27";
|
|
AddPrefixRoute = false;
|
|
};
|
|
}
|
|
];
|
|
routes = [
|
|
{
|
|
routeConfig = {
|
|
Destination = "${netIP}/27";
|
|
Table = "user";
|
|
};
|
|
}
|
|
];
|
|
routingPolicyRules = [
|
|
{
|
|
routingPolicyRuleConfig = {
|
|
From = "${netIP}/27";
|
|
To = "10.0.0.0/27";
|
|
IncomingInterface = interfaceName;
|
|
Table = "user";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
|
|
vlans = {
|
|
vlan-uplink-cri = {
|
|
Id = 223;
|
|
address = with uplink; [ "${ip}/${builtins.toString prefix}" ];
|
|
|
|
extraNetwork.routes = [
|
|
{
|
|
routeConfig = {
|
|
# Get the public ip from the metadata
|
|
PreferredSource = builtins.head meta.network.${name}.addresses.ipv4;
|
|
Gateway = uplink.router;
|
|
};
|
|
}
|
|
];
|
|
};
|
|
|
|
vlan-admin = {
|
|
Id = 3000;
|
|
address = [ "fd26:baf9:d250:8000::1/64" ];
|
|
};
|
|
|
|
vlan-admin-ap = {
|
|
Id = 3001;
|
|
address = [ "fd26:baf9:d250:8010::1/60" ];
|
|
};
|
|
|
|
vlan-apro = {
|
|
Id = 2000;
|
|
address = [ "10.0.255.1/24" ];
|
|
|
|
extraNetwork.networkConfig.DHCPServer = "yes";
|
|
};
|
|
} // builtins.listToAttrs (builtins.genList mkUserVlan 850);
|
|
in
|
|
|
|
{
|
|
systemd = {
|
|
network = {
|
|
config.routeTables."user" = 1000;
|
|
networks = {
|
|
"10-lo" = {
|
|
name = "lo";
|
|
address = [
|
|
"::1/128"
|
|
"127.0.0.1/8"
|
|
"10.0.0.1/27"
|
|
];
|
|
routes = [
|
|
{
|
|
routeConfig = {
|
|
Destination = "10.0.0.0/27";
|
|
Table = "user";
|
|
};
|
|
}
|
|
];
|
|
routingPolicyRules = [
|
|
{
|
|
routingPolicyRuleConfig = {
|
|
IncomingInterface = "lo";
|
|
Table = "user";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
"10-enp67s0f0np0" = {
|
|
name = "enp67s0f0np0";
|
|
linkConfig.Promiscuous = true;
|
|
networkConfig = {
|
|
VLAN = builtins.attrNames vlans;
|
|
|
|
LinkLocalAddressing = false;
|
|
LLDP = false;
|
|
EmitLLDP = false;
|
|
IPv6AcceptRA = false;
|
|
IPv6SendRA = false;
|
|
};
|
|
};
|
|
} // (mapAttrs' mkNetwork vlans);
|
|
|
|
netdevs = mapAttrs' mkNetdev vlans;
|
|
};
|
|
|
|
services = {
|
|
ethtoolConfig = {
|
|
wantedBy = [ "systemd-networkd.service" ];
|
|
after = [ "sys-subsystem-net-devices-enp67s0f0np0.device" ];
|
|
bindsTo = [ "sys-subsystem-net-devices-enp67s0f0np0.device" ];
|
|
script = builtins.concatStringsSep "\n" (
|
|
builtins.map (name: "${lib.getExe pkgs.ethtool} -K enp67s0f0np0 ${name} off") [
|
|
"rxvlan"
|
|
"txvlan"
|
|
"rx-vlan-filter"
|
|
"rx-vlan-offload"
|
|
"tx-vlan-offload"
|
|
"tx-vlan-stag-hw-insert"
|
|
]
|
|
);
|
|
};
|
|
|
|
systemd-networkd.serviceConfig.LimitNOFILE = 4096;
|
|
};
|
|
};
|
|
|
|
networking.firewall.allowedUDPPorts = [ 67 ];
|
|
}
|