Advertisement
Guest User

Untitled

a guest
Jun 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. local 192.168.1.18
  2. port 1194
  3.  
  4. # TCP or UDP server?
  5. proto tcp
  6. ;proto udp4
  7.  
  8. # TAP to bridge
  9. dev tap
  10. dev-node tap-bridge
  11. server-bridge 192.168.1.18 255.255.255.0 192.168.1.200 192.168.1.230
  12.  
  13. # location of keys
  14. ca "C:\\Program Files\\OpenVPN\\config\\ca.crt"
  15. cert "C:\\Program Files\\OpenVPN\\config\\server.crt"
  16. key "C:\\Program Files\\OpenVPN\\config\\server.key"
  17. dh "C:\\Program Files\\OpenVPN\\config\\dh2048.pem"
  18.  
  19. ;ping 5
  20. ifconfig-pool-persist ipp.txt
  21. keepalive 10 120
  22. cipher AES-256-CBC
  23. persist-key
  24. persist-tun
  25. status openvpn-status.log
  26. verb 3
  27. ;crl-verify "C:\\Program Files\\OpenVPN\\easy-rsa\\keys\\crl.pem"
  28. ;explicit-exit-notify 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement