Advertisement
Guest User

Untitled

a guest
Mar 5th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. [root@openvpn openvpn]# cat server.conf
  2. port 1194
  3. proto udp
  4. dev tun
  5. ca /etc/openvpn/easy-rsa/keys/ca.crt
  6. cert /etc/openvpn/easy-rsa/keys/server.crt
  7. key /etc/openvpn/easy-rsa/keys/server.key # This file should be kept secret
  8. dh /etc/openvpn/easy-rsa/keys/dh2048.pem
  9. server 10.8.0.0 255.255.255.0
  10. ifconfig-pool-persist ipp.txt
  11. client-to-client
  12. keepalive 10 120
  13. comp-lzo
  14. user nobody
  15. group nobody
  16. persist-key
  17. persist-tun
  18. status openvpn-status.log
  19. ;log openvpn.log
  20. ;log-append openvpn.log
  21. verb 3
  22. ;mute 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement