summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-03-28 10:25:28 +0100
committerDaniel Friesel <derf@derf.homelinux.org>2009-03-28 10:25:28 +0100
commitf08a9b032caf23e9e40a5a8efd52eea2140aaaeb (patch)
tree4ae8f40666f4fe2b3c1d6a5ef7d95beb67524877
parent8fbd72a1f8ed2f6d5034e7a469291995dfe1f7c1 (diff)
Added check_ping function
-rw-r--r--etc/functions/check_ping20
1 files changed, 20 insertions, 0 deletions
diff --git a/etc/functions/check_ping b/etc/functions/check_ping
new file mode 100644
index 0000000..80ea8ea
--- /dev/null
+++ b/etc/functions/check_ping
@@ -0,0 +1,20 @@
+## vim:ft=zsh
+## check_ping -return true if a host responds to ICMP echo requests
+typeset -i ipv6 ret
+
+while [[ $1 == -* ]] {
+ case $1 in
+ -6) ipv6=1 ;;
+ esac
+ shift
+}
+
+typeset dst=$1
+shift
+
+if ((ipv6)) {
+ ping6 -c 1 $dst &> /dev/null
+} else {
+ ping -c 1 $dst &> /dev/null
+}
+return