diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-12 13:17:13 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-13 09:36:35 +0200 |
commit | c2a1c071e7d0a9ca754d7f5016eed7db188b3d1a (patch) | |
tree | 7852a72bb7e7412bcec63371dc8461f1cc6556ed /data/templates/wwan/ip-down.script.tmpl | |
parent | c88d8999873db638aa2c05d479502cedd1afd142 (diff) | |
download | vyos-1x-c2a1c071e7d0a9ca754d7f5016eed7db188b3d1a.tar.gz vyos-1x-c2a1c071e7d0a9ca754d7f5016eed7db188b3d1a.zip |
wwan: T3620: rename "wirelessmodem wlm" interfaces to new wwan interface tree
Diffstat (limited to 'data/templates/wwan/ip-down.script.tmpl')
-rw-r--r-- | data/templates/wwan/ip-down.script.tmpl | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/data/templates/wwan/ip-down.script.tmpl b/data/templates/wwan/ip-down.script.tmpl deleted file mode 100644 index 9dc15ea99..000000000 --- a/data/templates/wwan/ip-down.script.tmpl +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -# Script parameters will be like: -# wlm0 /dev/serial/by-bus/usb0b1.3p1.3 115200 10.100.118.91 10.64.64.64 wlm0 - -# Only applicable for Wireless Modems (WWAN) -if [ -z $(echo $2 | egrep "(ttyS[0-9]+|usb[0-9]+b.*)$") ]; then - exit 0 -fi - -# Determine if we are running inside a VRF or not, required for proper routing table -# NOTE: the down script can not be properly templated as we need the VRF name, -# which is not present on deletion, thus we read it from the operating system. -if [ -d /sys/class/net/{{ ifname }}/upper_* ]; then - # Determine upper (VRF) interface - VRF=$(basename $(ls -d /sys/class/net/{{ ifname }}/upper_*)) - # Remove upper_ prefix from result string - VRF_NAME=${VRF#"upper_"} - # Remove default route from VRF routing table - vtysh -c "conf t" -c "vrf ${VRF_NAME}" -c "no ip route 0.0.0.0/0 {{ ifname }}" -else - # Remove default route from GRT (global routing table) - vtysh -c "conf t" -c "no ip route 0.0.0.0/0 {{ ifname }}" -fi - -DIALER_PID=$(cat /var/run/{{ ifname }}.pid) -logger -t pppd[$DIALER_PID] "removed default route via {{ ifname }} metric {{ backup.distance }}" |