summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/ppp/scripts/ppp-on
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-01-13 18:38:22 +0000
committerThierry Vignaud <tv@mageia.org>2012-01-13 18:38:22 +0000
commit21e436f23516b42efcb18ce9d3b742a10ad7d7d1 (patch)
tree4945c6a3444f6ae15a9a1c082643f27364d3ea54 /mdk-stage1/ppp/scripts/ppp-on
parent416724d23b6a1eb192e11a0ed75722c307f0f241 (diff)
downloaddrakx-backup-do-not-use-21e436f23516b42efcb18ce9d3b742a10ad7d7d1.tar
drakx-backup-do-not-use-21e436f23516b42efcb18ce9d3b742a10ad7d7d1.tar.gz
drakx-backup-do-not-use-21e436f23516b42efcb18ce9d3b742a10ad7d7d1.tar.bz2
drakx-backup-do-not-use-21e436f23516b42efcb18ce9d3b742a10ad7d7d1.tar.xz
drakx-backup-do-not-use-21e436f23516b42efcb18ce9d3b742a10ad7d7d1.zip
kill 10 years old snapshot of pppd & pppoe
(now using upstream pppd & pppoe)
Diffstat (limited to 'mdk-stage1/ppp/scripts/ppp-on')
-rwxr-xr-xmdk-stage1/ppp/scripts/ppp-on36
1 files changed, 0 insertions, 36 deletions
diff --git a/mdk-stage1/ppp/scripts/ppp-on b/mdk-stage1/ppp/scripts/ppp-on
deleted file mode 100755
index ab79db471..000000000
--- a/mdk-stage1/ppp/scripts/ppp-on
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-#
-# Script to initiate a ppp connection. This is the first part of the
-# pair of scripts. This is not a secure pair of scripts as the codes
-# are visible with the 'ps' command. However, it is simple.
-#
-# These are the parameters. Change as needed.
-TELEPHONE=555-1212 # The telephone number for the connection
-ACCOUNT=george # The account name for logon (as in 'George Burns')
-PASSWORD=gracie # The password for this account (and 'Gracie Allen')
-LOCAL_IP=0.0.0.0 # Local IP address if known. Dynamic = 0.0.0.0
-REMOTE_IP=0.0.0.0 # Remote IP address if desired. Normally 0.0.0.0
-NETMASK=255.255.255.0 # The proper netmask if needed
-#
-# Export them so that they will be available at 'ppp-on-dialer' time.
-export TELEPHONE ACCOUNT PASSWORD
-#
-# This is the location of the script which dials the phone and logs
-# in. Please use the absolute file name as the $PATH variable is not
-# used on the connect option. (To do so on a 'root' account would be
-# a security hole so don't ask.)
-#
-DIALER_SCRIPT=/etc/ppp/ppp-on-dialer
-#
-# Initiate the connection
-#
-# I put most of the common options on this command. Please, don't
-# forget the 'lock' option or some programs such as mgetty will not
-# work. The asyncmap and escape will permit the PPP link to work with
-# a telnet or rlogin connection. You are welcome to make any changes
-# as desired. Don't use the 'defaultroute' option if you currently
-# have a default route to an ethernet gateway.
-#
-exec /usr/sbin/pppd debug lock modem crtscts /dev/ttyS0 38400 \
- asyncmap 20A0000 escape FF kdebug 0 $LOCAL_IP:$REMOTE_IP \
- noipdefault netmask $NETMASK defaultroute connect $DIALER_SCRIPT