diff options
author | Apachez <apachez@gmail.com> | 2023-09-13 13:54:47 +0200 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2023-09-14 17:05:33 +0000 |
commit | 8e16ce8de70d65f77a19932e35beb80b39c6eb24 (patch) | |
tree | c126665ded3a80764f81ae7afa6fc635871624f9 | |
parent | ed3c1137d65c30629263fa62e4cc9ea2817b9d0c (diff) | |
download | vyos-1x-8e16ce8de70d65f77a19932e35beb80b39c6eb24.tar.gz vyos-1x-8e16ce8de70d65f77a19932e35beb80b39c6eb24.zip |
T5575: ARP/NDP table-size isnt set properly
(cherry picked from commit 9391fc273ce95ff92a6b40b2dee4a688d3048f9f)
-rw-r--r-- | src/etc/sysctl.d/30-vyos-router.conf | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/etc/sysctl.d/30-vyos-router.conf b/src/etc/sysctl.d/30-vyos-router.conf index ad43390bb..fcdc1b21d 100644 --- a/src/etc/sysctl.d/30-vyos-router.conf +++ b/src/etc/sysctl.d/30-vyos-router.conf @@ -98,15 +98,6 @@ net.ipv6.route.skip_notify_on_dev_down=1 # Default value of 20 seems to interfere with larger OSPF and VRRP setups net.ipv4.igmp_max_memberships = 512 -# Increase default garbage collection thresholds -net.ipv4.neigh.default.gc_thresh1 = 1024 -net.ipv4.neigh.default.gc_thresh2 = 4096 -net.ipv4.neigh.default.gc_thresh3 = 8192 -# -net.ipv6.neigh.default.gc_thresh1 = 1024 -net.ipv6.neigh.default.gc_thresh2 = 4096 -net.ipv6.neigh.default.gc_thresh3 = 8192 - # Enable global RFS (Receive Flow Steering) configuration. RFS is inactive # until explicitly configured at the interface level net.core.rps_sock_flow_entries = 32768 @@ -114,3 +105,4 @@ net.core.rps_sock_flow_entries = 32768 # Congestion control net.core.default_qdisc=fq net.ipv4.tcp_congestion_control=bbr + |