From 4e741910289e610885cdf4d0c97d384b01b1c6bc Mon Sep 17 00:00:00 2001 From: Marek Isalski Date: Sun, 29 Sep 2019 21:48:16 +0100 Subject: 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. --- scripts/rl-system.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') 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 -- cgit v1.2.3 From 3a99ea6e9b8ef9ef417d38d1d0bab8d2d2401aa8 Mon Sep 17 00:00:00 2001 From: hagbard Date: Fri, 18 Oct 2019 10:54:33 -0700 Subject: [system-proxy]: T1741 - Add system wide proxy setting --- scripts/install/install-image | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scripts') diff --git a/scripts/install/install-image b/scripts/install/install-image index dbdd5901..658a8a39 100755 --- a/scripts/install/install-image +++ b/scripts/install/install-image @@ -3,6 +3,10 @@ # source in the functions source /opt/vyatta/sbin/install-functions +if [ -f /etc/profile.d/vyos-system-proxy.sh ] + then . /etc/profile.d/vyos-system-proxy.sh +fi + # export INSTALL_LOG for the scripts invoked export INSTALL_LOG=/tmp/install-$$.log # export PROGRESS_PID for the scripts invoked -- cgit v1.2.3