nixos/estuary: Disable link-local addressing on WAN
This commit is contained in:
parent
414fa50b30
commit
f71ead2bde
@ -101,7 +101,12 @@
|
||||
ipv4.gateway
|
||||
ipv6.gateway
|
||||
];
|
||||
networkConfig.IPv6AcceptRA = false;
|
||||
networkConfig = {
|
||||
# We're using an explicit gateway and Linux uses link local address for neighbour discovery, so we
|
||||
# get lost to the router...
|
||||
LinkLocalAddressing = "no";
|
||||
IPv6AcceptRA = false;
|
||||
};
|
||||
};
|
||||
"80-base" = mkMerge [
|
||||
(networkdAssignment "base" assignments.base)
|
||||
|
Loading…
Reference in New Issue
Block a user