mediaserver: Disable IPv6 for now
This commit is contained in:
parent
e88f09b330
commit
bc097f461f
1 changed files with 3 additions and 1 deletions
|
@ -73,6 +73,8 @@ in
|
||||||
useNetworkd = true;
|
useNetworkd = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
kernel.sysctl."net.ipv6.conf.ens3.disable_ipv6" = 1;
|
||||||
|
|
||||||
systemd.network = {
|
systemd.network = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
@ -81,7 +83,7 @@ in
|
||||||
matchConfig.Name = "ens3";
|
matchConfig.Name = "ens3";
|
||||||
networkConfig = {
|
networkConfig = {
|
||||||
DHCP = "ipv4";
|
DHCP = "ipv4";
|
||||||
IPv6AcceptRA = true;
|
IPv6AcceptRA = false;
|
||||||
};
|
};
|
||||||
linkConfig.RequiredForOnline = "routable";
|
linkConfig.RequiredForOnline = "routable";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue