LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

pingtop

Ping multiple servers and show results in a top-like terminal UI

TLDR

Ping multiple hosts
$ pingtop [host1] [host2] [host3]
copy
Ping hosts with a specific packet size
$ pingtop -s [64] [host1] [host2]
copy
Ping hosts and log results to a file
$ pingtop -l [results.log] [host1] [host2]
copy

SYNOPSIS

pingtop [options] hosts...

DESCRIPTION

pingtop pings multiple servers simultaneously and displays the results in a top-like terminal user interface. It provides real-time monitoring of latency and packet loss across all specified hosts in a single view.

PARAMETERS

-s, --packetsize BYTES

Number of data bytes to be sent (default: 56).
-l, --logto FILE
Log output to a file.

CAVEATS

Requires root or CAPNETRAW capability to send ICMP packets. Install via `pip install pingtop`.

HISTORY

pingtop was created by laixintao and is written in Python.

SEE ALSO

ping(1), mtr(8), gping(1), fping(1), hping3(1)

Copied to clipboard
Kai