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
|
# /etc/ipsec.conf - Libreswan IPsec configuration file
config setup
ikev1-policy=accept
# put the logs in /tmp for the UMLs, so that we can operate
# without syslogd, which seems to break on UMLs
logfile=/tmp/pluto.log
logtime=no
logappend=no
dumpdir=/tmp
plutodebug=all
conn test1
left=172.29.1.1
right=172.29.1.2
authby=secret
auto=add
keyexchange=ikev1
conn test2
left=172.29.1.1
right=172.29.1.3
authby=secret
auto=add
keyexchange=ikev1
conn test3
left=172.29.1.3
right=172.29.1.2
authby=secret
auto=add
keyexchange=ikev1
|