netifd: add two simple scripts for querying interface/device status
authorFelix Fietkau <nbd@openwrt.org>
Sun, 23 Oct 2011 17:22:14 +0000 (17:22 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 23 Oct 2011 17:22:14 +0000 (17:22 +0000)
SVN-Revision: 28545

package/netifd/files/sbin/devstatus [new file with mode: 0755]
package/netifd/files/sbin/ifstatus [new file with mode: 0755]

diff --git a/package/netifd/files/sbin/devstatus b/package/netifd/files/sbin/devstatus
new file mode 100755 (executable)
index 0000000..3c35b26
--- /dev/null
@@ -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 (executable)
index 0000000..511cc1d
--- /dev/null
@@ -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