The sys admin's daily grind – paping
A Better ping
Like every sys admin, Charly occasionally throws a pebble at a machine to see if it is still alive. If the other end does not respond to the ping, that does not always mean it's dead. Maybe the pebble just missed.
Hi there! Anybody home? Quite often, admins need to make sure that at least the physical connection between two computers is still up – or back up. Obviously, ping
is the tool of choice when it comes to proving or refuting accessibility. However, there are cases in which a firewall blocks the ICMP ping
. Anyone with a modicum of knowledge can save the energy they would otherwise waste cussing and instead type:
nmap -p <port>
Don't cheer too soon, though, because often an intrusion prevention system blocks the Nmap signature of the workaround.
Paping [1] establishes a connection to a configurable port and immediately terminates it again. This works almost anywhere. It measures the round-trip time in milliseconds, just like ping. The simplest form of the call is very intuitive:
paping <target>
The tool can handle optional parameters, too (Figure 1); a typical call looks like:
paping www.google.com -p 80 -c 4
The -p
parameter specifies the TCP port to target – 80
in this case – which will return the expected results for a web server. By using -c <no_of_checks>
, I can define how often Paping checks out the target.
Give Him a Break!
If you know that your target resides on a particularly slow or fast line, you might want to tune the -t <timeout_in_msec>
parameter; that is, the time in which Paping abandons its task. Without the option, the tool throws in the towel after 1 second (1,000ms).
Purists who find the attractive output shown in Figure 1 too psychedelic, or cave dwellers sitting in front of terminals or dot matrix printers, can use the --nocolor
option. This kicks Paping back into the monochrome era.
So, will Paping's programmer Mike Lovell be building an API for Android apps? No way: The open source tool has apparently reached the end of its design cycle – nobody has touched the C++ code for two years, but that is not surprising for such a simple tool.
If your Linux distribution does not include Paping in its repositories, you can grab the source or Linux version built for 32- and 64-bit systems [1].
Firewall in the way during ping testing? I don't care!
Infos
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.