Advertisement
Usagi-chan

ServerConfig

Apr 19th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #listten on? (optional)
  2. ;local a.b.c.d
  3. port 1194
  4. proto tcp
  5. dev tun
  6. #certs
  7. ca ca.crt
  8. cert cert.crt
  9. key key.key # This file should be kept secret
  10.  
  11. # Diffie hellman parameters.
  12. dh dh1024.pem
  13.  
  14. server 172.16.1.0 255.255.255.0
  15. ifconfig-pool-persist ipp.txt
  16.  
  17. push "route 10.1.1.0 255.255.255.0"
  18. keepalive 10 120
  19.  
  20. # Enable compression on the VPN link.
  21. comp-lzo
  22.  
  23. # The maximum number of concurrently connected
  24. max-clients 10
  25. user nobody
  26. group nogroup
  27. persist-key
  28. persist-tun
  29.  
  30.  
  31. status openvpn-status.log
  32. log-append /var/log/openvpn.log
  33. verb 3
  34. mute 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement