This repository has been archived on 2024-08-18. You can view files and clone it, but cannot push or open issues or pull requests.
linux-hardened/router.nix
2024-08-12 21:12:18 +02:00

10 lines
199 B
Nix

{ lib, ... }: with lib.kernel; {
IP_ADVANCED_ROUTER = yes;
IP_MULTIPLE_TABLES = yes;
IP_ROUTE_MULTIPATH = yes;
IP_ROUTE_VERBOSE = yes;
IPV6_MULTIPLE_TABLES = yes;
IPV6_SUBTREES = yes;
}