网络路由问题

网络路由问题

情况如下。我已将服务器 ns1(双宿主 Linux 机器)启用 ip_forwarding,将其转变为路由器(echo 1 > /proc/sys/net/ipv4/ip_forward)

服务器 ns1:

eth0:10.10.0.200/24(默认网关:10.10.0.51)

eth1:192.168.53.198/24(我没有为该接口设置任何默认网关)

服务器 ns1 上的路由表:

[root@ns1 ~]# netstat -nr
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
192.168.53.0    0.0.0.0         255.255.255.0   U         0 0          0 eth1
10.10.0.0       0.0.0.0         255.255.255.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         10.10.0.51      0.0.0.0         UG        0 0          0 eth0

我试图从工作站 ping 一个网络服务器 (其 IP 为 10.10.0.54),但没有成功。

工作站:

工作站的属性为:

eth0:192.168.53.150/24

默认网关:192.168.53.198

这是我的工作站上的路由表:

root@workpc:~# netstat -nr
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
192.168.53.0    0.0.0.0         255.255.255.0   U         0 0          0 eth0
0.0.0.0         192.168.53.198  0.0.0.0         UG        0 0          0 eth0

为什么我的工作站无法达到 10.10.0.54?我相信我已经正确设置了一切。

相关内容