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

neigh: enable garbage collection #1068

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@
net.ipv4.ip_local_reserved_ports = 35357
# Increase system IP port range to allow for more concurrent connections
net.ipv4.ip_local_port_range = 27018 64999
# ensure STALE neighbor entries expire from the cache, otherwise
# VIPs of an OpenStack service or the floating IP of a VM
# might not become reachable
# gc_thresh1 is the lower threshold that needs to be reached before
# stale entries are getting garbage collected. The default of 128 means
# small clouds never get garbage collection and consequently suffer
# from reachability issues
net.ipv4.neigh.default.gc_thresh1 = 0

#- from https://fasterdata.es.net/host-tuning/linux/
# allow testing with buffers up to 128MB
Expand Down