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

IFACE=$1
DEVICE=$2
SPEED=$3
MYIP=$4
RIP=$5
LOGDEVICE=$6
REALDEVICE=$1

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

exit 0
