netifd: add two simple scripts for querying interface/device status
SVN-Revision: 28545
This commit is contained in:
parent
4112fbaafb
commit
01f9388cde
2 changed files with 25 additions and 0 deletions
12
package/netifd/files/sbin/devstatus
Executable file
12
package/netifd/files/sbin/devstatus
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/sh
|
||||
. /usr/share/libubox/jshn.sh
|
||||
DEVICE="$1"
|
||||
|
||||
[ -n "$DEVICE" ] || {
|
||||
echo "Usage: $0 <device>"
|
||||
exit 1
|
||||
}
|
||||
|
||||
json_init
|
||||
json_add_string name "$DEVICE"
|
||||
ubus call network.device status "$(json_dump)"
|
13
package/netifd/files/sbin/ifstatus
Executable file
13
package/netifd/files/sbin/ifstatus
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/bin/sh
|
||||
INTERFACE="$1"
|
||||
|
||||
[ -n "$INTERFACE" ] || {
|
||||
echo "Usage: $0 <interface>"
|
||||
exit 1
|
||||
}
|
||||
|
||||
ubus -S list "network.interface.$INTERFACE" >/dev/null || {
|
||||
echo "Interface $INTERFACE not found"
|
||||
exit 1
|
||||
}
|
||||
ubus call network.interface."$INTERFACE" status
|
Loading…
Reference in a new issue