Compare the latency with larger pings and you'll see how the transmission rate affects it.
(Linux: ping -s1472 to get 1500-byte packets. But don't use 8.8.8.8 as the endpoint, as they truncate the responses)
I couldn't use that packet size, the highest size I could pick was 1464 shown below:
ping -s1464 bbc.co.uk
PING bbc.co.uk (151.101.128.81) 1464(1492) bytes of data.
1472 bytes from 151.101.128.81: icmp_seq=1 ttl=57 time=3.04 ms
1472 bytes from 151.101.128.81: icmp_seq=2 ttl=57 time=3.17 ms
1472 bytes from 151.101.128.81: icmp_seq=3 ttl=57 time=3.10 ms
^C
--- bbc.co.uk ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2002ms
rtt min/avg/max/mdev = 3.046/3.108/3.178/0.084 ms
I tried on my PC and one of our servers and it was the same on both..
But going from the default 64 bytes to 1464 byte packets the ping remained the same.
If I tell it to use 1472 it just sits there doing nothing, so maybe they are blocking those larger packet sizes.
I did try TBB and got the following:
Larger Packet Size
ping -c3 -s1472 thinkbroadband.com
PING thinkbroadband.com (80.249.106.141) 1472(1500) bytes of data.
1480 bytes from ip106-141.thdo.ncuk.net (80.249.106.141): icmp_seq=1 ttl=56 time=3.71 ms
1480 bytes from ip106-141.thdo.ncuk.net (80.249.106.141): icmp_seq=2 ttl=56 time=3.39 ms
1480 bytes from ip106-141.thdo.ncuk.net (80.249.106.141): icmp_seq=3 ttl=56 time=3.43 ms
default packet side
ping -c3 thinkbroadband.com
PING thinkbroadband.com (80.249.106.141) 56(84) bytes of data.
64 bytes from ip106-141.thdo.ncuk.net (80.249.106.141): icmp_seq=1 ttl=56 time=2.93 ms
64 bytes from ip106-141.thdo.ncuk.net (80.249.106.141): icmp_seq=2 ttl=56 time=2.86 ms
64 bytes from ip106-141.thdo.ncuk.net (80.249.106.141): icmp_seq=3 ttl=56 time=2.95 ms
--- thinkbroadband.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2002ms
rtt min/avg/max/mdev = 2.864/2.919/2.959/0.059 ms
And I can see it has gone up by 1ms when I use the larger packet size.
But 1ms isn't that much.
9K Packet size
ping -c3 -s9000 thinkbroadband.com
PING thinkbroadband.com (80.249.106.141) 9000(9028) bytes of data.
9008 bytes from ip106-141.thdo.ncuk.net (80.249.106.141): icmp_seq=1 ttl=56 time=4.88 ms
9008 bytes from ip106-141.thdo.ncuk.net (80.249.106.141): icmp_seq=2 ttl=56 time=4.56 ms
9008 bytes from ip106-141.thdo.ncuk.net (80.249.106.141): icmp_seq=3 ttl=56 time=4.67 ms
--- thinkbroadband.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2002ms
rtt min/avg/max/mdev = 4.562/4.707/4.881/0.143 ms
So the 9K packet size is now 4.5 to 5ms so its gone from 2 - 3ms to 5ms, still rather good.
But yes I can see that the size does change this.
Paul