Update and clean Tomato RAF files
[tomato.git] / release / src / router / pptpd / README.logwtmp
blobefc3183391da3ca88fc29846c69bda15da798578
1 $Id: README.logwtmp,v 1.1 2004/04/28 11:36:07 quozl Exp $
2 pptpd 1.2.0 logwtmp feature, by James Cameron, 28th April 2004.
4 The --logwtmp feature uses the standard wtmp feature to track users
5 who have connections to the server.  It works as follows.
7 When a connection occurs, pptpd launches pppd with two additional
8 options.  The first option directs pppd to load the pptpd-logwtmp.so
9 plugin.  The second option is the IP address of the client.
11         "plugin /usr/lib/pptpd/pptpd-logwtmp.so"
12         "pptpd-original-ip 10.0.0.1"
14 The plugin defines the pptpd-original-ip option so that pppd will
15 accept it.
17 If the plugin fails to load, pppd will fail in the usual manner.  Such
18 a failure will usually be related to a missing file in /usr/lib/pptpd.
20 The plugin asks pppd to notify it when IP comes up or goes down.
22 When IP comes up, the plugin's ip_up() function executes, calling
23 logwtmp() to mark the user as logged in.  Once this has happened,
24 commands like "who" will show the user.  The tty will be set to the
25 PPP interface name.
27 When IP goes down, the plugin's ip_down() function executes, removing
28 the entry from wtmp.  Note that a "kill -9" on the pppd will result in
29 a user appearing to remain logged in.  Don't use "kill -9", use an
30 ordinary kill.
32 If pppd debug mode is enabled, the plugin announces it's version when
33 loaded, and reports the parameters it is handing over to the logwtmp
34 call.  See the plugins/pptpd-logwtmp.c source.