Skip to content

Instantly share code, notes, and snippets.

@jonvargas
Created April 1, 2016 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonvargas/1302109ac73331b9fd30e8294e914e2c to your computer and use it in GitHub Desktop.
Save jonvargas/1302109ac73331b9fd30e8294e914e2c to your computer and use it in GitHub Desktop.
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:~#
@jonvargas
Copy link
Author

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