Advertisement
Guest User

Untitled

a guest
Dec 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.65 KB | None | 0 0
  1. # cat /usr/local/etc/openvpn/openvpn.conf
  2. client
  3. dev tun
  4. proto udp
  5. remote 96.9.246.179 1194
  6. resolv-retry infinite
  7. remote-random
  8. nobind
  9. tun-mtu 1500
  10. tun-mtu-extra 32
  11. mssfix 1450
  12. persist-key
  13. persist-tun
  14. ping 15
  15. ping-restart 0
  16. ping-timer-rem
  17. reneg-sec 0
  18. comp-lzo no
  19.  
  20. remote-cert-tls server
  21.  
  22. auth-user-pass /usr/local/etc/openvpn/up.txt
  23. verb 3
  24. pull
  25. fast-io
  26. cipher AES-256-CBC
  27. auth SHA512
  28.  
  29. <ca>
  30. -----BEGIN CERTIFICATE-----
  31. --redacted--
  32. -----END CERTIFICATE-----
  33. </ca>
  34. key-direction 1
  35. <tls-auth>
  36. #
  37. # 2048 bit OpenVPN static key
  38. #
  39. -----BEGIN OpenVPN Static key V1-----
  40. --redacted--
  41. -----END OpenVPN Static key V1-----
  42. </tls-auth>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement