home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # -*- Fundamental -*-
- #
- # args: interface-name tty-device speed local-IP remote-IP
-
- PATH=/usr/ucb:/bin:/usr/bin:/etc:/usr/etc:/usr/local/bin; export PATH
-
- #
- # Remove the route to localhost that we created in ip-up
- #
- /usr/etc/route delete $4 127.0.0.1
-
- #
- # Stop active clients. They typically doesn't behave well
- # when server contact is lost.
- #
-
- if [ $2 = /dev/cufa ]; then
- #kill `ps -ax | egrep "xntpd" | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/`
- kill `ps -ax | egrep "PopOver" | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/`
- kill `ps -ax | egrep "PPPstats" | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/`
- fi
-
- #
- # Signal PPPMeter.app if using that
- #
- #/LocalApps/PPPMeter.app/pppstatus 0
-
-
-
-