#!/bin/sh
# ip-up interface-name tty-device speed local-IP-address remote-IP-address
#
# This script is called by the PPP daemon once the IP link is up.
# Its only function is to create the file /etc/ppp/linkinfo.
# Just for fun, we put some information into it.
echo "PPP" $1 "is up on" $2 at $3 "baud. Local IP" $4 "- remote IP" $5 > \
 /etc/ppp/linkinfo
