Advertisement
Guest User

openvpn.conf

a guest
May 21st, 2016
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. port 1194
  2. proto tcp
  3. dev tun
  4. ca ca.crt
  5. cert server.crt
  6. key server.key # This file should be kept secret
  7. dh dh2048.pem
  8. server 10.8.0.0 255.255.255.0
  9. ifconfig-pool-persist ipp.txt
  10. push "dhcp-option DNS 192.168.0.10"
  11. keepalive 10 120
  12. tls-auth ta.key 0 # This file is secret
  13. cipher AES-128-CBC # AES
  14. auth SHA1
  15. comp-lzo
  16. user nobody
  17. group nogroup
  18. persist-key
  19. persist-tun
  20. status openvpn-status.log
  21. log /var/log/openvpn.log
  22. verb 6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement