]> git.ozlabs.org Git - ppp.git/blob - README.sunos4
updated
[ppp.git] / README.sunos4
1 This file describes the installation process for ppp-2.2 on systems
2 running SunOS 4.x (or the equivalent).
3
4 The STREAMS modules in the sunos4 directory provide kernel support for
5 PPP on SunOS 4.x systems.  They have been tested under SunOS 4.1.3 on
6 a SparcStation 1+.  They should work under earlier SunOS 4.x systems,
7 but no guarantees are given.
8
9 These modules are designed to be loaded into the running kernel using
10 the `modload' command.
11
12
13 Installation.
14 *************
15
16 1. Run the configure script and make the user-level programs and the
17 kernel modules.
18
19         ./configure
20         make
21
22 2. Install the pppd, pppstats chat programs and the loadable module
23 object files (you need to be root to do this):
24
25         make install
26
27 By default, the programs and the loadable module object files go into
28 /usr/local/etc.  Doing `make install' also copies a script called
29 ppp.INSTALL into /dev, and makes ppp.LOAD, ppp.UNLOAD, ppp.MKDEV and
30 ppp.RMDEV links to it.
31
32 3. Load the ppp modules (you need to be root for this too):
33
34         /dev/ppp.LOAD
35
36 You will want to do this in your /etc/rc.local file once you have
37 everything installed.  I suggest you put something like the following
38 in /etc/rc.local (or /etc/loadable, if you have one):
39
40         if [ -f /dev/ppp.AUTOLOAD ]; then
41                 /dev/ppp.LOAD
42         fi
43
44 and then create a /dev/ppp.AUTOLOAD file with the command
45
46         touch /dev/ppp.AUTOLOAD
47