summaryrefslogtreecommitdiff
path: root/jni/README (plain)
blob: 2df6b472ca313da86bc39a8384db9a755e850e65
1# LIC: GPL
2
3pppoe: a PPP-over-Ethernet redirector for pppd
4Copyright (C) 2001-2005 Roaring Penguin Software Inc.
5
6Some inspiration from an earlier client by Luke Stras.
7
8The MSS clamping was inspired by mssclampfw by Marc Boucher <marc@mbsi.ca>
9with acknowledgements to Rebel.com (http://www.rebel.com). However, the
10actual MSS clamping code is original and is licensed under the GPL, unlike
11the original mssclampfw.
12
13Introduction
14============
15
16pppoe is a user-space redirector which permits the use of PPPoE
17(Point-to-Point Over Ethernet) with Linux. PPPoE is used by many
18DSL service providers.
19
20Installation
21============
22
23Requirements
24------------
25
261) Linux 2.2.9 or later on Intel, Sparc or PowerPC. It may work on
27 Alpha, too -- anyone care to let me know?
28
29 OR
30
31 Linux 2.0.36 or later.
32
33 OR
34
35 FreeBSD, NetBSD or OpenBSD with BPF support. I have access only
36 to FreeBSD. In general, I can't answer questions about the *BSD's
37 as well as I can about Linux.
38
39
402) pppd 2.3.10 or later. Versions 2.3.7 and later work unless you use
41 demand-dialling. For demand dialling, you *must* use 2.3.10 or later.
42
43QUICKSTART
44----------
45
46If you're lucky, the "quickstart" method will work. After unpacking
47the archive, become root and type:
48
49 ./go
50
51This should configure, compile and install the software and set up your
52DSL connection. You'll have to answer a few questions along the way.
53
54If you want the GUI wrapper, type:
55
56 ./go-gui
57
58If ./go and ./go-gui didn't work, read the rest of this README.
59
60Compiling
61---------
62
63Compile and install pppd if you don't already have it. Then:
64
651) Unpack:
66
67 $ tar xzvf rp-pppoe-xxx.tar.gz
68
692) Change to source directory:
70
71 $ cd src
72
733) Configure:
74
75 $ ./configure
76
774) Compile:
78
79 $ make
80
814) Install (this step must be done as root)
82
83 # make install
84
855) Now read doc/HOW-TO-CONNECT
86
87--
88David F. Skoll <dfs@roaringpenguin.com> | Roaring Penguin Software Inc.
89http://www.roaringpenguin.com
90