Created
April 1, 2016 04:54
-
-
Save jonvargas/1302109ac73331b9fd30e8294e914e2c to your computer and use it in GitHub Desktop.
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
root@remote:~# cat /etc/openvpn/server.conf | grep -v "^#" | grep -v "^;" | uniq -u | |
port 1194 | |
proto udp | |
dev tap | |
up "/etc/openvpn/up.sh br0 eth1" | |
ca ca.crt | |
cert myservername.crt | |
key myservername.key # This file should be kept secret | |
dh dh2048.pem | |
ifconfig-pool-persist ipp.txt | |
server-bridge 192.168.1.111 255.255.255.0 192.168.1.240 192.168.1.254 | |
client-to-client | |
keepalive 10 120 | |
comp-lzo | |
persist-key | |
persist-tun | |
status openvpn-status.log | |
verb 3 | |
root@remote:~# |
Client's Network Manager configuration of the VPN Connection:
https://www.dropbox.com/s/srn2uzyhe80q910/Selection_207.png?dl=0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
And this is some further information about the server's network configuration: