summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorPatrick Grimm <patrick@lunatiki.de>2013-08-17 18:33:07 +0000
committerPatrick Grimm <patrick@lunatiki.de>2013-08-17 18:33:07 +0000
commitdb26a0c7d0dd8f783aaeb0a5867ef978c6c6a1b2 (patch)
tree8496f990016d4b18d8f27ac5dad609ed02d95f7c
parentf496c67d25be1450b3c8bf1a9cac8a66b86cb55c (diff)
freifunk-gwcheck: make it more readeable and make compat with smaler ip version without short forms
-rwxr-xr-xcontrib/package/freifunk-gwcheck/files/usr/sbin/ff_olsr_test_gw.sh22
1 files changed, 11 insertions, 11 deletions
diff --git a/contrib/package/freifunk-gwcheck/files/usr/sbin/ff_olsr_test_gw.sh b/contrib/package/freifunk-gwcheck/files/usr/sbin/ff_olsr_test_gw.sh
index a85ead3ce..3965ea158 100755
--- a/contrib/package/freifunk-gwcheck/files/usr/sbin/ff_olsr_test_gw.sh
+++ b/contrib/package/freifunk-gwcheck/files/usr/sbin/ff_olsr_test_gw.sh
@@ -23,8 +23,8 @@ if [ ${#pid} -gt 5 ]; then
fi
# exit if there is no defaultroute with metric=0 in main or gw-check table.
-defroutemain="$(ip r s |grep default |grep -v metric)"
-defroutegwcheck="$(ip r s t gw-check |grep default |grep -v metric)"
+defroutemain="$(ip route show |grep default |grep -v metric)"
+defroutegwcheck="$(ip route show table gw-check |grep default |grep -v metric)"
if [ -z "$defroutegwcheck" -a -z "$defroutemain" ]; then
exit 1
fi
@@ -84,37 +84,37 @@ iw=$(check_internet)
if [ "$iw" == 0 ]; then
# Internet available again, restore default route and remove ip rules
if [ -n "$defroutegwcheck" ]; then
- ip r a $defroutegwcheck
- ip r d $defroutegwcheck t gw-check
+ ip route add $defroutegwcheck
+ ip route del $defroutegwcheck table gw-check
for host in $testserver; do
ips="$(resolve $host)"
for ip in $ips; do
- [ -n "$(ip ru s | grep "to $ip lookup gw-check")" ] && ip rule del to $ip table gw-check
+ [ -n "$(ip rule show | grep "to $ip lookup gw-check")" ] && ip rule del to $ip table gw-check
done
done
get_dnsservers
for d in $dns; do
- [ -n "$(ip ru s | grep "to $d lookup gw-check")" ] && ip rule del to $d table gw-check
+ [ -n "$(ip rule show | grep "to $d lookup gw-check")" ] && ip rule del to $d table gw-check
done
logger -p err -t gw-check "Internet is available again, default route restored ( $defroutegwcheck)"
fi
else
# Check failed. Move default route to table gw-check and setup ip rules.
- if [ -z "$(ip ru s | grep gw-check)" -a -n "$defroutemain" ]; then
- ip r a $defroutemain table gw-check
- ip r d $defroutemain
+ if [ -z "$(ip rule show | grep gw-check)" -a -n "$defroutemain" ]; then
+ ip route add $defroutemain table gw-check
+ ip route del $defroutemain
logger -p err -t gw-check "Internet is not available, default route deactivated ( $defroutemain)"
fi
for host in $testserver; do
ips="$(resolve $host)"
for ip in $ips; do
- [ -z "$(ip ru s | grep "to $ip lookup gw-check")" ] && ip rule add to $ip table gw-check
+ [ -z "$(ip rule show | grep "to $ip lookup gw-check")" ] && ip rule add to $ip table gw-check
done
done
get_dnsservers
for d in $dns; do
- [ -z "$(ip ru s | grep "to $d lookup gw-check")" ] && ip rule add to $d table gw-check
+ [ -z "$(ip rule show | grep "to $d lookup gw-check")" ] && ip rule add to $d table gw-check
done
logger -p err -t gw-check "Check your internet connection!"
fi