freebsd-dev/etc/ppp/ppp.linkup.sample

56 lines
1.6 KiB
Plaintext
Raw Normal View History

1995-01-31 06:24:33 +00:00
#########################################################################
#
# Example of ppp.linkup file
#
#
# This file is checked when PPP establishes a connection.
# PPP searches the labels in this file as follows:
1995-01-31 06:24:33 +00:00
#
# 1) The label that matches the IP number assigned to our side.
1995-01-31 06:24:33 +00:00
#
# 2) The label specified on the command line to ppp.
1995-01-31 06:24:33 +00:00
#
# 3) If no label has been found, use MYADDR if it exists.
1995-01-31 06:24:33 +00:00
#
# $Id: ppp.linkup.sample,v 1.8 1997/08/25 01:07:08 brian Exp $
1995-01-31 06:24:33 +00:00
#
#########################################################################
1995-01-31 06:24:33 +00:00
# If we've got 192.244.176.32 as our address, then regard peer as a gateway
# to 192.244.176.0 network.
#
192.244.176.32:
add 192.244.176.0 0 HISADDR
# If we are invoked with an argument ``iij-demand'', then delete all
# existing route entries and add the peer as the default gateway.
1995-01-31 06:24:33 +00:00
#
iij-demand:
delete ALL
add 0 0 HISADDR
1996-01-31 15:03:18 +00:00
# Otherwise, simply add peer as default gateway.
1995-01-31 06:24:33 +00:00
#
MYADDR:
delete 0
1995-01-31 06:24:33 +00:00
add 0 0 HISADDR
# If we are invoked with an argument ``pmdemand'', then
# delete all existing (wrong) routing entries and add the peer IP
# as our default gateway.
# This is vital if you don't already know either sides IP number.
#
# We create a loopback route to ourselves so that we can "ping"
# our side of the connection
#
# We also want to execute a script on startup. This script can do
# nice things such as kick off "sendmail -q", "popclient my.isp" and
# "slurp -d news". It can be passed MYADDR, HISADDR and INTERFACE
# too - useful for informing a DNS.
#
pmdemand:
delete ALL
add 0 0 HISADDR
add MYADDR 255.255.255.255 127.0.0.1
!bg /etc/ppp/ppp.etherup.pmdemand