客户端排查过程
(1)在客户端上telnet服务器端IP、端口 C:\Users\Administrator>ping 192.168.1.51 正在 Ping 192.168.1.51 具有 32 字节的数据: 来自 192.168.1.51 的回复: 字节=32 时间<1ms TTL=64 来自 192.168.1.51 的回复: 字节=32 时间<1ms TTL=64 #通了,就可以排除物理链路问题 (2)在客户端telnet服务端I、端口等 [root@web01 ~]# telnet 192.168.1.51 80 Trying 192.168.1.51... Connected to 192.168.1.51. Escape character is '^]'. #这就表示端口开放了 (3)在客户端使用wget或curl命令检测 [root@web01 ~]# curl -I 192.168.1.51 HTTP/1.1 200 OK Server: nginx/1.18.0 Date: Tue, 19 May 2020 13:16:16 GMT Content-Type: text/html Content-Length: 612 Last-Modified: Tue, 19 May 2020 12:36:58 GMT Connection: keep-alive ETag: "5ec3d2ea-264" Accept-Ranges: bytes 10.4 部署一个web站点 [root@web01 /application/nginx/html]# cat index.html <html> <head> <title>老男孩58期</title> <meta charset="UTF-8"> </head> <body bgcolor=green> <br> <div align=center> <table border=1> <tr> <td>ID</td> <td>NAME</td> </tr> <tr> <td>001</td> <td>项博</td> </tr> <tr> <td>002</td> <td>项伯</td> </tr> </table> </div> </body> </html>浏览器访问