Ping获取服务器的IP地址并查找端口号

时间:2016-04-15 08:50:29

标签: shell command-prompt

我想获取服务器的端口号和IP地址

对于ip地址我可以

ping the xyz.com and to get the ip address resolved.

但我如何包含端口号

2 个答案:

答案 0 :(得分:0)

来自this Serverfault answer:

  

你不能ping端口,因为Ping正在使用没有的ICMP   港口的概念。端口属于传输层协议   TCP和UDP。但是,您可以使用nmap查看端口是否已打开   <或者

nmap -p 80 example.com 
     

编辑:正如flokra所提到的,nmap不仅仅是   只是一个ping-for-ports-thingy。这是安全审核员和黑客   最好的朋友,有很多很酷的选择。检查所有文档   可能的旗帜。

答案 1 :(得分:0)

尝试:     

telnet xyz.com 80
如果它显示输出像     
Connected to xyz.com.
Escape character is '^]'.
表示您的域名(xyz.com)正在侦听端口80.