Merge pull request #103966 from flokli/kernel-enable-ipv6

kernel config: explicitly enable CONFIG_IPV6
This commit is contained in:
Florian Klink 2020-11-16 16:32:50 +01:00 committed by GitHub
commit 462c5b26c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View file

@ -1062,7 +1062,6 @@ in
]; ];
boot.kernelModules = [ ] boot.kernelModules = [ ]
++ optional cfg.enableIPv6 "ipv6"
++ optional hasVirtuals "tun" ++ optional hasVirtuals "tun"
++ optional hasSits "sit" ++ optional hasSits "sit"
++ optional hasBonds "bonding"; ++ optional hasBonds "bonding";

View file

@ -132,6 +132,7 @@ let
IP_MROUTE_MULTIPLE_TABLES = yes; IP_MROUTE_MULTIPLE_TABLES = yes;
IP_MULTICAST = yes; IP_MULTICAST = yes;
IP_MULTIPLE_TABLES = yes; IP_MULTIPLE_TABLES = yes;
IPV6 = yes;
IPV6_ROUTER_PREF = yes; IPV6_ROUTER_PREF = yes;
IPV6_ROUTE_INFO = yes; IPV6_ROUTE_INFO = yes;
IPV6_OPTIMISTIC_DAD = yes; IPV6_OPTIMISTIC_DAD = yes;