LDP/LDP/howto/linuxdoc/VPN-HOWTO.sgml

1291 lines
54 KiB
Plaintext

<!doctype linuxdoc system>
<article>
<title>VPN HOWTO</title>
<author>Matthew D. Wilson, <url url="mailto:matthew@shinythings.com" name="matthew@shinythings.com"></author>
<date>v 1.0, Dec 1999</date>
<abstract>
This HOWTO describes how to set up a Virtual Private Network with Linux.
</abstract>
<toc>
<sect>Introduction<label id="Introduction">
<sect1>Why I wrote this HOWTO
<p>
I work Real Networks, and we needed VPN service. This was my first real
project, and I truly learned more about Linux with this than with any
other task. I ended up using my experience with that project to write
this document, to share with others what I learned, so that they can do
ultra-nifty things with Linux too!
</p>
<sect1>Acknowledgements and Thanks
<p>
I want to first and foremost thank my wife Julie, without her, I
wouldn't be where I am today. I also want to thank Arpad Magosanyi, the
author of the first VPN mini-howto and pty-redir, the utility that makes
all of this possible. Jerry, Rod, Glen, Mark V., Mark W., and David, You
guys rock! Thanks for all your help.
</p>
<sect1>Format of this document
<p>
This document is broken down into 5 sections.
</p><p>
<descrip>
<p><tag>Section 1: Introduction</tag>This section</p>
<p><tag>Section 2: Theory</tag>Basic VPN theory. What is a VPN, and how does it work. Read this if you are entirely new to VPN.</p>
<p><tag>Section 3: Server</tag>This section describes how a VPN server is set up.</p>
<p><tag>Section 4: Client</tag>This section describes how a VPN client is set up.</p>
<p><tag>Section 5: Implementation</tag>A step by step implementation of a sample VPN setup.</p>
<p><tag>Section 6: Addenda</tag>Other bits and pieces of info that you might find helpful.</p>
</descrip>
</p>
<sect1>Copyright and Disclaimer
<p>
Copyright (c) by Matthew Wilson. This document may be distributed only
subject to the terms and conditions set forth in the LDP License at <url
url="http://www.linuxdoc.org/COPYRIGHT.html"
name="http://www.linuxdoc.org/COPYRIGHT.html">, except that this document
must not be distributed in modified form without the author's consent.
</p>
<p>
The author assumes no responsibility for anything done with this document,
nor does he make any warranty, implied or explicit. If you break it, it's
not my fault. Remember, what you do here could make very large holes in
the security model of your network. You've been warned.
</p>
<sect1>Document History
<p>
The original VPN mini-HOWTO was written by <url
url="mag@bunuel.tii.matav.hu" name="Arpad Magosanyi"> in 1997. He has
since allowed me to take up the document and extend it into a full
HOWTO. All of this would not be possible without his original document.
Thanks again Arpad. :)
</p><p>
Version 1.0 of this HOWTO was completed on December 10, 1999.
</p>
<sect1>Related Documents
<p>
<itemize>
<item><url url="/HOWTO/Networking-Overview-HOWTO.html" name="Networking Overview HOWTO">
<item><url url="/HOWTO/NET3-4-HOWTO.html" name="Networking HOWTO">
<item><url url="/HOWTO/VPN-Masquerade-HOWTO.html" name="VPN-Masquerade HOWTO">
</itemize>
</p>
<sect>Theory
<sect1>What is a VPN?
<p>
VPN stands for Virtual Private Network. A VPN uses the Internet as it's
transport mechanism, while maintaining the security of the data on the VPN.
</p>
<sect2>But really, what IS a VPN?
<p>
Well, there are several answers to that question. It really depends on
your network layout. The most common configuration is to have a single
main internal network, with remote nodes using VPN to gain full access
to the central net. The remote nodes are commonly remote offices or
employees working from home. You can also link two smaller (or even
larger!) networks to form an even larger single network.
</p>
<sect2>So how does it work?
<p>
Put simply, to make a VPN, you create a secure tunnel between the two
networks and route IP through it. If I've lost you already, you should
read <url
url="http://www.linuxdoc.org/HOWTO/Networking-Overview-HOWTO.html"
name="The Linux Networking Overview HOWTO"> to learn about networking
with Linux.
</p>
<p>
Please bear with me, my ASCII art could use some work.
</p>
<p>
<verb>
\ \
-------- / / --------
Remote ______| Client |______\ Internet \_____| Server |______ Private
Network | Router | / / | Router | Network
-------- \ \ --------
/ /
Client Router
----------------------------------------------------
| /-> 10.0.0.0/255.0.0.0 \ |
Remote | |--> 172.16.0.0/255.240.0.0 |--> Tunnel >---\ |
Network >---|--|--> 192.168.0.0/255.255.0.0 / |--|----> Internet
192.168.12.0 | | | |
| \-----> 0.0.0.0/0.0.0.0 --> IP Masquerade >--/ |
----------------------------------------------------
Server Router
----------------------------------------------------
| /-> 10.0.0.0/255.0.0.0 \ |
| /--> Tunnel >--|--> 172.16.0.0/255.240.0.0 |--|----> Private
Internet >--|--| \--> 192.168.0.0/255.255.0.0 / | Network
| | | 172.16.0.0/12
| \-----> 0.0.0.0/0.0.0.0 -----> /dev/null | 192.168.0.0/16
----------------------------------------------------
</verb>
</p>
<p>
The above diagram shows how the network might be set up. If you don't
know what IP Masquerade is, you probably shouldn't be here. Go read the
<url url="/HOWTO/Networking-Overview-HOWTO.html"
name="The Linux Networking Overview HOWTO"> and come back once you've
figured it out.
</p>
<p>
The Client Router is a Linux box acting as the gateway/firewall for the
remote network. As you can see, the remote network uses the local net
192.168.12.0. For the sake of a simple diagram, I let out the local
routing information in the routers. The basic idea is to route traffic
for all of the private networks (10.0.0.0, 172.16.0.0, and 192.168.0.0)
through the tunnel. The setup shown here is one way. That is, while
the remote network can see the private network, the private network
cannot necessarily see the remote network. In order for that to happen,
you must specify that the routes are bidirectional.
</p>
<p>
From the diagram you should also note that all of the traffic coming out
of the client router appears to be from the client router, that is, it's
all from one IP address. You could route real numbers from inside your
network but that brings all sorts of security problems with it.
</p>
<sect1>SSH and PPP
<p>
The system that I describe to implement VPN uses SSH and PPP. Basically
I use ssh to create a tunnel connection, and then use pppd to run TCP/IP
traffic though it. That's what makes up the tunnel.
</p>
<p>
The real trick to getting ssh and pppd to play well together is the
utility written by Arpad Magosanyi that allows the redirection of
standard in and standard out to a pseudo tty. This allows pppd to talk
through ssh as if it were a serial line. On the server side, pppd is
run as the users shell in the ssh session, completing the link. After
that, all you need to do is the routing.
</p>
<sect1>Alternative VPN Systems
<p>
There are of course other ways of setting up a VPN, here are a couple of
other systems.
<sect2>PPTP
<p>
PPTP is a Microsoft protocol for VPN. It is supported under Linux, but
is known to have serious security issues. I do not describe how to use
it here since it is covered by the <url
url="http://www.linuxdoc.org/HOWTO/VPN-Masquerade-HOWTO.html"
name="Linux VPN Masquerade HOWTO">.
</p>
<sect2>IP Sec
<p>
IP Sec is a different set of protocols from SSH. I don't actually know
all that much about it, so if someone wants to help me out with a
description, I'd be most appreciative. Again, I do not describe how to
use it here since it is covered by the <url
url="http://www.linuxdoc.org/HOWTO/VPN-Masquerade-HOWTO.html"
name="Linux VPN Masquerade HOWTO">.
</p>
<sect2>CIPE
<p>
CIPE is a kernel level network encryption system that may be better
suited to enterprise setups. You can find out more about it at <url
url="http://sites.inka.de/sites/bigred/devel/cipe.html" name="the CIPE
homepage">. I plan on looking into it more, so maybe I'll have info
about it here someday.
</p>
<sect>Server
<p>
This section tells you how to set up the server side of things, I
figured that this should go first since without a server, your client is
kind of useless.
</p>
<sect1>Security - keeping people out
<p>
Security is very important for a VPN. That's why you're building one in
the first place, isn't it? You need to keep a few things in mind while
setting up your server.
</p>
<sect2>Trim your daemons
<p>
Since this server is going to be on both sides of your firewall, and set
up to forward traffic into your network, it's a good idea to secure the
box as well as you possibly can. You can read up more on Linux security
in the <url url="/HOWTO/Security-HOWTO.html" name="Linux Security
HOWTO"> For my purposes, I've killed everything but sshd and a Roxen Web
server. I use the web server to download a couple of files (my scripts,
etc) for setting up new machines to access the VPN. I don't use an FTP
server since it's harder to configure one to be secure than it is to
just make a few files available with a web server. Plus, I only need to
be able to download files. If you really want to run different servers
on your gateway, you might want to think about restricting access to them
to only those machines on your private network.
</p>
<sect2>Don't allow passwords
<p>
Yes, it sounds kind of silly, but it got your attention, didn't it? No,
you don't use passwords, you disable them completely. All
authentication on this machine should be done via ssh's public key
authentication system. This way, only those with keys can get in, and
it's pretty much impossible to remember a binary key that's 530
characters long.
</p><p>
So how do you do that? It requires editing the /etc/passwd file. The
second field contains either the password hash, or alternatively 'x'
telling the authentication system to look in the /etc/shadow file. What
you do is change that field to read '*' instead. This tells the
authentication system that there is no password, and that none should be
allowed.
</p>
<p><label id="passwd">
Here's how a typical /etc/passwd file looks:
<verb>
...
nobody:x:65534:100:nobody:/dev/null:
mwilson:x:1000:100:Matthew Wilson,,,:/home/mwilson:/bin/bash
joe:*:504:101:Joe Mode (home),,,:/home/vpn-users:/usr/sbin/pppd
bill:*:504:101:Bill Smith (home),,,:/home/vpn-users:/usr/sbin/pppd
frank:*:504:101:Frank Jones (home),,,:/home/vpn-users:/usr/sbin/pppd
...
</verb>
Note that I've done more than just editing the second field. I'll say
more about the other fields later on.
</p>
<sect1>User Access - letting people in
<p>
User access is done via ssh's authentication scheme. As I've stated
above, this is how users get access to the system, while maintaining a
high level of security. If you're not familiar with ssh, check out <url
url="http://www.ssh.org/" name="http://www.ssh.org/"> Note that I am
using ssh version 1, not version 2. There is a big difference, notably
that version 1 is free, and 2 isn't.
</p>
<sect2>Configuring <tt>sshd</tt>
<p>
You'll need to configure sshd. The following options should be present.
The idea is to disable password authentication and rhosts
authentication. The following options should be present in your
<tt>/etc/sshd_config</tt> file.
</p><p>
<verb>
PermitRootLogin yes
IgnoreRhosts yes
StrictModes yes
QuietMode no
CheckMail no
IdleTimeout 3d
X11Forwarding no
PrintMotd no
KeepAlive yes
RhostsAuthentication no
RhostsRSAAuthentication no
RSAAuthentication yes
PasswordAuthentication no
PermitEmptyPasswords no
UseLogin no
</verb>
</p>
<sect1>Restricting Users
<p>
Now that you're keeping the bad people out, and only letting the good people
in, you may need to make sure that the good people behave themselves. This is
most easily done by not letting them do anything except run pppd. This may
or may not be necessary. I restrict users because the system that I maintain
is dedicated to VPN, users have no business doing anything else on it.
</p>
<sect2>sudo or not sudo
<p>
There is this neat little program called sudo that allows the admin on a
Unix system to grant certain users the ability to run certain programs
as root. This is necessary in this case since pppd must be run as root.
You'll need to use this method if you want to allow users shell access.
Read up on how to setup and use sudo in the sudo man page. Using sudo
is best on multi-use systems that typically host a small number of
trusted users.
</p><p>
If you decide to not allow users to have shell access, then the best way
to keep them from gaining it is to make their shell be pppd. This is
done in the /etc/passwd file. You can see <ref id="passwd" name="above">
that that is what I did for the last three users. The last field of the
/etc/passwd file is the user's shell. You needn't do anything special
to pppd in order to make it work. It gets executed as root when the
user connects. This is certainly the simplest setup to be had, as well
as the most secure. It's the ideal for large scale and corporate
systems. I describe exactly what all needs to be done later in this
document. You can <ref id="user-accounts" name="jump ahead"> if you
like.
</p>
<sect1>Networking
<p>
Now that your users have access to the system, we need to make sure that
they have access to the network. We do that by using the Linux kernel's
firewalling rules and routing tables. Using the <tt>route</tt> and
<tt>ipfwadm</tt> commands, we can set up the kernel to handle network
traffic in the appropriate ways. For more info on <tt>ipfwadm</tt>,
<tt>ipchains</tt> and <tt>route</tt> see the <url
url="http://www.linuxdoc.org/HOWTO/Linux-Networking-HOWTO.html"
name="Linux Networking HOWTO">.
</p>
<sect2>The Kernel
<p>
In order for any of this to work, you must have your kernel configured
correctly. If you don't know how to build your own kernel, then you
should read the <url
url="http://www.linuxdoc.org/HOWTO/Kernel-HOWTO.html" name="Kernel
HOWTO">. You'll need to make sure that the following kernel options
are turned on in addition to basic networking. I use a 2.0.38 kernel
in my system.
</p><p>
For 2.0 kernels:
<itemize>
<item>CONFIG_FIREWALL
<item>CONFIG_IP_FORWARD
<item>CONFIG_IP_FIREWALL
<item>CONFIG_IP_ROUTER
<item>CONFIG_IP_MASQUERADE (optional)
<item>CONFIG_IP_MASQUERADE_ICMP (optional)
<item>CONFIG_PPP
</itemize>
</p><p>
For 2.2 kernels:
<itemize>
<item>CONFIG_FIREWALL
<item>CONFIG_IP_ADVANCED_ROUTER
<item>CONFIG_IP_FIREWALL
<item>CONFIG_IP_ROUTER
<item>CONFIG_IP_MASQUERADE (optional)
<item>CONFIG_IP_MASQUERADE_ICMP (optional)
<item>CONFIG_PPP
</itemize>
</p>
<sect2>Filter Rules
<p>
First, we write firewall filter rules that allow our users to access our
internal nets, while restricting them from accessing the outside
internet. If this sounds wierd, but think about it this way: they
already have access to the internet, so why let them use the tunnel to
access the net? It wastes both our bandwidth and processor.
</p><p>
The filter rules that we use depend upon which internal nets we use.
But basically they say: "Allow traffic coming from our VPNs that is
destined for our internal nets to go there." So how do we do that?
As always, it depends. If you are running a 2.0 kernel, you use the
tool called <tt>ipfwadm</tt>, if on the other hand you are using a
2.2 kernel, you use the utility called <tt>ipchains</tt>.
</p><p>
To set the rules with <tt>ipfwadm</tt>, run it with options similar to
the following:
</p><p>
<verb>
&num; /sbin/ipfwadm -F -f
&num; /sbin/ipfwadm -F -p deny
&num; /sbin/ipfwadm -F -a accept -S 192.168.13.0/24 -D 172.16.0.0/12
</verb>
</p><p>
To set the rules with <tt>ipchains</tt>, run it with options similar to
the following:
</p><p>
<verb>
&num; /sbin/ipchains -F forward
&num; /sbin/ipchains -P forward DENY
&num; /sbin/ipchains -A forward -j ACCEPT -s 192.168.13.0/24 -d 172.16.0.0/12
</verb>
</p><p>
For those using 2.2 kernels, please read <ref id="ipv4forwarding" name="this">.
</p>
<sect2>Routing
<p>
So, now our users are allowed to access our nets, now we need to tell
the kernel where to send the packets. On my system, I have two ethernet
cards, one is on the external network, while the other is on the
internal network. This helps keep things secure, as outbound traffic is
masqueraded by our gateway, and any incoming traffic is filtered and
routed by our Cisco. For most setups, the routing should be simple.
</p><p>
What we do is route all traffic destined for the private networks out the
internal interface, and all other traffic out the external interface. The
specific routing commands depend on which internal nets you are using.
Below is an example of what they might look like. These lines are of course
in addition to your basic routes for your local nets. I also doubt that you
are using all 3 groups of internal numbers.
</p><p>
<verb>
Assuming that 172.16.254.254 is our internal gateway:
&num; /sbin/route add -net 10.0.0.0 netmask 255.0.0.0 gw 172.16.254.254 dev eth1
&num; /sbin/route add -net 172.16.0.0 netmask 255.240.0.0 gw 172.16.254.254 dev eth1
&num; /sbin/route add -net 192.168.0.0 netmask 255.255.0.0 gw 172.16.254.254 dev eth1
</verb>
</p><p>
One additional note on routing. If you are using two way routing for
say, a remote office, then you will need to do one more thing. You'll
need to set up routes on the server that point back to the client. The
easiest way to accomplish this is to run a cron job every minute that
quietly sets back routes. It's not a big deal if the client isn't
connected, <tt>route</tt> will just spit out an error (that you've
conveniently sent to <tt>/dev/null</tt>.)
</p>
<sect>Client
<p>
Now we examine the client end. In practice, when used to allow access
to a remote network, this box can easily serve as a Samba (Windows
Networking) server, DHCP server, and even an internal web server. The
important thing to remember is that this box should be as secure as
possible, as it runs your whole remote network.
</p>
<sect1>The Kernel
<p>
First things first, you must have ppp available in your kernel. If you are
going to allow multiple machines to use the tunnel, then you need to have
firewalling and forwarding available too. If the client is going to be a single
machine, ppp is enough.
</p>
<sect1>Bring up the link
<p>
The link is created by running <tt>pppd</tt> through a pseudo terminal that is
created by <tt>pty-redir</tt> and connected to <tt>ssh</tt>. This is done with
something similar to the following sequence of commands:
</p><p>
<verb>
&num; /usr/sbin/pty-redir /usr/bin/ssh -t -e none -o 'Batchmode yes' -c blowfish -i /root/.ssh/identity.vpn -l joe > /tmp/vpn-device
&num; sleep 10
&num; /usr/sbin/pppd `cat /tmp/vpn-device`
&num; sleep 15
&num; /sbin/route add -net 172.16.0.0 gw vpn-internal.mycompany.com netmask 255.240.0.0
&num; /sbin/route add -net 192.168.0.0 gw vpn-internal.mycompany.com netmask 255.255.0.0
</verb>
</p><p>
Simply, what this does is run ssh, redirecting it's input and output to
pppd. The options passed to ssh configure it to run without escape
characters (-e), using the blowfish crypto algorithm (-c), using the
identity file specified (-i), in terminal mode (-t), with the options
'Batchmode yes' (-o). The sleep commands are used to space out the
executions of the commands so that each can complete their
startup before the next is run.
</p>
<sect1>scripting
<p>
Of course you don't want to have to type those commands in every time
that you want to get the tunnel running. I've written a set of bash
scripts that keep the tunnel up and running. You can download the
package from <url url="http://www.shinythings.com/vpnd/vpnd.tar.gz"
name="here">. Just download that an uncompress it into /usr/local/vpn.
Inside you'll find three files:
</p><p>
<itemize>
<item>vpnd: The script that controls the tunnel connection.
<item>check-vpnd: a script to be run by cron to check that vpnd is still up.
<item>pty-redir: a small executable needed to initialize the tunnel.
</itemize>
</p><p>
You'll need to edit the <tt>vpnd</tt> script to set things like the client's
username and the server's names. You may also need to modify the starttunnel
section of the script to specify which networks you are using. Below is a copy of the script
for your reading enjoyment. You'll note that you could put the script in a
different directory, you just need to change the VPN_DIR variable.
</p><p>
<label id="vpnd-script"><verb>
#! /bin/bash
#
# vpnd: Monitor the tunnel, bring it up and down as necessary
#
USERNAME=vpn-username
IDENTITY=/root/.ssh/identity.vpn
VPN_DIR=/usr/local/vpn
LOCK_DIR=/var/run
VPN_EXTERNAL=vpn.mycompany.com
VPN_INTERNAL=vpn-internal.mycompany.com
PTY_REDIR=${VPN_DIR}/pty-redir
SSH=${VPN_DIR}/${VPN_EXTERNAL}
PPPD=/usr/sbin/pppd
ROUTE=/sbin/route
CRYPTO=blowfish
PPP_OPTIONS="noipdefault ipcp-accept-local ipcp-accept-remote local noauth nocrtscts lock nodefaultroute"
ORIG_SSH=/usr/bin/ssh
starttunnel () {
$PTY_REDIR $SSH -t -e none -o 'Batchmode yes' -c $CRYPTO -i $IDENTITY -l $USERNAME > /tmp/vpn-device
sleep 15
$PPPD `cat /tmp/vpn-device` $PPP_OPTIONS
sleep 15
# Add routes (modify these lines as necessary)
/sbin/route add -net 10.0.0.0 gw $VPN_INTERNAL netmask 255.0.0.0
/sbin/route add -net 172.16.0.0 gw $VPN_INTERNAL netmask 255.240.0.0
/sbin/route add -net 192.168.0.0 gw $VPN_INTERNAL netmask 255.255.0.0
}
stoptunnel () {
kill `ps ax | grep $SSH | grep -v grep | awk '{print $1}'`
}
resettunnel () {
echo "reseting tunnel."
date >> ${VPN_DIR}/restart.log
eval stoptunnel
sleep 5
eval starttunnel
}
checktunnel () {
ping -c 4 $VPN_EXTERNAL 2>/dev/null 1>/dev/null
if [ $? -eq 0 ]; then
ping -c 4 $VPN_INTERNAL 2>/dev/null 1>/dev/null
if [ $? -ne 0 ]; then
eval resettunnel
fi
fi
}
settraps () {
trap "eval stoptunnel; exit 0" INT TERM
trap "eval resettunnel" HUP
trap "eval checktunnel" USR1
}
runchecks () {
if [ -f ${LOCK_DIR}/tunnel.pid ]; then
OLD_PID=`cat ${LOCK_DIR}/vpnd.pid`
if [ -d /proc/${OLD_PID} ]; then
echo "vpnd is already running on process ${OLD_PID}."
exit 1
else
echo "removing stale pid file."
rm -rf ${LOCK_DIR}/vpnd.pid
echo $$ > ${LOCK_DIR}/vpnd.pid
echo "checking tunnel state."
eval checktunnel
fi
else
echo $$ > ${LOCK_DIR}/vpnd.pid
eval starttunnel
fi
}
case $1 in
check) if [ -d /proc/`cat ${LOCK_DIR}/vpnd.pid` ]; then
kill -USR1 `cat ${LOCK_DIR}/vpnd.pid`
exit 0
else
echo "vpnd is not running."
exit 1
fi ;;
reset) if [ -d /proc/`cat ${LOCK_DIR}/vpnd.pid` ]; then
kill -HUP `cat ${LOCK_DIR}/vpnd.pid`
exit 0
else
echo "vpnd is not running."
exit 1
fi ;;
--help | -h)
echo "Usage: vpnd [ check | reset ]"
echo "Options:"
echo " check Sends running vpnd a USR1 signal, telling it to check"
echo " the tunnel state, and restart if neccesary."
echo " reset Sends running vpnd a HUP signal, telling it to reset"
echo " it's tunnel connection." ;;
esac
ln -sf $ORIG_SSH $SSH
settraps
runchecks
while true; do
i=0
while [ $i -lt 600 ]; do
i=((i+1))
sleep 1
done
eval checktunnel
done
</verb>
</p>
<sect1>LRP - Linux Router Project
<p>
I actually run this setup on pentium 90's running the LRP distribution
of Linux. LRP is a distribution of Linux that fits in, and boots off of
a single floppy disk. You can learn more about it at <url
url="http://www.linuxrouter.org/" name="http://www.linuxrouter.org/">
You can download my LRP package for the VPN client from <url
url="http://www.shinythings.com/vpnd/vpnd.lrp" name="here">. You will
also need both the ppp and ssh packages from the LRP site.
</p>
<sect>Implementation
<p>
In this section, I explain step by step how to set up your VPN system. I'll start
with the server, and then move on to the client. For the purposes of an example, I
will invent a situation that would require a couple of different kinds of VPN set up.
</p>
<sect1>Planning
<p>
Let's imagine that we have a company, called mycompany.com. At our head
office, we are using the 192.168.0.0 reserved network, breaking the
class B into 256 class C networks to allow routing. We have just set up
two small remote offices, and want to add them to our network. We also
want to allow employees who work from home to be able to use their DSL
and cable modem connections instead of making them use dialup. To
start, we need to plan things out a little.
</p><p>
I decide that I want to give each remote office a class C network range
to allow them to expand as necessary. So, I reserve the 192.168.10.0
and 192.168.11.0 nets. I also decide that for home users, I've got
enough numbers that I don't need to masquerade them on the VPN server
side. Each client gets it's own internal IP. So, I need to reserve
another class C for that, say 192.168.40.0. The only thing that I must
now do is to add these ranges to my router. Let's imagine that our
company owns a small Cisco (192.168.254.254) that handles all of the
traffic through our OC1. Just set routes on the Cisco such that traffic
headed to these reserved nets goes to our VPN server (192.168.40.254).
I put the VPN server into the home user's net for reasons that should
become clear later. We'll name the external interface of the server
vpn.mycompany.com, and the internal vpn-internal.mycompany.com.
</p><p>
As for external numbers, we don't need to know them explicitly. You
should have your own numbers, supplied by your ISP.
</p>
<sect1>Gather the tools
<p>
we're going to need a few pieces of software. Get the following
packages, and install them where specified.
</p>
<sect2>For the Server:
<p>
<itemize>
<item>pppd (version 2.3 or greater)
<item>ssh (version 1.2.26 or better)
</itemize>
</p>
<sect2>For the Client:
<p>
<itemize>
<item>pppd (same version as server)
<item>ssh
<item><url url="ftp://ftp.vein.hu/ssa/contrib/mag/pty-redir-0.1.tar.gz" name="pty-redir">
</itemize>
</p>
<sect1>Server: Build the kernel
<p>
To start, you'll probably need to rebuild your kernel for the server.
You need to make sure that the following kernel options are turned on in
addition to basic networking and everything else that you might need. If
you've never built your own kernel before, read the <url
url="/HOWTO/Kernel-HOWTO.html" name="Kernel HOWTO">.
</p><p>
For 2.0 kernels:
<itemize>
<item>CONFIG_FIREWALL
<item>CONFIG_IP_FORWARD
<item>CONFIG_IP_FIREWALL
<item>CONFIG_IP_ROUTER
<item>CONFIG_PPP
</itemize>
</p><p>
For 2.2 kernels:
<itemize>
<item>CONFIG_FIREWALL
<item>CONFIG_IP_ADVANCED_ROUTER
<item>CONFIG_IP_FIREWALL
<item>CONFIG_IP_ROUTER
<item>CONFIG_PPP
</itemize>
</p>
<sect1>Server: Configure Networking
<p>
If you are building a server that has only one network card, I suggest
that you think about buying another, and rewiring your network. The
best way to keep your network private is to keep it on it's own wires.
So if you do have two network cards, you'll need to know how to
configure both of them. We'll use eth0 for the external interface, and eth1 for
the internal interface.
</p>
<sect2>Configuring the interfaces
<p>
We first should configure the external interface of the server. You
should already know how to do this, and probably already have it done.
If you don't, then do so now. If you don't know how, go back and read
the <url url="/HOWTO/NET3-4-HOWTO.html" name="Networking HOWTO">
</p><p>
Now we bring up the internal interface. According to the numbers that
we've chosen, the internal interface of the server is 192.168.40.254.
so we have to configure that interface.
</p><p>
For 2.0 kernels, use the following:
</p><p>
<verb>
&num; /sbin/ifconfig eth1 192.168.40.254 netmask 255.255.255.0 broadcast 192.168.40.255
&num; /sbin/route add -net 192.168.40.0 netmask 255.255.255.0 dev eth1
</verb>
</p><p>
For 2.2 kernels, use the following:
</p><p>
<verb>
&num; /sbin/ifconfig eth1 192.168.40.254 netmask 255.255.255.0 broadcast 192.168.40.255
</verb>
</p><p>
That get's our basic interfaces up. You can now talk to machines on
both local networks that are attached to the server.
</p>
<sect2>Setting routes
<p>
We can now talk to machines on our local nets, but we can't get to the rest
of our internal network. That requires a few more lines of code. In order
to reach the other machines on other subnets, we need have a route that tells
traffic to go to the Cisco router. Here's that line:
<verb>
&num; /sbin/route add -net 192.168.0.0 gw 192.168.254.254 netmask 255.255.0.0 dev eth1
</verb>
</p><p>
That line tells the kernel that any traffic destined for the 192.168.0.0 network
should go out eth1, and that it should be handed off to the Cisco. Traffic for
our local net still gets where it is supposed to because the routing tables
are ordered by the size of the netmask. If we were to have other internal nets
in our network, we would have a line like the above for each net.
<sect2>Making filter rules
<p>
Ok, so we can reach every machine that we could need to. Now we need to write
the firewall filtering rules that allow or deny access through the VPN server.
</p><p>
To set the rules with <tt>ipfwadm</tt>, run it like so:
</p><p>
<verb>
&num; /sbin/ipfwadm -F -f
&num; /sbin/ipfwadm -F -p deny
&num; /sbin/ipfwadm -F -a accept -S 192.168.40.0/24 -D 192.168.0.0/16
&num; /sbin/ipfwadm -F -a accept -b -S 192.168.10.0/24 -D 192.168.0.0/16
&num; /sbin/ipfwadm -F -a accept -b -S 192.168.11.0/24 -D 192.168.0.0/16
</verb>
</p><p>
To set the rules with <tt>ipchains</tt>, run it like so:
</p><p>
<verb>
&num; /sbin/ipchains -F forward
&num; /sbin/ipchains -P forward DENY
&num; /sbin/ipchains -A forward -j ACCEPT -s 192.168.40.0/24 -d 192.168.0.0/16
&num; /sbin/ipchains -A forward -j ACCEPT -b -s 192.168.10.0/24 -d 192.168.0.0/16
&num; /sbin/ipchains -A forward -j ACCEPT -b -s 192.168.11.0/24 -d 192.168.0.0/16
</verb>
</p><p>
This tells the kernel to deny all traffic except for the traffic that is coming
from the 192.168.40.0/24 network and destined for the 192.168.0.0/16 network. It
also tells the kernel that traffic going between the 192.168.10.0/24 and
192.168.0.0/16 nets is allowed, and the same for the 192.168.11.0 net. These
last two are bidirectional rules, this is important for getting the routing
to work going both ways.
</p>
<sect2>Routing
<p>
For the home users, everything will work just fine to here. However,
for the remote offices, we need to do some routing. First of all, we
need to tell the main router, or Cisco, that the remote offices are
behind the VPN server. So specify routes on the Cisco that tell
it to send traffic destined for the remote offices to the VPN server.
Now that that is taken care of, we must tell the VPN server what to do
with the traffic destined for the remote offices. To do this, we run the
<tt>route</tt> command on the server. The only problem is that in order
for the <tt>route</tt> command to work, the link must be up, and if
it goes down, the route will be lost. The solution is to add the routes
when the clients connects, or more simply, to run the route command frequently
as it's not a problem to run it more than is necessary. So, create a script
and add it to your crontab to be run every few minutes, in it, put the
following:
</p><p>
<verb>
/sbin/route add -net 192.168.11.0 gw 192.168.10.253 netmask 255.255.255.0
/sbin/route add -net 192.168.10.0 gw 192.168.11.253 netmask 255.255.255.0
</verb>
</p>
<sect1>Server: Configure <tt>pppd</tt>
<p>
Now we will configure pppd on the server to handle VPN connections. If
you are already using this server to handle dialup users or even dialing
out yourself, then you should note that these changes may affect those
services. I go over how to avoid conflicts at the end of this section.
</p>
<sect2><tt>/etc/ppp/</tt>
<p>
This directory may contain a number of files. You probably already
have a file called <tt>options</tt>. This file holds all of the global
options for <tt>pppd</tt>. These options cannot be overridden by <tt>pppd</tt> on the
command line.
</p>
<sect2><tt>/etc/ppp/options</tt>
<p>
Your <tt>options</tt> file should contain at least the following:
</p><p>
<verb>
ipcp-accept-local
ipcp-accept-remote
proxyarp
noauth
</verb>
</p><p>
The first two lines tell <tt>pppd</tt> to accept what the other end specifies
for IP addresses. This is necessary when hooking up remote offices, but can
be disabled if you are only connecting home users. It's ok to leave it on, as
it does not prevent the server from assigning addresses, it only tells it that
it's ok to accept what the client asks for.
</p><p>
The third line is very important. From the <tt>pppd</tt> man page:
</p><p>
<verb>
proxyarp
Add an entry to this system's ARP [Address Resolu-
tion Protocol] table with the IP address of the
peer and the Ethernet address of this system. This
will have the effect of making the peer appear to
other systems to be on the local ethernet.
</verb>
</p><p>
This is important because if it is not done, local traffic will not be able
to get back through the tunnel.
</p><p>
The last line is just as important. This tells <tt>pppd</tt> to allow
connections without username and password. This is safe since authentication
is already handled by <tt>sshd</tt>.
</p>
<sect2>Avoiding conflicts
<p>
If you are handling other services with <tt>pppd</tt>, you should
consider that the configurations for these other services may not be the
same as what the VPN system needs. <tt>pppd</tt> is designed such that
the options in the main options file <tt>/etc/ppp/options</tt> cannot be
overridden by options specified at runtime. This is done for security
reasons. In order to avoid conflict, determine which options cause the
conflict, and move them from the main file into a separate options file
that is loaded when the appropriate application of <tt>pppd</tt> is run.
</p>
<sect1>Server: Configure <tt>sshd</tt>
<p>
The following is what my <tt>/etc/sshd_config</tt> file looks like. Yours
should look the same or similar:
</p><p>
<verb>
# This is the ssh server system wide configuration file.
Port 22
ListenAddress 0.0.0.0
HostKey /etc/ssh_host_key
RandomSeed /etc/ssh_random_seed
ServerKeyBits 768
LoginGraceTime 600
KeyRegenerationInterval 3600
PermitRootLogin yes
IgnoreRhosts yes
StrictModes yes
QuietMode no
FascistLogging yes
CheckMail no
IdleTimeout 3d
X11Forwarding no
PrintMotd no
KeepAlive yes
SyslogFacility DAEMON
RhostsAuthentication no
RhostsRSAAuthentication no
RSAAuthentication yes
PasswordAuthentication no
PermitEmptyPasswords no
UseLogin no
</verb>
</p><p>
The important points to note are that password authentication is disabled
as are all of the &quot;r&quot; services. I have also turned off mail checking
and the message of the day as they can confuse <tt>pppd</tt> on the client side.
I still allow root login, but as this can only be done with a key, it is adequately
safe.
</p>
<sect1>Server: Set up user accounts<label id="user-accounts">
<p>
Now we'll set up the user accounts.
</p>
<sect2>Add <tt>vpn-users</tt> group
<p>
just run:
</p><p>
<verb>
&num; /usr/sbin/groupadd vpn-users
</verb>
</p><p>
Now cat the <tt>/etc/group</tt> file and look at the last line. It should be
the entry for the vpn-users group. Note the third field. This is the group ID (GID).
Write it down, as we'll need it in a minute. For this example, the GID is 101.
</p>
<sect2>create the <tt>vpn-users</tt> home directory
<p>
We're going to use a single home directory for all of the users. So just
run:
</p><p>
<verb>
&num; mkdir /home/vpn-users
</verb>
</p>
<sect2>The <tt>.ssh</tt> directory
<p>
Now create the <tt>.ssh</tt> directory in the <tt>vpn-users</tt> home
directory.
</p><p>
<verb>
&num; mkdir /home/vpn-users/.ssh
</verb>
</p>
<sect2>Adding users
<p>
Now comes the fun part. We're going to edit the <tt>/etc/passwd</tt> file
by hand. :) Normally you let the system handle this file, but for a wierd
setup like this, it is easier to do it yourself. To start, let's open the
<tt>/etc/passwd</tt> file and see what's in there. Here's an example of what
you might find:
</p><p>
<verb>
...
nobody:x:65534:100:nobody:/dev/null:
mwilson:x:1000:100:Matthew Wilson,,,:/home/mwilson:/bin/bash
joe:*:1020:101:Joe Mode (home),,,:/home/vpn-users:/usr/sbin/pppd
bill:*:1020:101:Bill Smith (home),,,:/home/vpn-users:/usr/sbin/pppd
frank:*:1020:101:Frank Jones (home),,,:/home/vpn-users:/usr/sbin/pppd
...
</verb>
</p><p>
You'll find the first user on most any system. The second one is me. :)
After that are a few made up vpn-users. The first field is the username,
and the second is the password field. The third is user ID (UID) and the
fourth is the group ID (GID). After that comes some info on who the
people are in the fifth field. The sixth field is the user's home
directory, and the last is their shell. As you can see, each field is
separated by a colon. Look at the last three lines. The only difference
between them is the username in the first field, and the user info in
the fifth field. What we want to do is create lines like this for each
user. Don't just use one user for all of the connections, you'll never
be able to tell them apart if you do. So, copy the last line of this
file and edit it so that it looks something like the above. Make sure
that the second field has an asterisk (*). The second field should be
unique to all the other IDs in the file. I used 1020. You should use a
number above 1000, since those below are typically reserved for system
use. The fourth field should be the group ID for vpn-users. I told you
to write it down, now is the time that you need it. So put the group ID
in there. Lastly, change the home directory to
<tt>/home/vpn-users</tt>, and the shell to <tt>/usr/sbin/pppd</tt>.
That's it. Now copy that line to make more users. Just edit the first
the fifth fields and you're set.
</p>
<sect1>Server: Administration
<p>
One of the advantages to using this system for user accounts is that you
can take advantage of the UNIX user administration commands. Since each client
is logged in as a user, you can use standard methods to get user statistics.
The following are a few commands that I like to use to see what all is going on.
</p><p>
<descrip>
<p><tag>who</tag>
Prints the users currently logged in, as well as when they logged in,
from where (name or IP), and on which port.
<p><tag>w</tag>
This command prints a more extensive listing of who is currently logged
in. It also tells you uptime and load averages for the system. It also lists
the user's current process (which should be -pppd for VPN clients) as well
as idle time, and current CPU usage for all processes as well as the current
process. Read the <tt>w</tt> man page for more info.
<p><tag>last [username]</tag>
This lists the login history for the specified user, or for all users if
a username is not provided. It's most useful for finding out how well
the tunnels are running as it prints the length of time that the user
was logged in, or states that the user is still logged in. I should warn
you that on a system that has been up a long time, this list can grow
extremely long. Pipe is through <tt>grep</tt> or <tt>head</tt> to find
out exactly what you want to know.
</descrip>
</p><p>
You can also control which users are allowed to connect by modifying the
<tt>/home/vpn-users/.ssh/authorized_keys</tt> file. If you remove the user's
public key line from this file, they won't be able to log in.
</p>
<sect1>Client: Build the kernel
<p>
Now we move onto the client. First we must rebuild the kernel so that it can support
all of the functions that we need. The minimum requirement is to have ppp in the
kernel. After that, you will need forwarding, firewalling, and gatewaying only
if you are going to allow other machines access to the tunnel. For this example, I
will setup one of the remote office machines in my example layout. Add the following
options to your kernel. Again, if you've never built a kernel before, read the
<url url="/HOWTO/Kernel-HOWTO.html" name="Kernel HOWTO">.
</p><p>
For 2.0 kernels:
<itemize>
<item>CONFIG_PPP
<item>CONFIG_FIREWALL
<item>CONFIG_IP_FORWARD
<item>CONFIG_IP_FIREWALL
<item>CONFIG_IP_ROUTER
<item>CONFIG_IP_MASQUERADE
<item>CONFIG_IP_MASQUERADE_ICMP
</itemize>
</p><p>
For 2.2 kernels:
<itemize>
<item>CONFIG_PPP
<item>CONFIG_FIREWALL
<item>CONFIG_IP_ADVANCED_ROUTER
<item>CONFIG_IP_FIREWALL
<item>CONFIG_IP_ROUTER
<item>CONFIG_IP_MASQUERADE
<item>CONFIG_IP_MASQUERADE_ICMP
</itemize>
</p>
<sect1>Client: Configure Networking
<p>
Now we should setup the networking on our client box. Let's assume that
we've configured the external network and that it works. Now we will configure
the internal interface of the client to service our intranet.
</p>
<sect2>Interface
<p>
We need to first bring up the internal network interface. To do this,
add the following to your <tt>/etc/rc.d/rc.inet1</tt> (or equivalent) file:
</p><p>
For 2.0 Kernels:
</p><p>
<verb>
/sbin/ifconfig eth1 192.168.10.253 broadcast 192.168.10.255 netmask 255.255.255.0
/sbin/route add -net 192.168.10.0 netmask 255.255.255.0 dev eth1
</verb>
</p><p>
For 2.2 Kernels:
</p><p>
<verb>
/sbin/ifconfig eth1 192.168.10.253 broadcast 192.168.10.255 netmask 255.255.255.0
</verb>
<sect2>Filter rules
<p>
For setting up the remote office, we will want to set up our filter rules
that allow traffic to go both directions through the tunnel. Add the following
lines to your <tt>/etc/rc.d/rc.inet1</tt> (or equivalent) file:
</p><p>
For 2.0 kernels:
</p><p>
<verb>
/sbin/ipfwadm -F -f
/sbin/ipfwadm -F -p deny
/sbin/ipfwadm -F -a accept -b -S 192.168.10.0/24 -D 192.168.0.0/16
</verb>
</p><p>
For 2.2 kernels:
</p><p>
<verb>
/sbin/ipchains -F forward
/sbin/ipchains -P forward DENY
/sbin/ipchains -A forward -j ACCEPT -b -s 192.168.10.0/24 -d 192.168.0.0/16
</verb>
</p><p>
You may have noticed that these lines look like what we have
on the server. That's because they are the same. These rules
just say where traffic is allowed to go, that is, between these
two networks.
</p>
<sect2>Routing
<p>
The only extra routes that are needed are created by the script
that bring the tunnel up.
</p>
<sect1>Client: Configure <tt>pppd</tt>
<p>
You may not need to edit the client's <tt>/etc/ppp/options</tt> file at
all. You will if the "auth" option is present, or some of the other
priveledged options. Try it, and if it fails, a black
<tt>/etc/ppp/options</tt> will work. just keep adding the options from
the old file to figure out which one broke it (if it's not obvious) and
see if you can get around that. Maybe you don't need them at all. You
probably don't if you don't use <tt>pppd</tt> for anything else.
</p>
<sect1>Client: Configure <tt>ssh</tt>
<p>
As root on the client, run the following lines:
</p><p>
<verb>
&num; mkdir /root/.ssh
&num; ssh-keygen -f /root/.ssh/identity.vpn -P ""
</verb>
</p><p>
This will create two files, <tt>identity.vpn</tt> and <tt>identity.vpn.pub</tt> in the
<tt>.ssh</tt> directory. The first is your private key, and should be kept such.
<em>NEVER SEND THIS OVER THE NET</em> unless it is via an encrypted session. The
second file is your public key, and you can send this anywhere you want, it only
serves to allow you access to other systems, and cannot be used to get into your
own. It is a text file with one line in it that is your actual key. At the end
of the line is the comment field which you may change without fear of breaking
the key. an example key looks something like this:
</p><p>
<verb>
1024 35 1430723736674162619588314275167.......250872101150654839 root@vpn-client.mycompany.com
</verb>
</p><p>
It's actually a lot longer than that, but it wouldn't fit on the page if I
showed the whole thing. Copy your key into the <tt>/home/vpn-users/.ssh/authorized_keys</tt>
file on the server. Make sure that there is only one key per line, and
that each key is not broken onto multiple lines. You may alter
the comment field all that you like in order to help you remember which
line goes with which user. I highly recommend doing so.
</p>
<sect1>Client: Bring up the connection
<p>
Now we'll try to actually make the connection to the VPN server. First
we'll need to make a single connection the set up <tt>ssh</tt>'s known_hosts
file. Run this:
</p><p>
<verb>
&num; ssh vpn.mycompany.com
</verb>
</p><p>
Answer ''yes'' when it asks you if you want to continue connecting. The
server will tell you ''permission denied'', but that''s ok. It's
important that you use the same name for the server that you are using
in your connection scripts. Now run the following lines. You will
obviously need to change most of the options to fit your setup.
</p><p>
<verb>
&num; /usr/sbin/pty-redir /usr/bin/ssh -t -e none -o 'Batchmode yes' -c blowfish -i /root/.ssh/identity.vpn -l vpn-user vpn.mycompany.com > /tmp/vpn-device
(now wait about 10 seconds)
&num; /usr/sbin/pppd `cat /tmp/vpn-device` 192.168.10.254:192.168.40.254
</verb>
</p><p>
Note the IP addresses specified on the pppd line. The first is the
address of the client end of the tunnel. The second is the address of
the server end of the tunnel, which is set to the server's internal
address. If all of that seemed to work, move on. If not, check that you
have all of the options, and that they are spelled right. If something
is still going wrong, check the <ref id="pitfalls" name="Pitfalls section">.
</p>
<sect1>Client: Set the routes
<p>
Now set the route to send traffic through the tunnel. Just run this:
</p><p>
<verb>
&num; /sbin/route add -net 192.168.0.0 gw vpn-internal.mycompany.com netmask 255.255.0.0
</verb>
</p><p>
You should now be able to communicate with machines on the other side of
the tunnel. Give it a try. Neat huh? If it doesn't work, try using
<tt>ping</tt> and <tt>traceroute</tt> to figure out where your problem
might be. If in fact it does work, move on to setting up scripts to do
the work for you.
</p>
<sect1>Client: Scripting
<p>
Use the vpnd script that I show <ref id="vpn-script" name="here">. Only, you
need to modify it a little. Make the following changes:
</p><p>
<itemize>
<item>Change the variables at the top to match your setup. Most should be just
fine as they are, but you can change them should you need to.
<item>Line 27: add the local and remote IP addresses before $PPP_OPTIONS
<item>Line 31: Change this line, and the two after it to set routes for
your internal nets.
</itemize>
<sect2>Keeping it running
<p>
While bash scripts are generally stable, they have been known to fail.
In order to make sure that the <tt>vpnd</tt> script keeps running, add
an entry to the client's crontab that runs the <tt>check-vpnd</tt>
script. I run mine every 5 minutes or so. If <tt>vpnd</tt> is indeed
running, <tt>check-vpnd</tt> doesn't use much CPU.
</p>
<sect>Addenda
<sect1>Pitfalls<label id="pitfalls">
<p>
Here are just a few of the snags that I've run into while using this
system. I put them here so that you can hopefully avoid them. If you
run into any new ones, please <url url="mailto:matthew@shinythings.com"
name="email them to me"> so that I can keep track, and help others avoid
them.
</p>
<sect2>read: I/O error
<p>
This error apparently comes from pppd. It's associated with mis-matched
versions off pppd. If you get it, try upgrading both ends of the
connection to the latest version of pppd. I've found that pppd version
2.2 has this problem, and use version 2.3.7 or 2.3.8 instead.
</p>
<sect2>SIOCADDRT: Network is unreachable
<p>
This error is generated by <tt>route</tt>. I've seen it happen when the
sleep time between <tt>ssh</tt> and <tt>pppd</tt> is not long enough. If
you get this error, run <tt>ifconfig</tt>, you may see that there is no
pppX interface. This means that <tt>ssh</tt> was not done
authenticating before <tt>pppd</tt> was launched, and therefore
<tt>pppd</tt> did not make the connection. just increase the delay, and
your problems will be solved.
</p><p>
I wonder however if there might be some pppd option that will fix this
problem.
</p>
<sect2>IPv4 Forwarding and 2.2 kernels<label id="ipv4forwarding">
<p>
In the new 2.2 kernel, you must specifically enable IP forwarding in the
kernel at boot up. This with the following command:
</p><p>
<verb>
&num; echo 1 > /proc/sys/net/ipv4/ip_forward
</verb>
</p><p>
Without this, the kernel will not forward any packets, and hence the
server will not work, nor will any of the gatewaying clients.
</p>
<sect2>Routing
<p>
it should go without saying, but be careful when you are routing real numbers
that you don't route traffic destined for the VPN server's external address
through the tunnel. It won't make it. (yes, this <em>is</em> from personal
experience.)
</p>
<sect1>Hardware and Software Requirements
<sect2>Minimum Hardware Requirements
<p>
Believe it or not, this system has been run on a 486SX33 with 8
megabytes of RAM. It didn't run very well though, it had trouble
handling heavy traffic.
</p><p>
It doesn't take much more to make it work though. This system does work
very well on a Pentium 75 with 16 megs of RAM, using an LRP distribution
running off of a floppy, with a 6 meg ramdisk, and 10 megs of main
memory. I've tested this setup by running a 700kbit RealVideo stream
through it for over an hour.
</p><p>
I now typically run it on Pentium 90's, as their PCI clocking plays
nicer with cheap 100Mbit Ethernet cards.
</p>
<sect2>Software Requirements
<p>
This system works with both the 2.0 and 2.2 kernels. The script to keep
the tunnel up requires a reasonably modern bash. I have however noticed
that certain distribution's versions of bash don't play too well with
the script.
</p><p>
Also, if someone could help me refine my scripts (or even write an
executable?) that would helps things a lot. I'm not sure why, but even
my own bash doesn't follow the rules and doesn't seem to interpret
signals correctly. If you do make any improvements, please email me at
<url url="mailto:matthew@shinythings.com" name="matthew@shinythings.com">
</p>
</article>