net/mwan3: add logging on ping success and fail

Add logging information during state change on ping success or fail

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
Florian Eckert 2018-03-21 14:13:57 +01:00 committed by Yousong Zhou
parent b392ae5417
commit 1eae1ae3e7
1 changed files with 6 additions and 0 deletions

View File

@ -117,9 +117,15 @@ main() {
if [ $? -eq 0 ]; then
let host_up_count++
echo "up" > /var/run/mwan3track/$1/TRACK_${track_ip}
if [ $score -le $up ]; then
$LOG info "Check ($track_method) success for target \"$track_ip\" on interface $1 ($2)"
fi
else
let lost++
echo "down" > /var/run/mwan3track/$1/TRACK_${track_ip}
if [ $score -gt $up ]; then
$LOG info "Check ($track_method) failed for target \"$track_ip\" on interface $1 ($2)"
fi
fi
else
echo "skipped" > /var/run/mwan3track/$1/TRACK_${track_ip}