#!/bin/sh ######################################################################## # ppp-on: # # Script to initiate a ppp connection. This is the first part of # a 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. BAUDRATE=115200 # Serial port speed HOST=ame2.math.arizona.edu # Host to connect to from CCIT ACCOUNT='george' # The account name for logon (as in 'George Burns') PASSWORD='gracie' # The password for this account (and 'Gracie Allen') PROMPT='$' # Part of your shell prompt MTU=296 # Maximum Transmission Unit -- tune for max throughput MRU=296 # Maximum Receive Unit -- tune for max throughput # # Other parameters -- shouldn't need to change MODEMDEV=/dev/modem # Modem device TELEPHONE=6219600 # The telephone number for the connection NETMASK=255.255.255.0 # The proper netmask if needed # # Export them so that they will be available at 'ppp-on-dialer' time. export BAUDRATE TELEPHONE HOST PROMPT 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. 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 \ $MODEMDEV \ $BAUDRATE \ asyncmap 0 \ connect $DIALER_SCRIPT \ crtscts \ defaultroute \ lock \ modem \ mru $MRU \ mtu $MTU \ netmask $NETMASK \ noipdefault # EOF ppp-on