Advertisement
Guest User

Untitled

a guest
Oct 5th, 2014
395
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. Server Conf:
  2. config openvpn 'myvpn'
  3. option enabled '1'
  4. option dev 'tap0'
  5. option dev-node 'tap-bridge'
  6. option proto 'udp'
  7. option log '/tmp/openvpn.log'
  8. option verb '3'
  9. option ca 'xxx'
  10. option cert 'xxx'
  11. option key 'xxx'
  12. server-bridge 192.168.1.1 255.255.255.0 192.168.1.291 192.168.1.299
  13. option tls_server '1'
  14. option port '1194'
  15. option keepalive '10 120'
  16. option dh '/etc/openvpn/dh1024.pem'
  17. option push 'redirect-gateway def1'
  18. option status '/tmp/openvpnstatus.log
  19.  
  20. client.conf
  21.  
  22. client
  23. dev tap0
  24. nobind
  25. proto udp
  26. remote xxx.xxx.xxx.xxx xxxx
  27. ca xxx
  28. cert xxx
  29. key xxx
  30. log /var/log/openvpn
  31. verb3
  32. script-security 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement