Unnamed Fossil Project

File List
Login

Files of check-in [eee905bfef] in the top-level directory


Compare latency of connections to servers

On each server run this.

nc -u -l -p 62000

Port 62000 is chosen because it is in the mosh range, so the firewall will allow the connections. Protocol UDP is to match mosh, which is the main way I connect.

On the client run something this for each server.

dd if=/dev/urandom bs=8 time nc -u "$server"

In my case it's this.

for server in debian.eskimo.com ma.sdf.org; do echo "${server}" dd if=/dev/urandom bs=8 | time nc -u "$server" done