Update and clean Tomato RAF files
[tomato.git] / release / src / router / pptpd / samples / pptpd.conf
blobf12471bf3d2ac1c396210fdbda8dc4542833f5fe
1 ###############################################################################
2 # $Id: pptpd.conf,v 1.8 2004/04/28 11:36:07 quozl Exp $
4 # Sample Poptop configuration file /etc/pptpd.conf
6 # Changes are effective when pptpd is restarted.
7 ###############################################################################
9 # TAG: ppp
10 #       Path to the pppd program, default '/usr/sbin/pppd' on Linux
12 #ppp /usr/sbin/pppd
14 # TAG: option
15 #       Specifies the location of the PPP options file.
16 #       By default PPP looks in '/etc/ppp/options'
18 option /etc/ppp/options.pptpd
20 # TAG: debug
21 #       Turns on (more) debugging to syslog
23 #debug
25 # TAG: stimeout
26 #       Specifies timeout (in seconds) on starting ctrl connection
28 # stimeout 10
30 # TAG: noipparam
31 #       Suppress the passing of the client's IP address to PPP, which is
32 #       done by default otherwise.
34 #noipparam
36 # TAG: logwtmp
37 #       Use wtmp(5) to record client connections and disconnections.
39 logwtmp
41 # TAG: bcrelay <if>
42 #       Turns on broadcast relay to clients from interface <if>
44 #bcrelay eth1
46 # TAG: localip
47 # TAG: remoteip
48 #       Specifies the local and remote IP address ranges.
50 #       Any addresses work as long as the local machine takes care of the
51 #       routing.  But if you want to use MS-Windows networking, you should
52 #       use IP addresses out of the LAN address space and use the proxyarp
53 #       option in the pppd options file, or run bcrelay.
55 #       You can specify single IP addresses seperated by commas or you can
56 #       specify ranges, or both. For example:
58 #               192.168.0.234,192.168.0.245-249,192.168.0.254
60 #       IMPORTANT RESTRICTIONS:
62 #       1. No spaces are permitted between commas or within addresses.
64 #       2. If you give more IP addresses than MAX_CONNECTIONS, it will
65 #          start at the beginning of the list and go until it gets 
66 #          MAX_CONNECTIONS IPs. Others will be ignored.
68 #       3. No shortcuts in ranges! ie. 234-8 does not mean 234 to 238,
69 #          you must type 234-238 if you mean this.
71 #       4. If you give a single localIP, that's ok - all local IPs will
72 #          be set to the given one. You MUST still give at least one remote
73 #          IP for each simultaneous client.
75 # (Recommended)
76 #localip 192.168.0.1
77 #remoteip 192.168.0.234-238,192.168.0.245
78 # or
79 #localip 192.168.0.234-238,192.168.0.245
80 #remoteip 192.168.1.234-238,192.168.1.245