Advertisement
pb2ac

Current Server Config

Jun 23rd, 2011
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. local 192.168.0.192
  2. port 443
  3. proto tcp
  4.  
  5. dev tap0
  6. up "/etc/openvpn/up.sh br0"
  7. down "/etc/openvpn/down.sh br0"
  8.  
  9. ca ca.crt
  10. cert server.crt
  11. key server.key # This file should be kept secret
  12. dh dh1024.pem
  13.  
  14. server-bridge 10.10.10.1 255.255.255.0 10.10.10.10 10.10.10.15
  15.  
  16. push "route-gateway 10.10.10.1"
  17. push "redirect-gateway def1"
  18. push "dhcp-option DNS 8.8.8.8"
  19. push "dhcp-option DNS 8.8.4.4"
  20.  
  21. client-to-client
  22. keepalive 10 120
  23.  
  24. tls-auth ta.key 0 # This file is secret
  25.  
  26. comp-lzo
  27.  
  28. max-clients 5
  29.  
  30. user nobody
  31. group nogroup
  32.  
  33. persist-key
  34. persist-tun
  35.  
  36. status status/server1.log
  37. log-append /var/log/openvpn/server1.log
  38.  
  39. verb 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement