]> git.ozlabs.org Git - ppp.git/blob - README.sun
accept A/C & proto compression and asyncmap from the start;
[ppp.git] / README.sun
1 This file describes the installation process for ppp-2.2 on systems
2 running SunOS 4.x (or the equivalent).  This package does not
3 currently work under Solaris 2.
4
5 The STREAMS modules in the sunos directory provide kernel support for
6 PPP on SunOS 4.x systems.  They have been tested under SunOS 4.1.3 on
7 a SparcStation 10.  They should work under earlier SunOS 4.x systems,
8 but no guarantees are given.
9
10 The easiest way to install these modules is to load them into the
11 running kernel using the `modload' command.  They can alternatively be
12 linked into the kernel image, but this requires rebuilding the kernel.
13
14
15 Installation.
16 *************
17
18 1. Run the configure script and make the user-level programs and the
19 kernel modules.
20
21         ./configure
22         make
23
24 2. Install the pppd and chat programs (you need to be root to do this):
25
26         make install
27
28 3. Load the ppp module (you need to be root for this too).  In the
29 sunos directory, do:
30
31         /usr/etc/modload ppp_driver.o
32
33 You will want to do this "modloading" in your /etc/rc.local file
34 once you have everything installed.  The ppp module is copied to
35 /usr/local/etc by default, so you can put something like the following
36 in /etc/rc.local:
37
38         if [ -f /usr/local/etc/ppp_driver.o ]; then 
39                 /usr/etc/modload /usr/local/etc/ppp_driver.o
40         fi
41
42 On some systems, /usr/local/etc is mounted read-only.  On such
43 systems, add `-o /etc/ppp/ppp_driver' to the modload command line.
44
45 NOTE: pppstats now works differently, so there is no need to use the
46 -sym flag to modload, as required with earlier versions.