blob: a658e4fe8a93d8256de29e1517e11d9fc48db9f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# /etc/ipsec.conf - strongSwan IPsec configuration file
version 2.0 # conforms to second version of ipsec.conf specification
config setup
plutodebug=control
crlcheckinterval=180
strictcrlpolicy=no
nat_traversal=no
conn %default
ikelifetime=60m
keylife=20m
rekeymargin=3m
keyingtries=1
conn system
left=PH_IP_ALICE
leftprotoport=tcp/ssh
leftnexthop=%direct
authby=never
type=passthrough
right=10.1.0.254
rightprotoport=tcp
auto=route
conn wlan
left=PH_IP_ALICE
leftnexthop=%direct
leftcert=aliceCert.pem
leftid=alice@strongswan.org
leftfirewall=yes
right=PH_IP1_MOON
rightid=@moon.strongswan.org
rightsubnet=0.0.0.0/0
auto=add
|