Advertisement
smithy1208

template.ovpn

Apr 10th, 2021
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. client
  2. dev tun
  3. proto tcp
  4. remote {{ host }} 1194
  5. resolv-retry infinite
  6. keepalive 5 20
  7. nobind
  8. ;user nobody
  9. ;group nobody
  10. persist-key
  11. persist-tun
  12. auth SHA1
  13. cipher AES-128-CBC
  14. verb 3
  15. {% for route in routes %}
  16. route {{ route }}
  17. {% endfor %}
  18. dhcp-option DNS 77.88.8.1
  19. dhcp-option DNS 8.8.4.4
  20.  
  21. auth-user-pass {{ user }}@{{ prefix }}.auth
  22.  
  23. ;mute 20
  24. <ca>
  25. {{ CA }}
  26. </ca>
  27. <cert>
  28. {{ CERTIFICATE }}
  29. </cert>
  30. <key>
  31. {{ KEY }}
  32. </key>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement