我有两个网络服务器。网络服务器A有这条路线 ( netstat -r
):
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.40.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
而 Webserver B有这条路线:
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.40.0 * 255.255.255.0 U 0 0 0 eth0
有区别吗?
我在尝试将我的 netbeans 与 webserver A上的 xdebug连接并在 netbeans 中永久保持“等待连接”时遇到超时问题,它与路由有关吗?
更新:
输出ip route list
:
网络服务器A:
default via 192.168.40.20 dev eth0
192.168.40.0/24 dev eth0 proto kernel scope link src 192.168.40.44
网络服务器B:
default via 192.168.40.20 dev eth0
192.168.40.0/24 dev eth0 proto kernel scope link src 192.168.40.47
不要使用已弃用的工具,如
ifconfig
,route
等等。使用iproute
包中的工具。ip route list
- 检查路由表ip route get <dst>
- 解析实际路由 - 到指定目的地的数据包将通过此路由。输出的差异与
netstat
工具的不同版本有关。tcpdump
第一步。