Last active
August 29, 2015 14:01
-
-
Save maraca/a624466f0a67d9b7f45a to your computer and use it in GitHub Desktop.
VPN w/ ubuntu & Meraki
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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