Latency • Bandwidth • TCP • UDP • Echo Tests
PsPing is a powerful network testing tool from Microsoft Sysinternals. It supports ICMP ping, TCP/UDP latency tests, port reachability checks, and bandwidth measurement.
PsPing measures latency, bandwidth, and connectivity between these two points.
Official Microsoft link:
https://learn.microsoft.com/en-us/sysinternals/downloads/psping
psping [options] target
psping google.com
Equivalent to Windows ping, but with more control.
psping google.com:443
Tests if a TCP port is reachable and measures latency.
psping -t google.com
Runs until you press CTRL+C.
psping -n 200 -i 0.2 google.com
Sends 200 pings at 200ms intervals.
psping -b -s 5000
Starts a bandwidth test server on port 5000.
psping -b 192.168.1.10:5000
Measures throughput between two hosts.
psping -u google.com:33434
Useful for testing firewalls and VoIP paths.