#!/bin/bash
#
# dRock example of /etc/ppp/ip-down
# This file should not be modified -- make local changes to
# /etc/ppp/ip-down.local instead

IFACE=$1
DEVICE=$2
SPEED=$3
MY-IP=$4
R-IP=$5
LOGDEVICE=$6
REALDEVICE=$1

if [ -x /etc/ppp/ip-down.local ]; then
 /etc/ppp/ip-down.local "$@"
fi

#/sbin/route del default $1

exit 0
