Show pagesourceOld revisionsBacklinksBack to top × Table of Contents OpenVPN client Introduction Goals Instructions 1. Preparation 2. Firewall 3. VPN service Testing Troubleshooting OpenVPN client This article relies on the following: Accessing OpenWrt CLI Managing configurations Managing packages Managing services Introduction This how-to describes the method for setting up OpenVPN client on OpenWrt. Follow OpenVPN server for server setup and OpenVPN extras for additional tuning. Goals Encrypt your internet connection to enforce security and privacy. Prevent data leak and traffic spoofing on the client side. Bypass regional restrictions using commercial providers. Escape client side content filters and internet censorship. Access your LAN services remotely without port forwarding. Instructions 1. Preparation Install the packages and specify the VPN client configuration parameters. # Install packages opkg update opkg install openvpn-openssl # Configuration parameters OVPN_DIR="/etc/openvpn" OVPN_ID="client" 2. Firewall Consider VPN network as public and assign VPN interface to WAN zone to minimize firewall setup. # Configure firewall uci rename firewall.@zone[0]="lan" uci rename firewall.@zone[1]="wan" uci del_list firewall.wan.device="tun+" uci add_list firewall.wan.device="tun+" uci commit firewall /etc/init.d/firewall restart 3. VPN service Save your client profile and configure VPN service. Drop VPN service privileges and ensure VPN interface name matches firewall configuration. # Save VPN client profile umask go= cat << "EOF" > ${OVPN_DIR}/${OVPN_ID}.conf COPY_PASTE_CLIENT_PROFILE_HERE EOF # Configure VPN service sed -i -e " /^user/s/^/#/ \$a user nobody /^group/s/^/#/ \$a group nogroup " ${OVPN_DIR}/${OVPN_ID}.conf /etc/init.d/openvpn restart Configure credentials for commercial provider if required. Testing Establish the VPN connection. Verify your client traffic is routed via VPN gateway. traceroute openwrt.org traceroute6 openwrt.org Check your client public IP addresses. https://ipleak.net/ Make sure there is no DNS leak on the client side. https://dnsleaktest.com/ Delegate a public IPv6 prefix to VPN6 network to use IPv6 by default. https://ipv6-test.com/ Troubleshooting Collect and analyze the following information. # Restart services /etc/init.d/log restart; /etc/init.d/openvpn restart; sleep 10 # Log and status logread -e openvpn; netstat -l -n -p | grep -e openvpn # Runtime configuration pgrep -f -a openvpn ip address show; ip route show table all ip rule show; ip -6 rule show; iptables-save; ip6tables-save # Persistent configuration uci show network; uci show firewall; uci show openvpn head -n -0 /etc/openvpn/*.conf This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.OKMore information about cookies Last modified: 2020/10/18 05:24by vgaetera