Remove the unnecessary network config options.
Turns out my router advertises enough to do the right thing without this.
This commit is contained in:
parent
67cee9d1f3
commit
5e9e93361a
|
@ -252,10 +252,6 @@
|
||||||
systemd.network.networks."10-wan" = {
|
systemd.network.networks."10-wan" = {
|
||||||
matchConfig.Name = "enp2s0";
|
matchConfig.Name = "enp2s0";
|
||||||
networkConfig = {
|
networkConfig = {
|
||||||
Address = [
|
|
||||||
"fc00::/64"
|
|
||||||
"2600:8800:2740:16::1/64"
|
|
||||||
];
|
|
||||||
# start a DHCP Client for IPv4 Addressing/Routing
|
# start a DHCP Client for IPv4 Addressing/Routing
|
||||||
DHCP = "ipv4";
|
DHCP = "ipv4";
|
||||||
# accept Router Advertisements for Stateless IPv6 Autoconfiguraton (SLAAC)
|
# accept Router Advertisements for Stateless IPv6 Autoconfiguraton (SLAAC)
|
||||||
|
@ -263,18 +259,6 @@
|
||||||
};
|
};
|
||||||
# make routing on this interface a dependency for network-online.target
|
# make routing on this interface a dependency for network-online.target
|
||||||
linkConfig.RequiredForOnline = "routable";
|
linkConfig.RequiredForOnline = "routable";
|
||||||
addresses = [{
|
|
||||||
addressConfig = {
|
|
||||||
Address = "::/0";
|
|
||||||
Scope = "global";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
addressConfig = {
|
|
||||||
Address = "fc00::/64";
|
|
||||||
Scope = "local";
|
|
||||||
};
|
|
||||||
}];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.services.scan-uploader = {
|
systemd.services.scan-uploader = {
|
||||||
|
|
Loading…
Reference in New Issue