1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
ppxp for DEBIAN
----------------------
PPxP - Yet another ppp program.
PPxP need ethertap kernel driver(/dev/tap*) or userlink kernel driver(/dev/ul*).
ethertap is available on 2.2.x kernel.
If use 2.0.x kernel, you must use userlink driver that can build from
userlink-source package.
How to start.
1.Use with ethertap.
Ethertap Document.
<kernel-source-path>/Documentation/networking/ethertap.txt
Setup.
1. Rebuild the kernel, install this and reboot the system
Needed kernel options are,
. Kernel/User network link driver
. Netlink device emulation
. Ethertap network tap
2. mknod device(s).
# mknod /dev/tap0 c 36 16
# mknod /dev/tap1 c 36 17 (if need)
...
3. change mode of /dev/tap*
# chgrp dialout /dev/tap*
# chmod g+w /dev/tap*
2. Use with userlink (If 2.0 kernel or ethertap disabled)
Documents
/usr/doc/userlink-source/userlink.txt
Setup
install userlink-source package to build userlink-modules package.
# apt-get install userlink-source
# cd /usr/src
# tar xzf userlink-source.tar.gz
# cd modules/userlink-source
# debian/rules binary-modules
# dpkg -i <userlink-modules-package>
English Documents
/usr/doc/ppxp/C/
Japanese Documents
/usr/doc/ppxp/ja_JP
Web page and mirrors.
http://www.linet.gr.jp/~manabe/PPxP/
http://www.dsl.gr.jp/~manabe/PPxP/ (AMITA:TOKYO INTERNET)
Takuo KITAME <kitame@northeye.org>, Sat, 18 Jul 1998 17:26:00 +0900
|