Skip to content

Instantly share code, notes, and snippets.

@maraca
Last active August 29, 2015 14:01
Show Gist options
  • Save maraca/a624466f0a67d9b7f45a to your computer and use it in GitHub Desktop.
Save maraca/a624466f0a67d9b7f45a to your computer and use it in GitHub Desktop.
VPN w/ ubuntu & Meraki
sudo add-apt-repository ppa:openswan/ppa
sudo apt-get update
sudo apt-get dist-upgrade
========================================
net.ipv4.conf.all.accept_redirects = 1
net.ipv4.conf.all.secure_redirects = 1
net.ipv4.conf.all.send_redirects = 1
net.ipv4.conf.default.accept_redirects = 1
net.ipv4.conf.default.secure_redirects = 1
net.ipv4.conf.default.send_redirects = 1
net.ipv4.conf.docker0.accept_redirects = 1
net.ipv4.conf.docker0.secure_redirects = 1
net.ipv4.conf.docker0.send_redirects = 1
net.ipv4.conf.eth0.accept_redirects = 1
net.ipv4.conf.eth0.secure_redirects = 1
net.ipv4.conf.eth0.send_redirects = 1
net.ipv4.conf.lo.accept_redirects = 1
net.ipv4.conf.lo.secure_redirects = 1
net.ipv4.conf.lo.send_redirects = 1
net.ipv4.conf.ppp0.accept_redirects = 1
net.ipv4.conf.ppp0.secure_redirects = 1
net.ipv4.conf.ppp0.send_redirects = 1
sudo sysctl -p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment