]> git.ozlabs.org Git - ppp.git/blob - README.svr4
restore DL_PHYS_ADDR_REQ
[ppp.git] / README.svr4
1 The System V Release 4 (svr4) port of this software has been developed
2 under Solaris 2, which has some extensions which are not available on
3 all SVR4 systems, particularly in the area of multi-thread (MT)
4 support in the kernel.  Although the code supplied here may work under
5 other SVR4 systems, these instructions are specifically for Solaris 2.
6
7 Installation.
8 *************
9
10 1. Run the configure script and make the user-level programs and the
11 kernel modules.
12
13         ./configure
14         make
15
16 2. Install the programs and kernel modules: as root, do
17
18         make install
19
20 This installs pppd, chat and pppstats in /usr/local/bin and the kernel
21 modules in /kernel/drv and /kernel/strmod, and creates the /etc/ppp
22 directory and populates it with default configuration files.
23
24 If your system normally has only one network interface, the default
25 Solaris 2 system startup scripts will disable IP forwarding in the IP
26 kernel module.  This will prevent the remote machine from using the
27 local machine as a gateway to access other hosts.  The solution is to
28 create an /etc/ppp/ip-up script containing something like this:
29
30         #!/bin/sh
31         /usr/sbin/ndd -set /dev/ip ip_forwarding 2
32