Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sysctl.d/50-default.conf: allow everybody to create IPPROTO_ICMP sock… #77

Merged
merged 1 commit into from
Sep 9, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions files/usr/lib/sysctl.d/50-default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ net.ipv4.conf.all.promote_secondaries = 1
# (bsc#678066,bsc#752842,bsc#988023,bsc#990838)
net.ipv6.conf.default.use_tempaddr = 1

# allow all groups in the system to create IP sockets with
# protocol == IPPROTO_ICMP. This makes it possible to use programs like ping
# and fping to run without special permissions from capabilities or set*id
# bits (bsc#1174504).
# this only allows users to handle ICMP ECHO REQUESTs and REPLYs, nothing
# else.
net.ipv4.ping_group_range = "0 2147483647"

# increase the number of possible inotify(7) watches
fs.inotify.max_user_watches = 65536

Expand Down