无法在 rhel6 上的 2 个虚拟网卡上连接两个不同的网络

无法在 rhel6 上的 2 个虚拟网卡上连接两个不同的网络

我在 VMware 上有一台 RHEL6 机器,带有 2 个虚拟 NIC。

IP 和网络的输出如下:

$ ip a|grep "inet"

inet 192.168.17.128/24 brd 192.168.17.255 scope global eth0
inet 192.168.47.128/24 brd 192.168.47.255 scope global eth1

同一台机器的 netstat 代码是:

[root@localhost ~]# netstat -nr
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt     Iface
192.168.17.0    0.0.0.0         255.255.255.0   U         0 0          0   eth0
192.168.47.0    0.0.0.0         255.255.255.0   U         0 0          0 eth1
0.0.0.0         192.168.17.1    0.0.0.0         UG        0 0          0 eth0

来自 sysctl.conf 的 cat 如下:

[root@localhost ~]# cat /etc/sysctl.conf
# Kernel sysctl configuration file for Red Hat Linux
#
# For binary values, 0 is disabled, 1 is enabled.  See sysctl(8) and
# sysctl.conf(5) for more details.

# Controls IP packet forwarding
net.ipv4.ip_forward = 1

# Controls source route verification
net.ipv4.conf.default.rp_filter = 2
net.ipv4.conf.all.rp_filter = 2

我有第二台 VM rhel6 机器,其 IP 为 192.168.17.129,并且我能够轻松地在第一台机器上 ping 通 192.168.17.128。

我需要从第二台机器 ping | 连接到 192.168.47.128。

如何完成这个任务?

相关内容