feat(vault01): higher MTU
All checks were successful
Check workflows / check_workflows (pull_request) Successful in 17s
Check meta / check_meta (pull_request) Successful in 19s
Build all the nodes / netcore02 (pull_request) Successful in 21s
Check meta / check_dns (pull_request) Successful in 29s
Build all the nodes / ap01 (pull_request) Successful in 1m20s
Build the shell / build-shell (pull_request) Successful in 59s
Build all the nodes / geo02 (pull_request) Successful in 1m44s
Build all the nodes / geo01 (pull_request) Successful in 1m52s
Build all the nodes / hypervisor03 (pull_request) Successful in 2m0s
Build all the nodes / hypervisor02 (pull_request) Successful in 2m3s
Build all the nodes / tower01 (pull_request) Successful in 2m4s
Run pre-commit on all files / pre-commit (pull_request) Successful in 46s
Build all the nodes / bridge01 (pull_request) Successful in 2m11s
Build all the nodes / hypervisor01 (pull_request) Successful in 2m11s
Build all the nodes / rescue01 (pull_request) Successful in 2m13s
Build all the nodes / web02 (pull_request) Successful in 2m7s
Build all the nodes / storage01 (pull_request) Successful in 2m32s
Build all the nodes / compute01 (pull_request) Successful in 2m35s
Build all the nodes / web03 (pull_request) Successful in 2m10s
Build all the nodes / vault01 (pull_request) Successful in 2m34s
Build all the nodes / web01 (pull_request) Successful in 3m0s
Build all the nodes / netcore02 (push) Successful in 21s
Build all the nodes / ap01 (push) Successful in 33s
Build the shell / build-shell (push) Successful in 23s
Run pre-commit on all files / pre-commit (push) Successful in 23s
Build all the nodes / geo01 (push) Successful in 1m44s
Build all the nodes / geo02 (push) Successful in 1m46s
Build all the nodes / vault01 (push) Successful in 2m0s
Build all the nodes / storage01 (push) Successful in 2m4s
Build all the nodes / hypervisor01 (push) Successful in 2m6s
Build all the nodes / tower01 (push) Successful in 2m6s
Build all the nodes / bridge01 (push) Successful in 2m10s
Build all the nodes / hypervisor03 (push) Successful in 2m11s
Build all the nodes / web02 (push) Successful in 2m19s
Build all the nodes / web03 (push) Successful in 2m18s
Build all the nodes / hypervisor02 (push) Successful in 2m21s
Build all the nodes / rescue01 (push) Successful in 2m30s
Build all the nodes / compute01 (push) Successful in 2m33s
Build all the nodes / web01 (push) Successful in 2m37s

This commit is contained in:
catvayor 2025-01-08 18:27:04 +01:00 committed by mdebray
parent 642a5effc2
commit 409a7877df

View file

@ -58,7 +58,10 @@ let
LinkLocalAddressing = "no";
DHCPServer = "yes";
};
linkConfig.Promiscuous = true;
linkConfig = {
Promiscuous = true;
MTUBytes = 1500;
};
addresses = [
{
Address = "${servIP}/27";
@ -134,7 +137,10 @@ let
Id = 2001;
address = [ "10.0.254.1/24" ];
extraNetwork.networkConfig.DHCPServer = "yes";
extraNetwork = {
networkConfig.DHCPServer = "yes";
linkConfig.MTUBytes = 1500;
};
};
} // builtins.listToAttrs (map mkUserVlan userVlans);
in
@ -176,6 +182,7 @@ in
IPv6AcceptRA = false;
IPv6SendRA = false;
};
linkConfig.MTUBytes = 1504;
};
"50-gretap1" = {
name = "gretap1";