]> git.ozlabs.org Git - ppp.git/blob - README.sol2
work around se driver bug
[ppp.git] / README.sol2
1 This file describes the installation process for ppp-2.3 on systems
2 running Solaris 2.  The Solaris 2 and SVR4 ports share a lot of code
3 but are not identical.  The STREAMS kernel modules and driver for
4 Solaris 2 are in the svr4 directory (and use some code from the
5 modules directory).
6
7 This version has been tested under Solaris 2.5.1 and Solaris 2.6.
8
9
10 Installation.
11 *************
12
13 1. Run the configure script and make the user-level programs and the
14 kernel modules.
15
16         ./configure
17         make
18
19 If you wish to use gcc (or another compiler) instead of Sun's cc, edit
20 the svr4/Makedefs file and uncomment the definition of CC.  You can
21 also change the options passed to the C compiler by editing the COPTS
22 definition.
23
24 2. Install the programs and kernel modules: as root, do
25
26         make install
27
28 This installs pppd, chat and pppstats in /usr/local/bin and the kernel
29 modules in /kernel/drv and /kernel/strmod, and creates the /etc/ppp
30 directory and populates it with default configuration files.  You can
31 change the installation directories by editing svr4/Makedefs.
32
33 If your system normally has only one network interface, the default
34 Solaris 2 system startup scripts will disable IP forwarding in the IP
35 kernel module.  This will prevent the remote machine from using the
36 local machine as a gateway to access other hosts.  The solution is to
37 create an /etc/ppp/ip-up script containing something like this:
38
39         #!/bin/sh
40         /usr/sbin/ndd -set /dev/ip ip_forwarding 2
41
42 Under Solaris 2.6, the value 2 is invalid; use 1 instead.  See the man
43 page for ip(7p) for details.