diff options
-rwxr-xr-x | scripts/rl-system.init | 3 | ||||
-rw-r--r-- | sysconf/vyatta-sysctl.conf | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/rl-system.init b/scripts/rl-system.init index 3106d593..115bbc7d 100755 --- a/scripts/rl-system.init +++ b/scripts/rl-system.init @@ -140,6 +140,9 @@ set_ipv6_params () # Enable forwarding echo 1 >/proc/sys/net/ipv6/conf/all/forwarding + # Increase route table limit + echo 32768 >/proc/sys/net/ipv6/route/max_size + # These values all should be disabled for p in accept_source_route accept_redirects do diff --git a/sysconf/vyatta-sysctl.conf b/sysconf/vyatta-sysctl.conf index 9927e8f0..5121488d 100644 --- a/sysconf/vyatta-sysctl.conf +++ b/sysconf/vyatta-sysctl.conf @@ -62,6 +62,3 @@ net.ipv4.conf.default.accept_source_route=0 # Enable send_redirects by default net.ipv4.conf.all.send_redirects=1 - -# Increase upper limit of IPV6 route table -net.ipv6.route.max_size=32768 |