
19 Mar
2019
19 Mar
'19
2:40 p.m.
On Tue, Mar 19, 2019 at 3:01 PM Simone Tiraboschi <stirabos@redhat.com> wrote:
No failed pings to be seen. So how that ping.py decides that 4 out of 5 failed??
It's just calling the system ping utility as an external process checking the exit code. I don't see any issue with that approach.
I was looking at the same thing but I can also see that packets reach the host NIC. I just read the times again and it seems that first ping was delayed (took over 2 secs). So is that 4 out of 5 number of succeeded pings? Because I read it the other way.
Can you please try executing:
while true; do ping -c 1 -W 2 10.168.8.1 > /dev/null; echo $?; sleep 0.5; done
I'll try this tomorrow during the expected failure time. Thanks, Juhani