2023-12-02 10:42:59 +00:00
|
|
|
_: {
|
2023-11-18 04:39:42 +00:00
|
|
|
boot.kernelModules = ["tcp_bbr"];
|
2023-09-19 00:17:43 +00:00
|
|
|
boot.kernel.sysctl = {
|
2023-11-18 04:39:42 +00:00
|
|
|
### https://madaidans-insecurities.github.io/guides/linux-hardening.html#sysctl
|
2023-09-19 00:17:43 +00:00
|
|
|
# Kernel self-protection
|
2023-11-18 04:39:42 +00:00
|
|
|
"kernel.kptr_restrict" = "2";
|
|
|
|
"kernel.dmesg_restrict" = "1";
|
|
|
|
"kernel.printk" = "3 3 3 3"; #
|
|
|
|
"kernel.unprivileged_bpf_disabled" = "1";
|
|
|
|
"net.core.bpf_jit_harden" = "2";
|
|
|
|
"dev.tty.ldisc_autoload" = "0";
|
2023-09-19 00:17:43 +00:00
|
|
|
"vm.unprivileged_userfaultfd" = "0";
|
|
|
|
"kernel.kexec_load_disabled" = "1";
|
2023-11-18 04:39:42 +00:00
|
|
|
"kernel.sysrq" = "4"; #
|
2023-09-19 00:17:43 +00:00
|
|
|
#"kernel.unprivileged_userns_clone" = "0"; # does not exist on nixos
|
|
|
|
"kernel.perf_event_paranoid" = "3";
|
|
|
|
|
|
|
|
# Network
|
2023-11-18 04:39:42 +00:00
|
|
|
"net.ipv4.tcp_syncookies" = "1";
|
|
|
|
"net.ipv4.tcp_rfc1337" = "1";
|
|
|
|
"net.ipv4.conf.all.rp_filter" = "1";
|
2023-09-19 00:17:43 +00:00
|
|
|
"net.ipv4.conf.default.rp_filter" = "1";
|
|
|
|
"net.ipv4.conf.all.accept_redirects" = "0";
|
2023-11-18 04:39:42 +00:00
|
|
|
"net.ipv4.conf.default.accept_redirects" = "0";
|
2023-09-19 00:17:43 +00:00
|
|
|
"net.ipv4.conf.all.secure_redirects" = "0";
|
|
|
|
"net.ipv4.conf.default.secure_redirects" = "0";
|
|
|
|
"net.ipv6.conf.all.accept_redirects" = "0";
|
|
|
|
"net.ipv6.conf.default.accept_redirects" = "0";
|
|
|
|
"net.ipv4.conf.all.send_redirects" = "0";
|
|
|
|
"net.ipv4.conf.default.send_redirects" = "0";
|
2023-11-18 04:39:42 +00:00
|
|
|
"net.ipv4.icmp_echo_ignore_all" = "1";
|
2023-09-19 00:17:43 +00:00
|
|
|
"net.ipv4.conf.all.accept_source_route" = "0";
|
|
|
|
"net.ipv4.conf.default.accept_source_route" = "0";
|
|
|
|
"net.ipv6.conf.all.accept_source_route" = "0";
|
|
|
|
"net.ipv6.conf.default.accept_source_route" = "0";
|
2023-11-18 04:39:42 +00:00
|
|
|
"net.ipv6.conf.all.accept_ra" = "0";
|
2023-09-19 00:17:43 +00:00
|
|
|
"net.ipv6.conf.default.accept_ra" = "0";
|
2023-11-18 04:39:42 +00:00
|
|
|
"net.ipv4.tcp_sack" = "0";
|
2023-09-19 00:17:43 +00:00
|
|
|
"net.ipv4.tcp_dsack" = "0";
|
|
|
|
"net.ipv4.tcp_fack" = "0";
|
|
|
|
|
|
|
|
# User Space
|
2023-11-18 04:39:42 +00:00
|
|
|
"kernel.yama.ptrace_scope" = "2";
|
|
|
|
"vm.mmap_rnd_bits" = "32";
|
2023-09-19 00:17:43 +00:00
|
|
|
"vm.mmap_rnd_compat_bits" = "16";
|
|
|
|
"fs.protected_symlinks" = "1";
|
|
|
|
"fs.protected_hardlinks" = "1";
|
|
|
|
"fs.protected_fifos" = "2";
|
|
|
|
"fs.protected_regular" = "2";
|
2023-11-18 04:39:42 +00:00
|
|
|
|
|
|
|
### https://wiki.archlinux.org/title/Sysctl#Improving_performance
|
|
|
|
"net.ipv4.tcp_fastopen" = "3";
|
|
|
|
|
|
|
|
"net.ipv4.tcp_keepalive_time" = "80";
|
|
|
|
"net.ipv4.tcp_keepalive_intvl" = "10";
|
|
|
|
"net.ipv4.tcp_keepalive_probes" = "6";
|
|
|
|
"net.ipv4.tcp_mtu_probing" = "1";
|
|
|
|
|
|
|
|
"net.core.default_qdisc" = "cake";
|
|
|
|
"net.ipv4.tcp_congestion_control" = "bbr";
|
2023-09-19 00:17:43 +00:00
|
|
|
};
|
2023-11-04 10:14:42 +00:00
|
|
|
}
|