Post by Graham JThis continues a thread I started a while ago, but is a new question. I
suspect the problem is impulsive interference occurring overnight.
Zen want me to use the FRITZ!Box 7530, but this doesn't work with F8Lure
because it doesn't reliably respond to pings from the internet. So it's
no good for monitoring the connection.
According to your previous thread, that was because Fritzboxen only reply to
one ping at a time. F8Lure pings from two separate IPs (their own and one
at AAISP) so the router may drop packets if they coincide.
Have you tried looking for another ping monitoring service that only pings
from one IP? That would seem to work around the router limitation. There
seem to be a lot of services out there. Perhaps there's a basic version
that only pings from a single IP (many of them have 'pricing plans' with all
sorts of fancy features - perhaps one limits to a single source to encourage
people to pay for fancier features)?
You could also I suppose hack up something you run yourself. eg (excuse my
terrible awk):
$ ping example.com
PING example.com (93.184.215.14) 56(84) bytes of data.
64 bytes from 93.184.215.14: icmp_seq=1 ttl=54 time=84.7 ms
64 bytes from 93.184.215.14: icmp_seq=2 ttl=54 time=84.6 ms
64 bytes from 93.184.215.14: icmp_seq=3 ttl=54 time=85.3 ms
64 bytes from 93.184.215.14: icmp_seq=4 ttl=54 time=83.7 ms
$ ping example.com | awk '{print $5,$7}'
bytes data.
icmp_seq=1 time=86.7
icmp_seq=2 time=85.7
icmp_seq=3 time=85.0
icmp_seq=4 time=86.0
$ ping example.com | awk '{equ=index($5,"=");$5=substr($5,equ+1);equ=index($7,"=");$7=substr($7,equ+1);print $5 "," $7}'
1,86.4
2,86.2
3,84.1
4,86.2
5,84.5
6,84.8
7,85.6
8,85.6
9,83.8
10,84.7
11,86.0
12,83.7
13,85.6
which gives you CSV you can spreadsheet. Not pretty but maybe it does the
job?.
Although it may not help if your router is also getting pinged by bad actors
on the internet, since it may decide to reject some of your pings. However,
since you're rolling your own, you can switch to other tools like tcping
(Linux) or PsPing (Windows) and ping a (forwarded) TCP port instead of using
ICMP pings.
Depends how deep down this rabbit hole you want to go, I suppose.
Post by Graham JHowever the FRITZ!Box 7530 has a setting to "increase resistance to
impulsive interference" - or words to that effect. Does anybody know
what this actually does, please?
"Impulse Noise Protection (INP) Impulse noise protection: The higher the
value displayed here, the lower the impulse noise."
seems to be related to G.INP:
https://kitz.co.uk/adsl/retransmission.htm
Theo