Advertisement
Guest User

OpenVPN Client Config

a guest
May 9th, 2021
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. client
  2. dev tun
  3. proto tcp
  4. setenv FRIENDLY_NAME "My VM"
  5. remote IP_ADDRESS 1194
  6. remote-cert-tls server
  7. connect-retry infinite
  8. resolv-retry infinite
  9. nobind
  10. persist-key
  11. persist-tun
  12. auth-user-pass
  13. auth-nocache
  14. redirect-gateway def1
  15. setenv CLIENT_CERT 0
  16. reneg-sec 0
  17. data-ciphers AES-256-CBC
  18. cipher AES-256-CBC
  19. verb 1
  20. http-proxy IP_ADDRESS 3128
  21. http-proxy-option VERSION 1.1
  22. http-proxy-option AGENT Chrome/80.0.3987.87
  23. http-proxy-option CUSTOM-HEADER Host www.speedtest.net
  24. #http-proxy-option CUSTOM-HEADER X-Forward-Host www.speedtest.net
  25. #http-proxy-option CUSTOM-HEADER X-Forwarded-For www.speedtest.net
  26. #http-proxy-option CUSTOM-HEADER Referrer www.speedtest.net
  27. dhcp-option DNS 1.1.1.1
  28. dhcp-option DNS 8.8.8.8
  29.  
  30. <ca>
  31. # PASTE YOUR CERTIFICATE HERE, found in the file you downloaded as I explained in the comment
  32. </ca>
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement