ppp.conf.sample revision 51049
1#################################################################
2#
3#              PPP  Sample Configuration File
4#
5#           Originally written by Toshiharu OHNO
6#
7# $FreeBSD: head/share/examples/ppp/ppp.conf.sample 51049 1999-09-07 07:56:54Z brian $
8#
9#################################################################
10
11# This file is separated into sections.  Each section is named with
12# a label starting in column 0 and followed directly by a ``:''.  The
13# section continues until the next section.  Blank lines and lines
14# beginning with ``#'' are ignored.
15#
16# Lines beginning with "!include" will ``include'' another file.  You
17# may want to ``!include ~/.ppp.conf'' for backwards compatibility.
18#
19
20# Default setup. Always executed when PPP is invoked.
21#  This section is *not* pre-loaded by the ``load'' or ``dial'' commands.
22#
23#  This is the best place to specify your modem device, it's DTR rate,
24#  your dial script and any logging specification.  Logging specs should
25#  be done first so that the results of subsequent commands are logged.
26#
27default:
28 set log Phase Chat LCP IPCP CCP tun command
29 set device /dev/cuaa1
30 set speed 115200
31 set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" AT \
32           OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT"
33
34# Client side PPP
35#
36#  Although the PPP protocol is a peer to peer protocol, we normally
37#  consider the side that initiates the connection as the client and
38#  the side that receives the connection as the server.  Authentication
39#  is required by the server either using a unix-style login procedure
40#  or by demanding PAP or CHAP authentication from the client.
41#
42
43# An on demand example where we have dynamic IP addresses and wish to
44# use a unix-style login script:
45#
46#  If the peer assigns us an arbitrary IP (most ISPs do this) and we
47#  can't predict what their IP will be either, take a wild guess at
48#  some IPs that you can't currently route to.  Ppp can change this
49#  when the link comes up.
50#
51#  The /0 bit in "set ifaddr" says that we insist on 0 bits of the
52#  specified IP actually being correct, therefore, the other side can assign
53#  any IP number.
54#
55#  The forth arg to "set ifaddr" makes us send "0.0.0.0" as our requested
56#  IP number, forcing the peer to make the decision.  This is necessary
57#  when negotiating with some (broken) ppp implementations.
58#
59#  This entry also works with static IP numbers or when not in -auto mode.
60#  The ``add'' line adds a `sticky' default route that will be updated if
61#  and when any of the IP numbers are changed in IPCP negotiations.
62#  The "set ifaddr" is required in -auto mode.
63#
64#  Finally, the ``enable dns'' line tells ppp to ask the peer for the
65#  nameserver addresses that should be used.  This isn't always supported
66#  by the other side, but if it is, ppp will update /etc/resolv.conf with
67#  the correct nameserver values at connection time.
68#
69#  The login script shown says that you're expecting ``ogin:''.  If you
70#  don't receive that, send a ``\n'' and expect ``ogin:'' again.  When
71#  it's received, send ``ppp'', expect ``word:'' then send ``ppp''.
72#  You *MUST* customise this login script according to your local
73#  requirements.
74#
75pmdemand:
76 set phone 1234567
77 set login "ABORT NO\\sCARRIER TIMEOUT 5 ogin:--ogin: ppp word: ppp"
78 set timeout 120
79 set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0
80 add default HISADDR
81 enable dns
82
83# If you want to use PAP or CHAP instead of using a unix-style login
84# procedure, do the following.  Note, the peer suggests whether we
85# should send PAP or CHAP.  By default, we send whatever we're asked for.
86#
87# You *MUST* customise ``MyName'' and ``MyKey'' below.
88#
89PAPorCHAPpmdemand:
90 set phone 1234567
91 set login
92 set authname MyName
93 set authkey MyKey
94 set timeout 120
95 set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0
96 add default HISADDR
97 enable dns
98
99# On demand dialup example with static IP addresses:
100#  Here, the local side uses 192.244.185.226 and the remote side
101#  uses 192.244.176.44.
102#
103#  # ppp -auto ondemand
104#
105#  With static IP numbers, our setup is similar to dynamic:
106#  Remember, ppp.linkup is searched for a "192.244.176.44" label, then
107#  a "ondemand" label, and finally the "MYADDR" label.
108#
109ondemand:
110 set phone 1234567
111 set login "ABORT NO\\sCARRIER TIMEOUT 5 ogin:--ogin: ppp word: ppp"
112 set timeout 120
113 set ifaddr 192.244.185.226 192.244.176.44
114 add default HISADDR
115 enable dns
116
117#                          Example segments
118#
119# The following lines may be included as part of your configuration
120# section and aren't themselves complete.  They're provided as examples
121# of how to achieve different things.
122
123examples:
124# Multi-phone example.  Numbers separated by a : are used sequentially.
125# Numbers separated by a | are used if the previous dial or login script
126# failed.  Usually, you will prefer to use only one of | or :, but both
127# are allowed.
128#
129    set phone 12345678|12345679:12345670|12345671
130#
131# Ppp can accept control instructions from the ``pppctl'' program.
132# First, you must set up your control socket.  It's safest to use
133# a UNIX domain socket, and watch the permissions:
134#
135    set server /var/tmp/internet MySecretPassword 0177
136#
137# Although a TCP port may be used if you want to allow control
138# connections from other machines:
139#
140    set server 6670 MySecretpassword
141#
142# If you don't like ppp's builtin chat, use an external one:
143#
144    set login "\"!chat \\\\-f /etc/ppp/ppp.dev.chat\""
145#
146# If we have a ``strange'' modem that must be re-initialized when we
147# hangup:
148#
149    set hangup "\"\" AT OK-AT-OK ATZ OK"
150#
151# To adjust logging withouth blasting the setting in default:
152#
153    set log -command +tcp/ip
154#
155# To see log messages on the screen in interactive mode:
156#
157    set log local LCP IPCP CCP
158#
159# If you're seeing a lot of magic number problems and failed connections,
160# try this (see the man page):
161#
162    set openmode active 5
163#
164# For noisy lines, we may want to reconnect (up to 20 times) after loss
165# of carrier, with 3 second delays between each attempt:
166#
167    set reconnect 3 20
168#
169# When playing server for M$ clients, tell them who our NetBIOS name
170# servers are:
171#
172    set nbns 10.0.0.1 10.0.0.2
173#
174# Inform the client if they ask for our DNS IP numbers:
175#
176    enable dns
177#
178# If you don't want to tell them what's in your /etc/resolf.conf file
179# with `enable dns', override the values:
180#
181    set dns 10.0.0.1 10.0.0.2
182#
183# If we're using the -nat switch, redirect ftp and http to an internal
184# machine:
185#
186    nat port 10.0.0.2:ftp ftp
187    nat port 10.0.0.2:http http
188#
189# or don't trust the outside at all
190#
191    nat deny_incoming yes
192#
193# I trust user brian to run ppp, so this goes in the `default' section:
194#
195    allow user brian
196#
197# But label `internet' contains passwords that even brian can't have, so
198# I empty out the user access list in that section so that only root can
199# have access:
200#
201    allow users
202#
203# I also may wish to set up my ppp login script so that it asks the client
204# for the label they wish to use.  I may only want user ``dodgy'' to access
205# their own label in direct mode:
206#
207dodgy:
208    allow user dodgy
209    allow mode direct
210#
211# If we don't want ICMP and DNS packets to keep the connection alive:
212#
213    set filter alive 0 deny icmp
214    set filter alive 1 deny udp src eq 53
215    set filter alive 2 deny udp dst eq 53
216    set filter alive 3 permit 0 0
217#
218# And we don't want ICMPs to cause a dialup:
219#
220    set filter dial 0 deny icmp
221    set filter dial 1 permit 0 0
222#
223# or any TCP SYN or RST packets (badly closed TCP channels):
224#
225    set filter dial 2 deny 0 0 tcp syn finrst
226#
227# Once the line's up, allow connections for ident (113), telnet (23),
228# ftp (20 & 21), DNS (53), my place of work (192.244.191.0/24),
229# ICMP (ping) and traceroute (>33433).
230#
231# Anything else is blocked by default
232#
233    set filter in  0 permit tcp dst eq 113
234    set filter out 0 permit tcp src eq 113
235    set filter in  1 permit tcp src eq 23 estab
236    set filter out 1 permit tcp dst eq 23
237    set filter in  2 permit tcp src eq 21 estab
238    set filter out 2 permit tcp dst eq 21
239    set filter in  3 permit tcp src eq 20 dst gt 1023
240    set filter out 3 permit tcp dst eq 20
241    set filter in  4 permit udp src eq 53
242    set filter out 4 permit udp dst eq 53
243    set filter in  5 permit 192.244.191.0/24 0/0
244    set filter out 5 permit 0/0 192.244.191.0/24
245    set filter in  6 permit icmp
246    set filter out 6 permit icmp
247    set filter in  7 permit udp dst gt 33433
248    set filter out 7 permit udp dst gt 33433
249
250#
251# ``dodgynet'' is an example intended for an autodial configuration which
252# is connecting a local network to a host on an untrusted network.
253dodgynet:
254    # Log link uptime
255    set log Phase
256    # For autoconnect only
257    allow modes auto
258    # Define modem device and speed
259    set device /dev/cuaa1
260    set speed 115200
261    # Don't support LQR
262    deny lqr
263    # Remote system phone number, login and password
264    set phone 0W1194
265    set authname pppLogin
266    set authkey MyPassword
267    # Chat script to dial remote system
268    set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" ATZ OK-ATZ-OK \
269              ATE1Q0M0 OK \\dATDT\\T TIMEOUT 40 CONNECT"
270    # Chat script to login to remote Unix system
271    set login "TIMEOUT 10 \"\" \"\" gin:--gin: \\U word: \\P"
272    # Drop the link after 15 minutes of inactivity
273    # Inactivity is defined by the `set filter alive' line below
274    set timeout 900
275    # Hard-code remote system to appear within local subnet and use proxy arp
276    # to make this system the gateway
277    set ifaddr 172.17.20.247 172.17.20.248 255.255.240.0
278    enable proxy
279
280    # Allow any TCP packet to keep the link alive
281    set filter alive 0 permit tcp
282
283    # Only allow dialup to be triggered by http, rlogin, rsh, telnet, ftp or
284    # private TCP ports 24 and 4000
285    set filter dial  0 7      0 0 tcp dst eq http
286    set filter dial  1 7      0 0 tcp dst eq login
287    set filter dial  2 7      0 0 tcp dst eq shell
288    set filter dial  3 7      0 0 tcp dst eq telnet
289    set filter dial  4 7      0 0 tcp dst eq ftp
290    set filter dial  5 7      0 0 tcp dst eq 24
291    set filter dial  6 deny ! 0 0 tcp dst eq 4000
292    # From hosts on a couple of local subnets to the remote peer
293    # If the remote host allowed IP forwarding and we wanted to use it, the
294    # following rules could be split into two groups to separately validate
295    # the source and destination addresses.
296    set filter dial  7 permit 172.17.16.0/20  172.17.20.248 
297    set filter dial  8 permit 172.17.36.0/22  172.17.20.248 
298    set filter dial  9 permit 172.17.118.0/26 172.17.20.248 
299    set filter dial 10 permit 10.123.5.0/24   172.17.20.248 
300
301    # Once the link's up, limit outgoing access to the specified hosts
302    set filter out  0 4      172.17.16.0/20  172.17.20.248 
303    set filter out  1 4      172.17.36.0/22  172.17.20.248 
304    set filter out  2 4      172.17.118.0/26 172.17.20.248 
305    set filter out  3 deny ! 10.123.5.0/24   172.17.20.248 
306    # Allow established TCP connections
307    set filter out  4 permit 0 0 tcp estab
308    # And new connections to http, rlogin, rsh, telnet, ftp and ports
309    # 24 and 4000
310    set filter out  5 permit 0 0 tcp dst eq http
311    set filter out  6 permit 0 0 tcp dst eq login
312    set filter out  7 permit 0 0 tcp dst eq shell
313    set filter out  8 permit 0 0 tcp dst eq telnet
314    set filter out  9 permit 0 0 tcp dst eq ftp
315    set filter out 10 permit 0 0 tcp dst eq 24
316    set filter out 11 permit 0 0 tcp dst eq 4000
317    # And outgoing icmp
318    set filter out 12 permit 0 0 icmp
319
320    # Once the link's up, limit incoming access to the specified hosts
321    set filter in   0 4      172.17.20.248  172.17.16.0/20
322    set filter in   1 4      172.17.20.248  172.17.36.0/22
323    set filter in   2 4      172.17.20.248  172.17.118.0/26
324    set filter in   3 deny ! 172.17.20.248  10.123.5.0/24
325    # Established TCP connections and non-PASV FTP
326    set filter in   4 permit 0/0  0/0  tcp estab
327    set filter in   5 permit 0/0  0/0  tcp src eq 20
328    # Useful ICMP messages
329    set filter in   6 permit 0/0  0/0  icmp src eq 3
330    set filter in   7 permit 0/0  0/0  icmp src eq 4
331    set filter in   8 permit 0/0  0/0  icmp src eq 11
332    set filter in   9 permit 0/0  0/0  icmp src eq 12
333    # Echo reply (local systems can ping the remote host)
334    set filter in  10 permit 0/0  0/0  icmp src eq 0
335    # And the remote host can ping the local gateway (only)
336    set filter in  11 permit 0/0  172.17.20.247 icmp src eq 8
337
338
339# Server side PPP
340#
341#  If you want the remote system to authenticate itself, you must insist
342#  that the peer uses CHAP or PAP with the "enable" keyword.  Both CHAP and
343#  PAP are disabled by default.  You may enable either or both.  If both
344#  are enabled, CHAP is requested first.  If the client doesn't agree, PAP
345#  will then be requested.
346#
347#  Note:  If you use the getty/login process to authenticate users, you
348#         don't need to enable CHAP or PAP, but the user that has logged
349#         in *MUST* be a member of the ``network'' group (in /etc/group).
350#
351#  If you wish to allow any user in the passwd database ppp access, you
352#  can ``enable passwdauth''.
353#
354#  When the peer authenticates itself, we use ppp.secret for verification
355#  (although refer to the ``set radius'' command below for an alternative).
356#
357#  Note:  We may supply a third field in ppp.secret specifying the IP
358#         address for that user, a forth field to specify the
359#         ppp.link{up,down} label to use and a fifth field to specify
360#         callback characteristics.
361#
362#  The easiest way to allow transparent LAN access to your dialin users
363#  is to assign them a number from your local LAN and tell ppp to make a
364#  ``proxy'' arp entry for them.  In this example, we have a local LAN
365#  with IP numbers 10.0.0.1 - 10.0.0.99, and we assign numbers to our
366#  ppp clients between 10.0.0.100 and 10.0.0.199.  It is possible to
367#  override the dynamic IP number with a static IP number specified in
368#  ppp.secret.
369#
370#  Ppp is launched with:
371#   # ppp -direct server
372#
373server:
374 enable chap
375 enable pap
376 enable passwdauth
377 enable proxy
378 set ifaddr 10.0.0.1 10.0.0.100-10.0.0.199
379 accept dns
380
381# Example of a RADIUS configuration:
382#  If there are one or more radius servers available, we can use them
383#  instead of the ppp.secret file.  Simply put then in a radius
384#  configuration file (usually /etc/radius.conf) and give ppp the
385#  file name.
386#  Ppp will use the FRAMED characteristics supplied by the radius server
387#  to configure the link.
388
389radius-server:
390 load server
391 set radius /etc/radius.conf
392
393
394# Example to connect using a null-modem cable:
395#  The important thing here is to allow the lqr packets on both sides.
396#  Without them enabled, we can't tell if the line's dropped - there
397#  should always be carrier on a direct connection.
398#  Here, the server sends lqr's every 10 seconds and quits if five in a
399#  row fail.
400#
401#  Make sure you don't have "deny lqr" in your default: on the client !
402#  If the peer denies LQR, we still send ECHO LQR packets at the given
403#  lqrperiod interval (ppp-style-pings).
404#
405direct-client:
406 set dial ""
407 set device /dev/cuaa0
408 set sp 115200
409 set timeout 900
410 set lqrperiod 10
411 set log Phase Chat LQM
412 set login "ABORT NO\\sCARRIER TIMEOUT 5 ogin:--ogin: ppp word: ppp HELLO"
413 set ifaddr 10.0.4.2 10.0.4.1
414 enable lqr
415 accept lqr
416 
417direct-server:
418 set timeout 0
419 set lqrperiod 10
420 set log Phase LQM
421 set ifaddr 10.0.4.1 10.0.4.2
422 enable lqr
423 accept lqr
424
425
426# Example to connect via compuserve
427#  Compuserve insists on 7 bits even parity during the chat phase.  Modem
428#  parity is always reset to ``none'' after the link has been established.
429#
430compuserve:
431 set phone 1234567
432 set parity even
433 set login "TIMEOUT 100 \"\" \"\" Name: CIS ID: 999999,9999/go:pppconnect \
434            word: XXXXXXXX PPP"
435 set timeout 300
436 set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0
437 delete ALL
438 add default HISADDR
439
440
441# Example for PPP over TCP.
442#  We assume that inetd on tcpsrv.mynet has been
443#  configured to run "ppp -direct tcp-server" when it gets a connection on
444#  port 1234.  Read the man page for further details
445#
446#  Note, we assume we're using a binary-clean connection.  If something
447#  such as `rlogin' is involved, you may need to ``set escape 0xff''
448#
449tcp-client:
450 set device tcpsrv.mynet:1234
451 set dial
452 set login
453 set ifaddr 10.0.5.1 10.0.4.1 255.255.255.0
454
455tcp-server:
456 set ifaddr 10.0.4.1 10.0.5.1 255.255.255.0
457
458# Example for PPP testing.
459#  If you want to test ppp, do it through the loopback interface:
460#
461#  Requires a line in /etc/services:
462#    ppploop 6671/tcp # loopback ppp daemon
463#
464#  and a line in /etc/inetd.conf:
465#    ppploop stream tcp nowait root /usr/sbin/ppp ppp -direct loop-in
466#
467loop:
468 set timeout 0
469 set log phase chat connect lcp ipcp command
470 set device localhost:ppploop
471 set dial
472 set login
473 set ifaddr 127.0.0.2 127.0.0.3
474 set server /var/tmp/loop "" 0177
475 
476loop-in:
477 set timeout 0
478 set log phase lcp ipcp command
479 allow mode direct
480
481# Example of a VPN.
482#  If you're going to create a tunnel through a public network, your VPN
483#  should be set up something like this:
484#
485#  You should already have set up ssh using ssh-agent & ssh-add.
486#
487sloop:
488 load loop
489 # Passive mode allows ssh plenty of time to establish the connection
490 set openmode passive
491 set device "!ssh whatevermachine /usr/sbin/ppp -direct loop-in"
492
493# Example of non-PPP callback.
494#  If you wish to connect to a server that will dial back *without* using
495#  the ppp callback facility (rfc1570), take advantage of the fact that
496#  ppp doesn't look for carrier 'till `set login' is complete:
497#
498#  Here, we expect the server to say DIALBACK then disconnect after
499#  we've authenticated ourselves.  When this has happened, we wait
500#  60 seconds for a RING.
501#
502dialback:
503 set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" ATZ OK-ATZ-OK \
504           ATDT\\T TIMEOUT 60 CONNECT"
505 set login "TIMEOUT 5 ogin:--ogin: ppp word: ppp TIMEOUT 15 DIALBACK \
506           \"\" NO\\sCARRIER \"\" TIMEOUT 60 RING ATA CONNECT"
507
508# Example of PPP callback.
509#  Alternatively, if the peer is using the PPP callback protocol, we're
510#  happy either with ``auth'' style callback where the server dials us
511#  back based on what we authenticate ourselves with, ``cbcp'' style
512#  callback (invented by Microsoft but not agreed by the IETF) where
513#  we negotiate callback *after* authentication or E.164 callback where
514#  we specify only a phone number.  I would recommend only ``auth'' and/or
515#  ``cbcp'' callback methods.
516#  For ``cbcp'', we insist that we choose ``1234567'' as the number that
517#  the server must call back.
518#
519callback:
520 load pmdemand
521 set callback auth cbcp e.164 1234567
522 set cbcp 1234567
523
524# If we're running a ppp server that wants to only call back microsoft
525# clients on numbers configured in /etc/ppp/ppp.secret (the 5th field):
526#
527callback-server:
528 load server
529 set callback cbcp
530 set cbcp
531 set log +cbcp
532 set redial 3 1
533 set device /dev/cuaa0
534 set speed 115200
535 set dial "TIMEOUT 10 \"\" AT OK-AT-OK ATDT\\T CONNECT"
536
537# Or if we want to allow authenticated clients to specify their own
538# callback number:
539#
540callback-server-client-decides:
541 load callback-server
542 set cbcp *
543
544# Multilink mode is available (rfc1990).
545# To enable multilink capabilities, you must specify a MRRU.  1500 is
546# a reasonable value.  To create new links, use the ``clone'' command
547# to duplicate an existing link.  If you already have more than one
548# link, you must specify which link you wish to run the command on via
549# the ``link'' command.
550#
551# You can now ``dial'' specific links, or even dial all links at the
552# same time.  The `dial' command may also be prefixed with a specific
553# link that should do the dialing.
554#
555mloop:
556 load loop
557 set mode interactive
558 set mrru 1500
559 clone 1 2 3
560 link deflink remove
561 # dial
562 # link 2 dial 
563 # link 3 dial 
564
565mloop-in:
566 set timeout 0
567 set log tun phase
568 allow mode direct
569 set mrru 1500
570
571# User supplied authentication:
572#  It's possible to run ppp in the background while specifying a
573#  program to use to obtain authentication details on demand.
574#  This program would usually be a simple GUI that presents a
575#  prompt to a known user.  The ``chap-auth'' program is supplied
576#  as an example (and requires tcl version 8.0).
577#
578CHAPprompt:
579 load PAPorCHAPpmdemand
580 set authkey !/usr/share/examples/ppp/chap-auth
581
582#  It's possible to do the same sort of thing at the login prompt.
583#  Here, after sending ``brian'' in response to the ``name'' prompt,
584#  we're prompted with ``code:''.  A window is then displayed on the
585#  ``keep:0.0'' display and the typed response is sent to the peer
586#  as the password.  We then expect to see ``MTU'' and ``.'' in the
587#  servers response.
588#
589loginprompt:
590 load pmdemand
591 set authname brian
592 set login "ABORT NO\\sCARRIER TIMEOUT 15 \"\" \"\" name:--name: \\U \
593            code: \"!/usr/share/examples/ppp/login-auth -display keep:0.0 \
594                    AUTHNAME\" MTU \\c ."
595