workmac: pin ssh fcio jump hosts to IPv4

This commit is contained in:
Trolli Schmittlauch 2025-08-18 15:12:39 +02:00
parent c1a24e386b
commit 9b534c1c3c

View file

@ -56,9 +56,20 @@ in
}; };
"fcio-whq-jump" = lib.hm.dag.entryAfter [ "*" ] { "fcio-whq-jump" = lib.hm.dag.entryAfter [ "*" ] {
hostname = "vpn-whq.services.fcio.net"; hostname = "vpn-whq.services.fcio.net";
extraOptions.LogLevel = "Verbose"; extraOptions = {
LogLevel = "Verbose";
AddressFamily = "inet";
};
};
"fcio-rzob-jump" = lib.hm.dag.entryAfter [ "*" ] {
hostname = "vpn-rzob.services.fcio.net";
extraOptions = {
LogLevel = "Verbose";
AddressFamily = "inet";
};
}; };
"fcio-rzob-jump" = lib.hm.dag.entryAfter [ "*" ] { hostname = "vpn-rzob.services.fcio.net"; };
}; };
}; };