  #
  # 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.
  DIALPATH=$1
  TELEPHONE=$2      # The telephone number for the connection
  ACCOUNT=$3          # The account name for logon (as in 'George Burns')
  PASSWORD=$4         # 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 to 'ppp-on-dialer'
  export TELEPHONE ACCOUNT PASSWORD
  export NETMASK
  #
  # 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/redialer
   DIALER_SCRIPT=$DIALPATH/bin/ppp-on-dialer
#  DIALER_SCRIPT=/etc/ppp/options
#
  # Initiate the connection
  #
  #
#  /bin/setserial /dev/cua0 spd_normal
#  exec /usr/sbin/pppd  debug noauth /dev/modem 38400 \
#	$LOCAL_IP:$REMOTE_IP \
#          connect $DIALER_SCRIPT
   exec /usr/sbin/pppd  debug user "$ACCOUNT" /dev/modem 38400 \
	$LOCAL_IP:$REMOTE_IP \
		connect $DIALER_SCRIPT -chap 

