Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. port 1234
  2. proto udp
  3. dev tun
  4.  
  5. ifconfig-pool-persist msm-server/ipp.txt
  6. status msm-server/openvpn-status.log
  7. client-config-dir msm-server/ccd
  8.  
  9. # Revovation list
  10. #crl-verify crl.pem
  11.  
  12. ca msm-server/ca.crt
  13. cert msm-server/server.crt
  14. key msm-server/server.key # This file should be kept secret
  15. dh dh1024.pem
  16.  
  17. server 10.9.8.0 255.255.255.0
  18. route 10.9.8.0 255.255.255.252
  19.  
  20. # Allow clients to reach home lan
  21. push "route 192.168.5.0 255.255.255.0"
  22.  
  23. ;push "dhcp-option DNS 10.8.0.1"
  24. ;push "dhcp-option WINS 10.8.0.1"
  25.  
  26. ;push "redirect-gateway"
  27. client-to-client
  28. keepalive 10 120
  29.  
  30. cipher BF-CBC # Blowfish (default)
  31. comp-lzo
  32. max-clients 20
  33.  
  34. user nobody
  35. group nogroup
  36.  
  37. persist-key
  38. persist-tun
  39.  
  40. verb 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement