Advertisement
ajhlinuxuser

OpenVPN server config - condemnedVPN

Oct 25th, 2018
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. # openvpn 2.4.0 on Debian Linux
  2.  
  3. port 2194
  4. proto udp
  5. dev tun
  6. ca ca-condemnedvpn.crt
  7. cert serv_condemned.crt
  8. ;key REMOVED
  9. dh dh2048-condemned.pem
  10. topology subnet
  11. mode server
  12. tls-server
  13. push "topology subnet"
  14. ifconfig 10.48.56.1 255.255.254.0
  15. ifconfig-pool 10.48.56.2 10.48.56.255 255.255.254.0
  16. route-gateway 10.48.56.1
  17. push "route-gateway 10.48.56.1"
  18.  
  19. # This was the line that I had to comment to remove the 2nd attempt
  20. # route assignment
  21. ;route 10.48.56.0 255.255.254.0
  22.  
  23. ifconfig-pool-persist ipp-condemned.txt
  24. client-config-dir ccd-condemned
  25. client-to-client
  26. keepalive 10 120
  27. cipher AES-256-CBC
  28. user nobody
  29. group nogroup
  30. persist-key
  31. persist-tun
  32. status condemnedvpn-status.log
  33. log openvpn-condemned.log
  34. verb 3
  35. explicit-exit-notify 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement