blob: c93c7cabec93ff4534f872bc385f5a30f1476d62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
tty=$2
ipparam=$6
# Only applicable for Wireless Modems (WWAN)
if [ -z "$(echo $tty | egrep "tty(USB|ACM)")" ]; then
exit 0
fi
# device name and metric are received using ipparam
device=`echo "$ipparam"|awk '{ print $1 }'`
metric=`echo "$ipparam"|awk '{ print $2 }'`
vtysh -c "conf t" -c "no ip route 0.0.0.0/0 ${device} ${metric}"
DIALER_PID=$(cat /var/run/${device}.pid)
logger -t pppd[$DIALER_PID] "removed default route via $device metric $metric"
|