diff options
author | Marek Isalski <github.com@maz.nu> | 2019-09-29 21:48:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-29 21:48:16 +0100 |
commit | 4e741910289e610885cdf4d0c97d384b01b1c6bc (patch) | |
tree | 809598376949132860cf80ae2018231a3192ab84 /scripts | |
parent | 7667f3edb947eee84de7cd3641ac5bc9de0a549a (diff) | |
download | vyatta-cfg-system-4e741910289e610885cdf4d0c97d384b01b1c6bc.tar.gz vyatta-cfg-system-4e741910289e610885cdf4d0c97d384b01b1c6bc.zip |
net.ipv6.route.max_size = 262144
The IPv6 DFZ is now approaching 80k routes. Time to bump VyOS's default up, because otherwise it is a nasty surprise that's tricky to debug.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/rl-system.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rl-system.init b/scripts/rl-system.init index 62eac9e7..48f90833 100755 --- a/scripts/rl-system.init +++ b/scripts/rl-system.init @@ -136,7 +136,7 @@ set_ipv6_params () echo 1 >/proc/sys/net/ipv6/conf/all/forwarding # Increase route table limit - echo 32768 >/proc/sys/net/ipv6/route/max_size + echo 262144 >/proc/sys/net/ipv6/route/max_size # These values all should be disabled for p in accept_source_route accept_redirects |