diff options
Diffstat (limited to 'testing/hosts/moon/etc')
-rwxr-xr-x | testing/hosts/moon/etc/init.d/iptables | 4 | ||||
-rwxr-xr-x | testing/hosts/moon/etc/ipsec.conf | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/testing/hosts/moon/etc/init.d/iptables b/testing/hosts/moon/etc/init.d/iptables index 7f46267c2..f5fa80b26 100755 --- a/testing/hosts/moon/etc/init.d/iptables +++ b/testing/hosts/moon/etc/init.d/iptables @@ -28,6 +28,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/moon/etc/ipsec.conf b/testing/hosts/moon/etc/ipsec.conf index b26f81911..9512fb7e5 100755 --- a/testing/hosts/moon/etc/ipsec.conf +++ b/testing/hosts/moon/etc/ipsec.conf @@ -12,7 +12,6 @@ conn %default rekeymargin=3m keyingtries=1 left=PH_IP_MOON - leftnexthop=%direct leftcert=moonCert.pem leftid=@moon.strongswan.org leftfirewall=yes |