feat(vault01): higher MTU
Some checks failed
Check meta / check_dns (pull_request) Successful in 14s
Check meta / check_meta (pull_request) Successful in 15s
Check workflows / check_workflows (pull_request) Successful in 16s
Run pre-commit on all files / pre-commit (push) Successful in 24s
Build all the nodes / netcore02 (pull_request) Successful in 20s
Build all the nodes / compute01 (pull_request) Failing after 1m42s
Build all the nodes / bridge01 (pull_request) Successful in 2m3s
Build all the nodes / hypervisor03 (pull_request) Successful in 1m52s
Build all the nodes / geo01 (pull_request) Successful in 2m5s
Build the shell / build-shell (pull_request) Successful in 26s
Build all the nodes / tower01 (pull_request) Successful in 1m51s
Build all the nodes / web02 (pull_request) Failing after 1m45s
Build all the nodes / web03 (pull_request) Failing after 1m30s
Build all the nodes / rescue01 (pull_request) Successful in 2m8s
Build all the nodes / hypervisor01 (pull_request) Successful in 2m16s
Build all the nodes / geo02 (pull_request) Successful in 2m20s
Build all the nodes / hypervisor02 (pull_request) Successful in 2m20s
Run pre-commit on all files / pre-commit (pull_request) Successful in 35s
Build all the nodes / storage01 (pull_request) Successful in 2m19s
Build all the nodes / web01 (pull_request) Successful in 2m17s
Build all the nodes / vault01 (pull_request) Successful in 2m28s
Build all the nodes / ap01 (pull_request) Successful in 30m42s
Some checks failed
Check meta / check_dns (pull_request) Successful in 14s
Check meta / check_meta (pull_request) Successful in 15s
Check workflows / check_workflows (pull_request) Successful in 16s
Run pre-commit on all files / pre-commit (push) Successful in 24s
Build all the nodes / netcore02 (pull_request) Successful in 20s
Build all the nodes / compute01 (pull_request) Failing after 1m42s
Build all the nodes / bridge01 (pull_request) Successful in 2m3s
Build all the nodes / hypervisor03 (pull_request) Successful in 1m52s
Build all the nodes / geo01 (pull_request) Successful in 2m5s
Build the shell / build-shell (pull_request) Successful in 26s
Build all the nodes / tower01 (pull_request) Successful in 1m51s
Build all the nodes / web02 (pull_request) Failing after 1m45s
Build all the nodes / web03 (pull_request) Failing after 1m30s
Build all the nodes / rescue01 (pull_request) Successful in 2m8s
Build all the nodes / hypervisor01 (pull_request) Successful in 2m16s
Build all the nodes / geo02 (pull_request) Successful in 2m20s
Build all the nodes / hypervisor02 (pull_request) Successful in 2m20s
Run pre-commit on all files / pre-commit (pull_request) Successful in 35s
Build all the nodes / storage01 (pull_request) Successful in 2m19s
Build all the nodes / web01 (pull_request) Successful in 2m17s
Build all the nodes / vault01 (pull_request) Successful in 2m28s
Build all the nodes / ap01 (pull_request) Successful in 30m42s
This commit is contained in:
parent
3c9c38fb03
commit
cf62da1c7e
1 changed files with 9 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue