mariusv.com

Watch as I awkwardly stumble through life

Ping a Specific Port

Posted by Marius Voila on March 25, 2011 in London, U.K . — 0 comments This post contains 133 words

In the last 2 days I often heard the question: „Can you ping a specific port of a machine, and if so, can you provide an example?” and now I will answer to this question here.

The answer is:

You can’t ping ports, as Ping is using ICMP which doesn’t have the concept of ports itself. Ports belong to the IP family of protocols (with TCP and UDP being its famous transport layer protocols). However, you could use nmap to see whether ports are open or not by nmap using this command:

nmap -p 80 example.com or IP adress

Nmap is more than just a ping-for-ports-thingy. It’s the security auditers and hackers best friend and comes with tons of cool options. Check the man for all possible flags.