Created
December 18, 2011 06:01
-
-
Save HungYuHei/1492518 to your computer and use it in GitHub Desktop.
openvpn server.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # place it in /etc/openvpn/server.conf | |
| port 53 | |
| proto udp | |
| dev tun | |
| ca /etc/openvpn/ca.crt | |
| cert /etc/openvpn/server.crt | |
| key /etc/openvpn/server.key | |
| dh /etc/openvpn/dh1024.pem | |
| server 10.8.0.0 255.255.255.0 | |
| ifconfig-pool-persist ipp.txt | |
| push "redirect-gateway def1 bypass-dhcp" | |
| keepalive 10 120 | |
| comp-lzo | |
| persist-key | |
| persist-tun | |
| status openvpn-status.log | |
| verb 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment