You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
case "$0" in
|
|
|
|
*ifdown) modes=down;;
|
|
|
|
*ifup) modes="down up";;
|
|
|
|
*) echo "Invalid command: $0";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if_call() {
|
|
|
|
local interface="$1"
|
|
|
|
for mode in $modes; do
|
|
|
|
ubus call $interface $mode
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
[[ "$1" == "-a" ]] && {
|
|
|
|
[ "$modes" = "down up" ] && ubus call network reload
|
|
|
|
for interface in `ubus -S list 'network.interface.*'`; do
|
|
|
|
if_call "$interface"
|
|
|
|
done
|
|
|
|
exit
|
|
|
|
}
|
|
|
|
|
|
|
|
ubus -S list "network.interface.$1" > /dev/null || {
|
|
|
|
echo "Interface $1 not found"
|
|
|
|
exit
|
|
|
|
}
|
|
|
|
if_call "network.interface.$1"
|