mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
linux: add policy routing config flag for aarch64
CONFIG_IP_MULTIPLE_TABLES is part of the default x86 kernel config but absent from the Aarch64 one. Adding explicitely this flag together with its dependency IP_ADVANCED_ROUTER. Both of these config flags are needed to use the routing policy facilities.
This commit is contained in:
parent
f727955f3b
commit
6896b1cb1d
1 changed files with 2 additions and 0 deletions
|
@ -104,6 +104,7 @@ let
|
|||
|
||||
networking = {
|
||||
NET = yes;
|
||||
IP_ADVANCED_ROUTER = yes;
|
||||
IP_PNP = no;
|
||||
IP_VS_PROTO_TCP = yes;
|
||||
IP_VS_PROTO_UDP = yes;
|
||||
|
@ -126,6 +127,7 @@ let
|
|||
IP_ROUTE_VERBOSE = yes;
|
||||
IP_MROUTE_MULTIPLE_TABLES = yes;
|
||||
IP_MULTICAST = yes;
|
||||
IP_MULTIPLE_TABLES = yes;
|
||||
IPV6_ROUTER_PREF = yes;
|
||||
IPV6_ROUTE_INFO = yes;
|
||||
IPV6_OPTIMISTIC_DAD = yes;
|
||||
|
|
Loading…
Reference in a new issue