Advertisement
alexs77

/etc/ipsec.conf

Sep 7th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. ## Do not edit, changes will be removed
  2.  
  3. # See ipsec.conf(5) for syntax and examples.
  4.  
  5. vpn_ext="redacted"
  6.  
  7. ike passive esp transport \
  8. proto udp from { $vpn_ext } to any port 1701 \
  9. main auth "hmac-sha" enc "aes" group modp1024 \
  10. quick auth "hmac-sha" enc "aes" \
  11. psk "redacted"
  12.  
  13. ike passive esp transport \
  14. proto udp from { $vpn_ext } to any port 1701 \
  15. main auth "hmac-sha" enc "3des" group modp1024 \
  16. quick auth "hmac-sha" enc "3des" \
  17. psk "redacted"
  18.  
  19. ike passive esp transport \
  20. proto udp from { $vpn_ext } to any port 1701 \
  21. main auth "hmac-sha" enc "3des" group modp1024 \
  22. quick auth "hmac-sha" enc "aes" \
  23. psk "redacted"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement