VPNSecure.me via OpenVPN

Privacy using OpenVPN and service VPNSecure.me Let’s poke one’s prying eyes on your Internet traffic and setup VPN client to connect whole your home network (LAN) to Virtual Private Network using VPNSecure.me provider. Install OpenVPN on your favorite distribution: apt-get install openvpn Generate OpenVPN client configs and OpenVPN keys for your VPNsecure.me account: VPNSecure.me Profile … Read more

How to setup OpenVPN with bridging on Ubuntu 12.04

https://help.ubuntu.com/12.04/serverguide/openvpn.html http://ubuntuguide.org/wiki/OpenVPN_server # Setup your router to forward port 1194 to OpenVPN server or place server in DMZ (all incoming traffic is forwaded to OpenVPN server) # install OpenVPN and bridge utilities apt-get -y install openvpn bridge-utils # setup bridge br0 interface and modify primary interface eth0 (assign eth0 IP address to br0 interface) /etc/network/interfaces … Read more

How to setup OpenVPN with bridging on OpenWRT

http://wiki.openwrt.org/doc/howto/vpn.openvpn opkg update opkg install openvpn openvpn-easy-rsa Or if you prefer configure openvpn via GUI: opkg install luci-app-openvpn /etc/easy-rsa/vars export EASY_RSA="/etc/easy-rsa" export OPENSSL="openssl" export PKCS11TOOL="pkcs11-tool" export GREP="grep" export KEY_CONFIG=`/usr/sbin/whichopensslcnf $EASY_RSA` export KEY_DIR="$EASY_RSA/keys" echo NOTE: If you run ./clean-all, I will be doing a rm -rf on $KEY_DIR export PKCS11_MODULE_PATH="dummy" export PKCS11_PIN="dummy" export KEY_SIZE=1024 export CA_EXPIRE=3650 … Read more