OpenVPN

From Blue-IT.org Wiki

Introduction

After successfully played around with an Cisco ASA 5505 Firewall we liked to expand our VPN experience. I personally was a little disappointed about the solutions, Cisco offered to us. First of all, I was very disappointed finding out, that - for IPSec VPN - there doesn't exist an native 64bit client for my linux machine. Second the license fees for SSL VPN are barely legal. Third the license and configuration djungle Cisco offers is not what I like.

To make a long story short: pFsense has everything we needed, was configured in a snap and in combination with a Soekris hardware ist a really robust, fast and easy to maintain appliance. ooking back spending hours and hours configuring the ASA, dangling around with license issues and limitationsone of the software this was one of the best decisions this year!

pFSense

There are a lot of HowTo's and Tutorials how to get OpenVPN running with pfSense in version 2.x. I don't like to add another 2 cents here.

OpenVPN auto reconnect script

Despite the very stable connection overall: if you are on the road and the Internet connection is lost, the network manager of Ubuntu does not reconnect when Internet is available again. There are some options in network manageer to achieve this ( Ask Ubuntu] ) but I came up this my own solution because I had some problems to solve:

  • I do not want to save the password in the password manager
  • I am using VirtualBox guest which loses VPN on network reconnect
  • Password dialogue opens multiple times on reconnect
  • I am using a backup VPN server (failover)
  • using a configuration file for my uuids (working on several machines)

Because I am NOT SAVING MY VPN PASSWORD in the keyring, the gui asks for the vpn passord. It does this every 30 seconds. The problem: if nobody enters the password, the gui popups a new password dialog. This results in a massive amount of dialogues open. During one night > 30-40 dialogues. This means, the dialogue is not reopend on every recall.

This does NOT work for me on Ubuntu 14.04:

Prerequisites

Mandatory:

  1. Install the helper script "killall_" in /home/${USER}/bin or find another solution to kill the password dialog
  2. A configuration file conf/vpn_reconnect.conf (/home/${USER}/bin/conf) with the following content:
cd /home/${USER}/bin/
mkdir conf
vim vpn_reconnect.conf
# The "pinghost" should be the host, 
# which name resolution should be working
# when the vpn is connected
# e.g. "my-firewall" should resolve the ip "10.10.1.1"
PING_HOST="hostname of vpn host"
DOMAIN="domainname.int"
myVPN="uuid from /etc/NetworkManager/system-connections"
# alternate vpn server / backup vpn
myVPN_EMERGENCY="uuid from /etc/NetworkManager/system-connections"


Optional:

  1. If you are using VirtualBox, you should read this article about reconnection the guest network, install the script and set useVboxReconnect="yes"
  2. If you have a second (failover) VPN server, you can use this one by setting useVPNEmergency="yes" and give $myVPN_EMERGENCY a value in the configuration file.

The vpn reconnect script

touch /home/${USER}/bin/vpn_reconnect
chmod 755 /home/${USER}/bin/vpn_reconnect
vim /home/${USER}/bin/vpn_reconnect
#!/bin/bash
# The "pinghost" should be the host, 
# which name resolution should be working
# when the vpn is connected
# e.g. "my-firewall" should resolve the ip "10.10.1.1"
 
# PRE: You should keep the openvpn-auth-dialog in foreground 
# - using e. g. CCSM
# - Window rules
# - Above:  | class=Nm-openvpn-auth-dialog
# - Sticky: | class=Nm-openvpn-auth-dialog

######################################################
## SET ACCORDING TO USAGE ############################

useVPNEmergency="no"
useVboxReconnect="no"
configuration ="/home/${USER}/bin/conf/vpn_reconnect.conf"
export PATH="${PATH}:/home/${USER}/bin"

######################################################
  
PING_HOST=""
DOMAIN=""
myVPN=""
myVPN_EMERGENCY=""
myGSM=""
cd /home/${USER}/bin
source "${configuration}" 

# Error messages in en_US
export LC_MESSAGES="en_US.UTF-8"
export LC_TYPE="en_US.UTF-8"
export LANGUAGE="en_US.UTF-8"
 
vpn_connect() {

   echo "Killing all opened openvpn auth dialog"
   if [ "$(ps x | grep openvpn-auth-dialog | grep -v grep | awk '{print $1}')" == "" ]
   then
       echo "No openvpn-auth-dialog open ... continuing"
   else
       killall_ openvpn-auth-dialog
       if [ "${useVboxReconnect}" == "yes" ]; then vbox_reconnect_network; fi
   fi

   echo "Discnnecting to vpn ..."    
   if nmcli con up uuid "${myVPN}"
   then
       if [ "${useVboxReconnect}" == "yes" ]; then vbox_reconnect_network; fi
       else
            if [ "${useVPNEmergency}" == "yes" ]
            then 
               if nmcli con up uuid "${myVPN_EMERGENCY}"
               then
                    if [ "${useVboxReconnect}" == "yes" ]; then vbox_reconnect_network; fi
            fi
       fi
 
       if [ "${useVboxReconnect}" == "yes" ]; then vbox_reconnect_network; fi
   fi
}
 
vpn_disconnect() {
        echo "Disconnecting from vpn..."
        nmcli con down uuid "${myVPN}" || \
        nmcli con down uuid "${myVPN_EMERGENCY}"
        if ["$useVPNEmergency" == "yes"]; then vbox_reconnect_network; fi
}

# Singleton ;-)
if ps x | grep -v grep | grep -v $$ | grep $0 | grep -v subl | grep -v vi
then
        echo "$0 already running. Exiting"
        exit 1
else
        while (true);
        do 
                if ping -c 5 ${PING_HOST} | grep ${DOMAIN}
                then
                        echo "Connection established (or local network)."
                else
                        echo " Recheck after 10 sec ..."
                        sleep 10

                        if ping -c 5 ${PING_HOST} | grep ${DOMAIN}
                        then
                                echo "Connection established (or local network)."
                        else
                                vpn_connect 
                        fi 
                fi

        # 90 seconds is the timeout for vpn-auth-gui if not successful
        sleep 100

        done 
fi

Troubleshooting

However there is sometimes a problem with nm-applet which effect me on openvpn as well

* https://bugs.launchpad.net/ubuntu/+source/network-manager-vpnc/+bug/1297849

So I have to restart network-manager and applet like this:

#!/bin/bash
export PATH="${PATH}:/home/${USER}/bin"

killall_ vpn_reconnect

sudo killall NetworkManager &

sleep 5
killall nm-applet
sleep 3

nm-applet &
sleep 2

vpn_reconnect &

VPN client on ubuntu server

Client mode

All you need is:

  • a ".ovpn" configuration file and rename it to ".conf"
    • each unique named ".conf" is a vpn client
    • chmod 600 (rw only for root)
  • all necessary credentials that refer to ".p12", ".crt", ".key" -files within the ".ovpn"-file
    • have to be in the /etc/openvpn directory and
    • chmod 400 (read only for root!)
  • place everything in the /etc/openvpn directory
  • edit the /etc/default/openvpn configuration file.
    • Put the name of the ".conf"-file without the ".conf" in the AUTOSTART variable.
    • OR simply make AUTOSTART="all" which will start all vpn clients