Guest User

Untitled

a guest
Aug 10th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. ## This first bit is for OpenWrt
  2. ##
  3. log-append /var/log/openvpn.log
  4. status /var/log/openvpn-status.log
  5. script-security 2
  6. #pull-filter ignore "redirect-gateway"
  7. up "/etc/openvpn/tun-up"
  8. down "/etc/openvpn/tun-down"
  9. ##
  10. ## The rest is the Streisand .ovpn config for OpenVPN.
  11. ## Just comment out the 'route' line just before the certificates.
  12.  
  13. client
  14. remote xxx.xxx.xxx.xxx 636
  15. proto tcp
  16. dev tun
  17. cipher AES-256-CBC
  18. auth SHA256
  19. resolv-retry infinite
  20. nobind
  21. persist-key
  22. persist-tun
  23. remote-cert-tls server
  24. verify-x509-name office-lunch-erupt name
  25. tls-version-min 1.2
  26. comp-lzo
  27. key-direction 1
  28. verb 3
  29. #route xxx.xxx.xxx.xxx 255.255.255.255 net_gateway
  30.  
  31. ...
Add Comment
Please, Sign In to add comment