Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 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 peer-your_domain.net-tunnel-1
  12. left=%any
  13. right=<<DEDICATED_SERVER_IP>>
  14. leftsubnet=192.168.1.0/24
  15. rightsubnet=10.0.1.0/24
  16. ike=aes128-sha1-modp2048!
  17. keyexchange=ikev1
  18. ikelifetime=28800s
  19. esp=aes128-sha1-modp2048!
  20. keylife=3600s
  21. rekeymargin=540s
  22. type=tunnel
  23. compress=no
  24. authby=secret
  25. auto=route
  26. keyingtries=%forever
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement