Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. port 1194
  2.  
  3. proto udp
  4.  
  5. dev tap0
  6.  
  7. ca ca.crt
  8. cert server.crt
  9. key server.key # This file should be kept secret
  10.  
  11. dh dh2048.pem
  12.  
  13. ifconfig-pool-persist ipp.txt
  14.  
  15. server-bridge 192.168.0.4 255.255.255.0 192.168.0.220 192.168.0.230
  16.  
  17. push "route 192.168.0.1 255.255.255.0"
  18. push "redirect-gateway def1 bypass-dhcp"
  19. push "dhcp-option DNS 8.8.8.8"
  20. push "dhcp-option DNS 8.8.4.4"
  21.  
  22. keepalive 10 120
  23.  
  24. tls-auth ta.key 0 # This file is secret
  25.  
  26. comp-lzo
  27.  
  28. user nobody
  29. group nogroup
  30.  
  31. persist-key
  32. persist-tun
  33.  
  34. status openvpn-status.log
  35. log openvpn.log
  36. verb 6
  37.  
  38. up "/etc/openvpn/up.sh br0"
  39. down "/etc/openvpn/down.sh br0"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement