由于 ECS Linux 一般情况下,默认都未安装桌面环境,所以用户无法使用浏览器来直观的感知 HTTP 业务允许状态,特别是在 ECS 没有配置公网环境的时候。
可以尝试使用如下方法来判断 HTTP 端口的监听状态:
方法一: 使用 curl 工具
用法:
curl -I http://<内网 ip="">:<监听端口>
比如: curl http://127.0.0.1
正常返回结果如下:(主要关注其中的返回状态码)
HTTP/1.1 200 OK Server: nginx/1.4.6 (Ubuntu) Date: Wed, 08 Apr 2015 09:09:33 GMT Content-Type: text/html; charset=UTF-8 Connection: keep-alive X-Powered-By: PHP/5.5.9-1ubuntu4.5 X-Pingback: http://www.knityster.com/xmlrpc.php
方法二: 使用 echo 测试
用法:
echo -e "HEAD / HTTP/1.0\r\n\r\n" | nc -nvtw3 <内网 ip=""> <监听端口> ,
比如:
echo -e "HEAD / HTTP/1.0\r\n\r\n" | nc -nvtw3 10.200.1.97 80
正常返回结果如下:(succeeded 表示连接成功)
Connection to 127.0.0.1 80 port [tcp/*] succeeded!