1234567891011121314151617181920212223242526272829 |
- # /etc/ipsec.conf - strongSwan IPsec configuration file
- config setup
- strictcrlpolicy=yes
- ca strongswan
- cacert=strongswanCert.pem
- crluri="ldap://ldap.strongswan.org/cn=strongSwan Root CA, o=strongSwan Project, c=CH?certificateRevocationList"
- auto=add
- conn %default
- ikelifetime=60m
- keylife=20m
- rekeymargin=3m
- keyingtries=1
- keyexchange=ikev2
- left=PH_IP_DAVE
- leftcert=daveCert.pem
- right=PH_IP_MOON
- rightid=@moon.strongswan.org
- rightca="C=CH, O=strongSwan Project, CN=strongSwan Root CA"
- conn alice
- rightsubnet=PH_IP_ALICE/32
- auto=add
- conn venus
- rightsubnet=PH_IP_VENUS/32
- auto=add
|