LinuxCommandLibrary

httping

httping

TLDR

Ping the specified URL

$ httping -g [url]
copy


Ping the web server on host and port
$ httping -h [host] -p [port]
copy


Ping the web server on host using a TLS connection
$ httping -l -g https://[host]
copy


Ping the web server on host using HTTP basic authentication
$ httping -g http://[host] -U [username] -P [password]
copy

Copied to clipboard