diff options
Diffstat (limited to 'testing/hosts/carol')
-rwxr-xr-x | testing/hosts/carol/etc/init.d/iptables | 4 | ||||
-rwxr-xr-x | testing/hosts/carol/etc/ipsec.conf | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/testing/hosts/carol/etc/init.d/iptables b/testing/hosts/carol/etc/init.d/iptables index cd7ba23ff..6ff11a424 100755 --- a/testing/hosts/carol/etc/init.d/iptables +++ b/testing/hosts/carol/etc/init.d/iptables @@ -25,6 +25,10 @@ start() { iptables -A INPUT -i eth0 -p udp --sport 500 --dport 500 -j ACCEPT iptables -A OUTPUT -o eth0 -p udp --dport 500 --sport 500 -j ACCEPT + # allow MobIKE + iptables -A INPUT -i eth0 -p udp --sport 4500 --dport 4500 -j ACCEPT + iptables -A OUTPUT -o eth0 -p udp --dport 4500 --sport 4500 -j ACCEPT + # allow crl fetch from winnetou iptables -A INPUT -i eth0 -p tcp --sport 80 -s PH_IP_WINNETOU -j ACCEPT iptables -A OUTPUT -o eth0 -p tcp --dport 80 -d PH_IP_WINNETOU -j ACCEPT diff --git a/testing/hosts/carol/etc/ipsec.conf b/testing/hosts/carol/etc/ipsec.conf index 6f1097e9e..af5c71b32 100755 --- a/testing/hosts/carol/etc/ipsec.conf +++ b/testing/hosts/carol/etc/ipsec.conf @@ -14,7 +14,6 @@ conn %default conn home left=PH_IP_CAROL - leftnexthop=%direct leftcert=carolCert.pem leftid=carol@strongswan.org leftfirewall=yes |