2019-06-24 12:55:52 -04:00
|
|
|
# General sysctl parameters for PVC hypervisors
|
2019-06-09 00:11:06 -04:00
|
|
|
# {{ ansible_managed }}
|
|
|
|
|
|
|
|
# Reduce swappiness
|
|
|
|
vm.swappiness = 1
|
|
|
|
|
|
|
|
# enable Spoof protection (reverse-path filter)
|
|
|
|
# Turn on Source Address Verification in all interfaces to
|
|
|
|
# prevent some spoofing attacks
|
|
|
|
net.ipv4.conf.default.rp_filter = 1
|
|
|
|
net.ipv4.conf.all.rp_filter = 1
|
|
|
|
|
|
|
|
# Ignore ICMP broadcasts
|
|
|
|
net.ipv4.icmp_echo_ignore_broadcasts = 1
|
|
|
|
|
|
|
|
# Ignore bogus ICMP errors
|
|
|
|
net.ipv4.icmp_ignore_bogus_error_responses = 1
|
|
|
|
|
|
|
|
# Do not accept ICMP redirects (prevent MITM attacks)
|
|
|
|
net.ipv4.conf.all.accept_redirects = 0
|
|
|
|
{% if not 'rpi' in group_names %}
|
|
|
|
net.ipv6.conf.all.accept_redirects = 0
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
# Do not send ICMP redirects (we are not a router)
|
|
|
|
net.ipv4.conf.all.send_redirects = 0
|
|
|
|
|
|
|
|
# Do not accept IP source route packets (we are not a router)
|
|
|
|
net.ipv4.conf.all.accept_source_route = 0
|
|
|
|
{% if not 'rpi' in group_names %}
|
|
|
|
net.ipv6.conf.all.accept_source_route = 0
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
# Don't log Martian Packets
|
|
|
|
net.ipv4.conf.all.log_martians = 0
|
|
|
|
|
|
|
|
# Explicit Congestion Notification (ECN)
|
|
|
|
net.ipv4.tcp_ecn = 1
|
|
|
|
|
|
|
|
# number of seconds the kernel waits before rebooting on a panic
|
|
|
|
kernel.panic = 60
|
|
|
|
|
|
|
|
# Panic on an OOPS
|
|
|
|
kernel.panic_on_oops = 1
|
|
|
|
|
|
|
|
# Restrict dmesg
|
|
|
|
kernel.dmesg_restrict = 1
|
2019-07-09 14:13:44 -04:00
|
|
|
|
|
|
|
# Allow sysrq triggers
|
|
|
|
kernel.sysrq = 1
|