blob: ce760a4739717535d030b5efb561d68579d78fa3 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# /etc/ipsec.conf - strongSwan IPsec configuration file
config setup
plutodebug=control
crlcheckinterval=180
strictcrlpolicy=no
charonstart=no
conn %default
ikelifetime=60m
keylife=20m
rekeymargin=3m
keyingtries=1
left=192.168.0.1
leftsourceip=10.1.0.1
leftcert=moonCert.pem
leftid=@moon.strongswan.org
leftfirewall=yes
conn carol-alice
also=carol
leftsubnet=10.1.0.10/32
rightsourceip=10.3.0.1
auto=add
conn carol-venus
also=carol
leftsubnet=10.1.0.20/32
rightsourceip=%carol-alice
auto=add
conn carol
right=%any
rightid=carol@strongswan.org
conn dave-alice
also=dave
leftsubnet=10.1.0.10/32
rightsourceip=10.3.0.2
auto=add
conn dave-venus
also=dave
leftsubnet=10.1.0.20/32
rightsourceip=%dave-alice
auto=add
conn dave
right=%any
rightid=dave@strongswan.org
|