diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-10-23 17:22:14 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-10-23 17:22:14 +0000 |
commit | def14a0f4574c0cdc459815023944e6b73873b6f (patch) | |
tree | d5fd643b7d6d66bea081047468143d00eb84e442 | |
parent | 9891a9a835b9b5ca27235120c07ca42bb8ecd97c (diff) |
netifd: add two simple scripts for querying interface/device status
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28545 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | package/netifd/files/sbin/devstatus | 12 | ||||
-rwxr-xr-x | package/netifd/files/sbin/ifstatus | 13 |
2 files changed, 25 insertions, 0 deletions
diff --git a/package/netifd/files/sbin/devstatus b/package/netifd/files/sbin/devstatus new file mode 100755 index 000000000..3c35b26a4 --- /dev/null +++ b/package/netifd/files/sbin/devstatus @@ -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)" diff --git a/package/netifd/files/sbin/ifstatus b/package/netifd/files/sbin/ifstatus new file mode 100755 index 000000000..511cc1d8d --- /dev/null +++ b/package/netifd/files/sbin/ifstatus @@ -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 |