home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2 / Openstep-4.2-Intel-User.iso / usr / template / client / etc / ppp / Examples / ip-down.example < prev    next >
Text File  |  1995-07-24  |  712b  |  31 lines

  1. #!/bin/sh
  2. # -*- Fundamental -*-
  3. #
  4. # args: interface-name tty-device speed local-IP remote-IP
  5.  
  6. PATH=/usr/ucb:/bin:/usr/bin:/etc:/usr/etc:/usr/local/bin; export PATH
  7.  
  8. #
  9. # Remove the route to localhost that we created in ip-up
  10. #
  11. /usr/etc/route delete $4 127.0.0.1
  12.  
  13. #
  14. # Stop active clients.  They typically doesn't behave well
  15. # when server contact is lost.
  16. #
  17.  
  18. if [ $2 = /dev/cufa ]; then
  19. #kill `ps -ax | egrep "xntpd" | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/`
  20. kill `ps -ax | egrep "PopOver" | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/`
  21. kill `ps -ax | egrep "PPPstats" | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/`
  22. fi
  23.  
  24. #
  25. # Signal PPPMeter.app if using that
  26. #
  27. #/LocalApps/PPPMeter.app/pppstatus 0
  28.  
  29.  
  30.  
  31.