summaryrefslogtreecommitdiff
path: root/net/ifconfig.sh.Linux.in
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2011-12-12 18:48:11 -0800
committerRobin H. Johnson <robbat2@gentoo.org>2011-12-12 19:20:39 -0800
commit2569eb644e6e8e010a44a693e7dfa86e73c0d750 (patch)
tree41d43ad6a9f2ae0c724339d3969967a5340143f5 /net/ifconfig.sh.Linux.in
parentdd45506a40f3332cef96cc8ca7e258561a200ec0 (diff)
downloadopenrc-2569eb644e6e8e010a44a693e7dfa86e73c0d750.tar.gz
openrc-2569eb644e6e8e010a44a693e7dfa86e73c0d750.tar.bz2
openrc-2569eb644e6e8e010a44a693e7dfa86e73c0d750.tar.xz
net/ifconfig, net/iproute2: admin/oper state check functions
Provide consistent methods using iproute2/ifconfig to check operational and administrative up/down state of interfaces. This is not the same as ethtool's "Link detected" field, which is the state of the layer 2 medium. TODO: How to check operational state in BSD? Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'net/ifconfig.sh.Linux.in')
-rw-r--r--net/ifconfig.sh.Linux.in23
1 files changed, 23 insertions, 0 deletions
diff --git a/net/ifconfig.sh.Linux.in b/net/ifconfig.sh.Linux.in
index dcbd628..1ac0dd5 100644
--- a/net/ifconfig.sh.Linux.in
+++ b/net/ifconfig.sh.Linux.in
@@ -297,3 +297,26 @@ ifconfig_post_stop()
iptunnel del "${IFACE}"
eend $?
}
+
+# Is the interface administratively/operationally up?
+# The 'UP' status in ifconfig/iproute2 is the administrative status
+# Operational state is available in iproute2 output as 'state UP', or the
+# operstate sysfs variable.
+# 0: up
+# 1: down
+# 2: invalid arguments
+is_admin_up()
+{
+ local iface="$1"
+ [ -z "$iface" ] && iface="$IFACE"
+ ifconfig "${iface}" | \
+ sed -n '1,1{ /flags=.*[<,]UP[,>]/{ q 0 }}; q 1; '
+}
+
+is_oper_up()
+{
+ local iface="$1"
+ [ -z "$iface" ] && iface="$IFACE"
+ read state </sys/class/net/"${iface}"/operstate
+ [ "x$state" = "up" ]
+}