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-03 10:28:48 +02:00

13 lines
200 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;
}