Changes

OpenVPN Server Setup
*My OpenVPN is running on an LXC Container hosted on a [https://www.proxmox.com/en/ Proxmox] server.
*I setup my OpenVPN server using a script from https://raw.githubusercontent.com/davejm/OpenVPN-install/tcp/openvpn-install.sh
*My server configuration file (''/etc/openvpn/server.conf'') looks like this <nowikipre>port 1194&#10;proto tcp&#10;dev tun&#10;ca ca.crt&#10;cert server.crt&#10;key server.key&#10;dh dh.pem&#10;user nobody&#10;group nogroup&#10;topology subnet&#10;server 192.168.2.0 255.255.255.0&#10;ifconfig-pool-persist ipp.txt&#10;cipher AES-256-CBC&#10;auth SHA512&#10;tls-version-min 1.2&#10;tls-cipher TLS-DHE-RSA-WITH-AES-256-GCM-SHA384&#10;push "dhcp-option DNS 192.168.1.1"&#10;push "dhcp-option DOMAIN mylocaldomain.lan"&#10;push "route 192.168.0.0 255.255.0.0"&#10;keepalive 10 120&#10;persist-key&#10;persist-tun&#10;crl-verify crl.pem&#10;tls-server&#10;tls-auth tls-auth.key 0&#10;log /var/log/openvpn/openvpn.log&#10;status /var/log/openvpn/status.log 20</nowikipre>
**Make sure that your OpenVPN IP pool (the ''server 192.168.2.0 255.255.255.0'' line does not conflict with the addresses assigned by your router / DHCP server. In this example all local resources are at 192.168.1.XXX and all OpenVPN clients are at 192.168.2.XXX.
**The line ''push dhcp-option DNS 192.168.1.1'' tells the server to send the address of the local networks DNS server (in this case your router) to the client