我希望我们的网络服务器可以从外部访问。我们有一个静态 IP - 176.35.XXX.XXX,当与网络服务器位于同一网络上时可以访问,但在外部会超时。
当从外部访问该 IP 地址时,我可以看到与 Web 服务器建立了某种连接。
tcpdump -vvv -ni eth0 host 82.132.234.1
(82.132.234.1 是外部 IP)
07:02:19.829368 IP (tos 0x0, ttl 52, id 21914, offset 0, flags [DF], proto TCP (6), length 60) 82.132.234.1.35140 > 192.168.2.1.http: Flags [S], cksum 0x176a (correct), seq 1704363497, win 14600, options [mss 1452,sackOK,TS val 3000815731 ecr 0,nop,wscale 9], length 0
07:02:19.829418 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60) 192.168.2.1.http > 82.132.234.1.35140: Flags [S.], cksum 0x799f (correct), seq 3334589114, ack 1704363498, win 14480, options [mss 1460,sackOK,TS val 2733074887 ecr 3000815731,nop,wscale 7], length 0
07:02:19.829536 IP (tos 0x0, ttl 255, id 42170, offset 0, flags [none], proto TCP (6), length 40) 82.132.234.1.35140 > 192.168.2.1.http: Flags [R.], cksum 0x717e (correct), seq 1, ack 1, win 14480, length 0
如果我从 Web 服务器 ping 8.8.8.8,则不会收到任何响应,我假设这是超时的原因?netstat -rn 返回以下内容:
Destination Gateway Genmask Flags MSS Window irtt Iface
172.16.1.9 0.0.0.0 255.255.255.255 UH 0 0 0 tun0
192.168.2.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.2.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1
172.16.0.0 172.16.1.9 255.255.255.0 UG 0 0 0 tun0
172.16.1.0 172.16.1.9 255.255.255.0 UG 0 0 0 tun0
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth1
0.0.0.0 192.168.2.2 0.0.0.0 UG 0 0 0 eth0
对于需要什么有什么想法吗?