1995-01-31 06:24:33 +00:00
|
|
|
#################################################################
|
|
|
|
#
|
|
|
|
# PPP Sample Configuration File
|
|
|
|
#
|
|
|
|
# Written by Toshiharu OHNO
|
|
|
|
#
|
1997-05-12 14:07:14 +00:00
|
|
|
# $Id: ppp.conf.sample,v 1.13 1997/05/08 01:45:48 brian Exp $
|
1995-01-31 06:24:33 +00:00
|
|
|
#
|
|
|
|
#################################################################
|
1997-02-23 14:04:23 +00:00
|
|
|
|
|
|
|
# Default setup. Always executed when PPP is invoked.
|
1995-01-31 06:24:33 +00:00
|
|
|
#
|
|
|
|
default:
|
1996-03-08 09:39:45 +00:00
|
|
|
set device /dev/cuaa1
|
1995-01-31 06:24:33 +00:00
|
|
|
set speed 38400
|
|
|
|
disable lqr
|
|
|
|
deny lqr
|
1995-04-22 17:14:21 +00:00
|
|
|
set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" ATE1Q0 OK-AT-OK \\dATDT\\T TIMEOUT 40 CONNECT"
|
1997-02-23 14:04:23 +00:00
|
|
|
|
1995-01-31 06:24:33 +00:00
|
|
|
# Example with login script
|
|
|
|
# o From PPP prompt,
|
|
|
|
# ppp> dial simplesite
|
1997-02-23 14:04:23 +00:00
|
|
|
# automatically dials and performs the login script.
|
1995-01-31 06:24:33 +00:00
|
|
|
#
|
|
|
|
# ppp> load simplesite
|
1997-02-23 14:04:23 +00:00
|
|
|
# loads and executes commands, but doesn't dial.
|
1995-01-31 06:24:33 +00:00
|
|
|
#
|
|
|
|
# o From shell, invoke as
|
|
|
|
# % ppp simplesite
|
1997-02-23 14:04:23 +00:00
|
|
|
# to load commands associated with the 'simplesite' label. Use,
|
1995-01-31 06:24:33 +00:00
|
|
|
# ppp> dial
|
|
|
|
# to establish the connection.
|
|
|
|
#
|
|
|
|
simplesite:
|
|
|
|
set phone 12345678
|
1996-11-11 17:27:25 +00:00
|
|
|
set login "TIMEOUT 5 login:-\\r-login: ppp word: ppp ocol: ppp"
|
1995-01-31 06:24:33 +00:00
|
|
|
set timeout 120
|
1997-02-23 14:04:23 +00:00
|
|
|
|
1996-03-08 09:39:45 +00:00
|
|
|
# Multi-phone example
|
|
|
|
#
|
|
|
|
multiphone:
|
|
|
|
set phone 12345678:12345679:12345670:12345671
|
1996-11-11 17:27:25 +00:00
|
|
|
set login "TIMEOUT 5 login:-\\r-login: ppp word: ppp ocol: ppp"
|
1997-02-23 14:04:23 +00:00
|
|
|
|
|
|
|
# If the peer requires to use CHAP, don't forget to supply authname
|
|
|
|
# and authkey.
|
1996-03-08 09:39:45 +00:00
|
|
|
#
|
1997-02-23 14:04:23 +00:00
|
|
|
# If you'd like to use CHAP to authenticate with the peer, comment out
|
|
|
|
# the line ``enable chap'' below. You also need to prepare /etc/ppp.secret.
|
1995-01-31 06:24:33 +00:00
|
|
|
#
|
1997-02-23 14:04:23 +00:00
|
|
|
# If the remote system sends its system name within the CHAP packet and it
|
|
|
|
# is found in /etc/ppp.secret, then the secret key is taken from that file
|
|
|
|
# and value of authkey specified here is ignored.
|
1995-01-31 06:24:33 +00:00
|
|
|
#
|
|
|
|
chapsite:
|
|
|
|
set phone 12345678
|
|
|
|
set login "TIMEOUT 5 login:-\\r-login: ppp word: ppp"
|
|
|
|
deny pap
|
|
|
|
accept chap
|
|
|
|
# enable chap
|
|
|
|
set authname MySystemName
|
|
|
|
set authkey OurSecretKey
|
1997-02-23 14:04:23 +00:00
|
|
|
|
|
|
|
# Speaking PAP is like speaking CHAP
|
1995-01-31 06:24:33 +00:00
|
|
|
#
|
|
|
|
papsite:
|
|
|
|
set phone 12345678
|
|
|
|
set login "TIMEOUT 5 login:-\\r-login: ppp word: ppp"
|
|
|
|
deny chap
|
|
|
|
accept pap
|
|
|
|
# enable pap
|
|
|
|
set authname MyUserName
|
|
|
|
set authkey MyPassword
|
1997-02-23 14:04:23 +00:00
|
|
|
|
1995-01-31 06:24:33 +00:00
|
|
|
# On demand dialup example
|
|
|
|
# Here, we assume that local side use 192.244.185.226 and
|
|
|
|
# remote side use 192.244.176.44 as their IP address.
|
|
|
|
# You must supply -auto option to invoke PPP.
|
|
|
|
#
|
1997-02-23 14:04:23 +00:00
|
|
|
# $ ppp -auto ondemand
|
1995-01-31 06:24:33 +00:00
|
|
|
#
|
|
|
|
ondemand:
|
|
|
|
set phone 1234567
|
|
|
|
set login "TIMEOUT 5 login:-\\r-login: ppp word: ppp"
|
|
|
|
set timeout 120
|
1996-03-08 09:39:45 +00:00
|
|
|
set ifaddr 192.244.185.226 192.244.176.44 255.255.255.0
|
|
|
|
add 0 0 192.244.176.44
|
1997-02-23 14:04:23 +00:00
|
|
|
|
1995-01-31 06:24:33 +00:00
|
|
|
# Another on demand example
|
1997-02-23 14:04:23 +00:00
|
|
|
# If the peer assigns us an arbitrary IP and we can't predict what their
|
|
|
|
# IP will be either, take a wild guess at an some IPs that you can't
|
|
|
|
# currently route to. Ensure that the "delete" and "add" lines are also
|
|
|
|
# present in ppp.linkup so that when we connect, things will be put straight.
|
1997-05-08 01:45:59 +00:00
|
|
|
# Note that it is illegal to use HISADDR here - HISADDR is only available
|
|
|
|
# in ppp.linkup (after the value has been established).
|
1997-02-23 14:04:23 +00:00
|
|
|
#
|
|
|
|
# The /0 bit says that we insist on 0 bits of the specified IP actually
|
|
|
|
# being correct, therefore, the other side can assign any IP numbers.
|
|
|
|
#
|
|
|
|
# We also set openmode active - this makes us initiate ppp negotiation.
|
|
|
|
# The default is to wait for the server to start talking.
|
1995-01-31 06:24:33 +00:00
|
|
|
#
|
1997-03-16 00:59:08 +00:00
|
|
|
pmdemand:
|
1995-01-31 06:24:33 +00:00
|
|
|
set phone 1234567
|
|
|
|
set login "TIMEOUT 5 login:-\\r-login: ppp word: ppp"
|
|
|
|
set timeout 120
|
1997-05-12 14:07:14 +00:00
|
|
|
set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0
|
1997-02-23 14:04:23 +00:00
|
|
|
delete ALL
|
1997-05-12 14:07:14 +00:00
|
|
|
add 0 0 10.0.0.2
|
1997-02-23 14:04:23 +00:00
|
|
|
set openmode active
|
|
|
|
|
1997-03-13 21:24:18 +00:00
|
|
|
# Examples to connect using a null-modem cable from one machine to another.
|
1997-05-08 00:55:42 +00:00
|
|
|
# The important thing here is to allow the lqr packets on both sides.
|
|
|
|
# Without them enabled, we can't tell if the line's dropped - there
|
|
|
|
# should always be carrier on a direct connection.
|
1997-03-13 21:24:18 +00:00
|
|
|
# Here, the server sends lqr's every 10 seconds and quits if three in a
|
|
|
|
# row fail.
|
|
|
|
#
|
|
|
|
# Make sure you don't have "deny lqr" in your default: on the client !
|
|
|
|
#
|
|
|
|
direct-client:
|
|
|
|
set dial ""
|
|
|
|
set line /dev/cuaa0
|
|
|
|
set sp 115200
|
|
|
|
set timeout 900
|
1997-05-08 00:55:42 +00:00
|
|
|
set debug Phase Chat LQM
|
1997-03-13 21:24:18 +00:00
|
|
|
set login "TIMEOUT 5 -\\r-login:-\\r-login: ppp word: ppp HELLO"
|
|
|
|
set ifaddr 10.0.4.2 10.0.4.1
|
1997-05-08 00:55:42 +00:00
|
|
|
add 10.0.4.2 255.255.255.255 127.0.0.1
|
1997-03-13 21:24:18 +00:00
|
|
|
|
|
|
|
direct-server:
|
|
|
|
set timeout 900 10 3
|
|
|
|
set debug Phase LQM
|
|
|
|
set ifaddr 10.0.4.1 10.0.4.2
|
1997-05-08 00:55:42 +00:00
|
|
|
add 10.0.4.1 255.255.255.255 127.0.0.1
|
1997-03-13 21:24:18 +00:00
|
|
|
|
1995-01-31 06:24:33 +00:00
|
|
|
# Example to validate incoming user with CHAP
|
1997-02-23 14:04:23 +00:00
|
|
|
# Invoke as ``ppp -direct users'' from login script. User's system name
|
1995-01-31 06:24:33 +00:00
|
|
|
# and secret-key must be registered into /etc/ppp.secret.
|
|
|
|
# IP address assigned to peer is registered in ppp.secret, then that
|
|
|
|
# value is used and value in ``ifaddr'' command has no effect.
|
|
|
|
#
|
|
|
|
users:
|
|
|
|
disable pap
|
|
|
|
enable chap
|
1995-02-26 12:18:08 +00:00
|
|
|
enable proxy
|
1995-01-31 06:24:33 +00:00
|
|
|
set authname ppp-server
|
|
|
|
set ifaddr 192.244.176.44 292.244.184.31
|
1997-02-23 14:04:23 +00:00
|
|
|
|
1995-01-31 06:24:33 +00:00
|
|
|
# Example of Callback Request
|
|
|
|
#
|
|
|
|
# Here, we assume that peer will hangup the line and initiates a callback
|
1996-01-31 15:03:18 +00:00
|
|
|
# after successful authentication. We simply use chat script capability
|
|
|
|
# and wait for a "NO CARRIER" response from our modem.
|
1995-01-31 06:24:33 +00:00
|
|
|
#
|
1997-02-23 14:04:23 +00:00
|
|
|
# $ ppp callback
|
1995-01-31 06:24:33 +00:00
|
|
|
#
|
|
|
|
callback:
|
|
|
|
set phone 0312345678
|
|
|
|
set login "ABORT NO\\sCARRIER TIMEOUT 5 login:-\\r-login: MyName word: MySecret TIMEOUT 20 DUMMY"
|
|
|
|
set debug phase chat
|
|
|
|
dial
|
|
|
|
quit
|
1997-02-23 14:04:23 +00:00
|
|
|
|
1995-01-31 06:24:33 +00:00
|
|
|
# Example for PPP/TELNET and PPP/TCP. Read doc for further details
|
|
|
|
#
|
|
|
|
ppptelnet:
|
|
|
|
set escape 0xff
|
1997-02-23 14:04:23 +00:00
|
|
|
|
1995-01-31 06:24:33 +00:00
|
|
|
ppptcp:
|
|
|
|
set device 192.244.191.33:2400
|