2013-03-15 16:11:56 +01:00
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
2016-07-10 14:48:23 +02:00
# See sysctl.d(5) and core(5) for documentation.
2015-02-26 19:05:51 -05:00
# To override settings in this file, create a local file in /etc
# (e.g. /etc/sysctl.d/90-override.conf), and put any assignments
# there.
2013-03-15 16:11:56 +01:00
2013-03-15 19:30:53 +01:00
# System Request functionality of the kernel (SYNC)
2015-02-26 19:05:51 -05:00
#
# Use kernel.sysrq = 1 to allow all keys.
2017-02-08 19:42:43 +01:00
# See https://www.kernel.org/doc/html/latest/admin-guide/sysrq.html for a list
# of values and keys.
2013-03-15 19:30:53 +01:00
kernel.sysrq = 16
2013-03-15 16:11:56 +01:00
# Append the PID to the core filename
kernel.core_uses_pid = 1
# Source route verification
2018-11-28 11:44:20 +01:00
net.ipv4.conf.all.rp_filter = 2
2013-03-15 16:11:56 +01:00
# Do not accept source routing
2014-08-15 12:07:33 +02:00
net.ipv4.conf.all.accept_source_route = 0
2013-03-15 16:11:56 +01:00
2014-07-25 11:08:23 +02:00
# Promote secondary addresses when the primary address is removed
2014-08-15 12:07:33 +02:00
net.ipv4.conf.all.promote_secondaries = 1
2014-07-25 11:08:23 +02:00
2014-10-16 13:49:04 +02:00
# Fair Queue CoDel packet scheduler to fight bufferbloat
net.core.default_qdisc = fq_codel
2013-03-15 16:11:56 +01:00
# Enable hard and soft link protection
fs.protected_hardlinks = 1
fs.protected_symlinks = 1
2019-01-16 00:16:10 +01:00
# Enable regular file and FIFO protection
fs.protected_regular = 1
fs.protected_fifos = 1