Advertisement
smhrambo

ipsec.conf

Jul 6th, 2015
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.56 KB | None | 0 0
  1. # ipsec.conf - strongSwan IPsec configuration file
  2.  
  3. # basic configuration
  4.  
  5. config setup
  6.         # strictcrlpolicy=yes
  7.         # uniqueids = no
  8.  
  9. # Add connections here.
  10.  
  11. conn %default
  12.     keyexchange=ikev2
  13.     ike=aes256-sha1-modp1024!
  14.     esp=aes256-sha1!
  15.     dpdaction=clear
  16.     dpddelay=300s
  17.     rekey=no
  18.  
  19. conn win7
  20.     left=%defaultroute
  21.     leftsubnet=0.0.0.0/0
  22.     leftauth=pubkey
  23.     leftcert=aCert.pem
  24.     leftid=@bla.blabla.bla
  25.     right=%any
  26.     rightsourceip=192.168.13.0/24
  27.     rightauth=eap-radius
  28.     eap_identity=%any
  29.     auto=add
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement