Created
March 5, 2015 14:06
-
-
Save arielvalentin/5dcd45d166db6dfe862d to your computer and use it in GitHub Desktop.
Racoon VPN patch
This file contains 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
#!/bin/bash | |
sudo rm -f /etc/racoon/remote/* | |
sudo cp /var/run/racoon/*.conf /etc/racoon/remote | |
sudo sed -i.bak 's/lifetime time 3600 sec/lifetime time 168 hours/' /etc/racoon/remote/*.conf | |
sudo patch /etc/racoon/racoon.conf <<EOF | |
--- /etc/racoon.orig/racoon.conf 2009-06-23 09:09:08.000000000 +0200 | |
+++ /etc/racoon/racoon.conf 2009-12-11 13:52:11.000000000 +0100 | |
@@ -135,4 +135,5 @@ | |
# by including all files matching /var/run/racoon/*.conf | |
# This line should be added at the end of the racoon.conf file | |
# so that settings such as timer values will be appropriately applied. | |
+include "/etc/racoon/remote/*.conf" ; | |
include "/var/run/racoon/*.conf" ; | |
#EOF | |
sudo launchctl stop com.apple.racoon | |
sudo launchctl start com.apple.racoon |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment