Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.61 KB | None | 0 0
  1. port 1194
  2. proto udp
  3.  
  4. ;dev tap
  5. dev tun
  6.  
  7. ca /etc/openvpn/ca.crt
  8. cert /etc/openvpn/server.crt
  9. key /etc/openvpn/server.key  # This file should be kept secret
  10.  
  11. dh /etc/openvpn/dh1024.pem
  12.  
  13. server 10.8.1.0 255.255.255.0
  14.  
  15. ifconfig-pool-persist ipp.txt
  16.  
  17. push "route 192.168.20.0 255.255.255.0"
  18.  
  19. client-to-client
  20.  
  21. ;duplicate-cn
  22.  
  23. keepalive 10 120
  24.  
  25. # on the server and '1' on the clients.
  26. ;tls-auth ta.key 0 # This file is secret
  27.  
  28. comp-lzo
  29.  
  30. ;max-clients 100
  31.  
  32. user nobody
  33. group nobody
  34.  
  35. persist-key
  36. persist-tun
  37.  
  38. status openvpn-status.log
  39.  
  40. ;log         openvpn.log
  41. ;log-append  openvpn.log
  42.  
  43. verb 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement