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

10 lines
199 B
Nix
Raw Normal View History

2024-08-12 21:12:18 +02:00
{ lib, ... }: with lib.kernel; {
2024-08-02 22:14:55 +02:00
IP_ADVANCED_ROUTER = yes;
IP_MULTIPLE_TABLES = yes;
IP_ROUTE_MULTIPATH = yes;
IP_ROUTE_VERBOSE = yes;
IPV6_MULTIPLE_TABLES = yes;
IPV6_SUBTREES = yes;
}