you probably don't need a vpn, but still
mkdir ~/vpnstuff && cd ~/vpnstuff
groupadd -r openvpn
iptables-legacy -F iptables-legacy -A OUTPUT -j ACCEPT -m owner --gid-owner openvpn iptables-legacy -A OUTPUT -j ACCEPT -o lo iptables-legacy -A OUTPUT -j ACCEPT -o tun+ iptables-legacy -A INPUT -j ACCEPT -m state --state ESTABLISHED,RELATED iptables-legacy -P OUTPUT DROP iptables-legacy -P INPUT DROP
sg openvpn -c 'openvpn --config /path/to/openvpn.conf --group openvpn'
vpn () { cd $HOME/vpnstuff sudo ./iptables-vpn.sh sudo ./start.sh }