1# LIC: GPL
2
3This is a user-space implementation of L2TP (RFC 2661) for Linux.
4
5Copying
6-------
7
8All software included in this package is Copyright 2002 Roaring
9Penguin Software Inc.  You may distribute it under the terms of the
10GNU General Public License (the "GPL"), Version 2, or (at your option)
11any later version.
12
13Handlers
14--------
15
16Part of the l2tp code is implemented in the l2tpd program, and part of
17it is implemented as "handlers".  A handler is a shared-object library
18which is dynamically linked into l2tpd at run-time using the
19"load-handler" configuration directive.
20
21Although the handlers included with this package (sync-pppd and cmd)
22are licensed under the GPL, as a special exception, you may write your
23own handlers which link to code in this package and not release them
24under the GPL.  There may be other reasons why your handlers must
25be released under the GPL (for example, they may link with other GPL'd
26code), but in the absence of other reasons, you may keep your handlers
27proprietary.
28
29Installation
30------------
31
32./configure && make
33make install
34
35Now read l2tpd(8) and l2tp.conf(5)
36