diff options
author | Apachez <apachez@gmail.com> | 2023-09-13 13:54:47 +0200 |
---|---|---|
committer | Apachez <apachez@gmail.com> | 2023-09-13 13:54:47 +0200 |
commit | 9391fc273ce95ff92a6b40b2dee4a688d3048f9f (patch) | |
tree | 007f00e1aae70cf24cf2baad05ef4807a7169e01 /src/etc | |
parent | 1bc808742f554531ba5ef22c1d42e4ced5ba4595 (diff) | |
download | vyos-1x-9391fc273ce95ff92a6b40b2dee4a688d3048f9f.tar.gz vyos-1x-9391fc273ce95ff92a6b40b2dee4a688d3048f9f.zip |
T5575: ARP/NDP table-size isnt set properly
Diffstat (limited to 'src/etc')
-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 + |