Browse Source

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>
lilik-openwrt-22.03
Florian Eckert 6 years ago
committed by Yousong Zhou
parent
commit
1eae1ae3e7
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      net/mwan3/files/usr/sbin/mwan3track

+ 6
- 0
net/mwan3/files/usr/sbin/mwan3track 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}


Loading…
Cancel
Save