Guest User

Untitled

a guest
May 26th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. port 1194
  2. proto tcp
  3.  
  4. dev tun
  5. ca ca.crt
  6. cert server.crt
  7. key server.key
  8. dh dh2048.pem
  9.  
  10. server 10.8.0.0 255.255.255.0
  11. server-ipv6 fe80::/64
  12.  
  13. ifconfig-pool-persist ipp.txt
  14.  
  15. push "route 192.168.0.0 255.255.255.0"
  16. push "route-ipv6 2000::/3"
  17.  
  18. push "redirect-gateway def1 bypass-dhcp"
  19. push "redirect-gateway ipv6"
  20.  
  21. push "dhcp-option DNS 208.67.222.222"
  22. push "dhcp-option DNS 208.67.220.220"
  23.  
  24. keepalive 10 120
  25.  
  26. tls-auth ta.key 0
  27. key-direction 0
  28.  
  29. cipher AES-128-CBC # AES
  30. auth SHA256
  31.  
  32. comp-lzo
  33.  
  34. user openvpn
  35. group openvpn
  36.  
  37. persist-key
  38. persist-tun
  39.  
  40. status openvpn-status.log
  41.  
  42. verb 3
  43.  
  44. iptables -t nat -A POSTROUTING -s 10.0.0.0/8 -o ens3 -j MASQUERADE
  45. ip6tables -t nat -A POSTROUTING -s fe80::/64 -o ens3 -j MASQUERADE
Add Comment
Please, Sign In to add comment