Advertisement
Guest User

server.conf

a guest
Jan 2nd, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. # Serveur TCP/500
  2. mode server
  3. proto tcp
  4. port 500
  5. dev tun
  6. # Cles et certificats
  7. ca ca.crt
  8. cert server.crt
  9. key server.key
  10. dh dh2048.pem
  11. tls-auth ta.key 0
  12. key-direction 0
  13. cipher AES-256-CBC
  14. # Reseau
  15. server 10.8.0.0 255.255.255.0
  16. push "redirect-gateway def1 bypass-dhcp"
  17. push "dhcp-option DNS 208.67.222.222"
  18. push "dhcp-option DNS 208.67.220.220"
  19. keepalive 10 120
  20. # Securite
  21. user nobody
  22. group nogroup
  23. chroot /etc/openvpn/jail
  24. persist-key
  25. persist-tun
  26. comp-lzo
  27. # Log
  28. verb 3
  29. mute 20
  30. status openvpn-status.log
  31. log-append /var/log/openvpn.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement