无法在两个网络之间 ping 通

无法在两个网络之间 ping 通

这似乎是一个相当基本的问题,所以我希望得到一个详细的解释,因为我无法在互联网上找到想要的答案。

在此处输入图片描述

我想从 S1 ping 并最终 telnet 到 S2。我设置了 RIPv2 路由,但仍然无法做到这一点。


R1

Router>
Router>en
Router#show ru
Router#show running-config 
Building configuration...
Current configuration : 683 bytes
version 12.4
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
hostname Router
no ip cef
no ipv6 cef
spanning-tree mode pvst
interface FastEthernet0/0
ip address 192.168.1.1 255.255.255.0
duplex auto
speed auto
interface FastEthernet0/1
ip address 172.16.32.1 255.255.255.0
duplex auto
speed auto
interface Vlan1
no ip address
shutdown
router rip
version 2
network 172.16.0.0
network 192.168.0.0
network 192.168.1.0
no auto-summary
ip classless
ip flow-export version 9
line con 0
line aux 0
line vty 0 4
login
end

S0

Switch0>
Switch0>en
Switch0#show 
Switch0#show run
Switch0#show running-config 
Building configuration...
Current configuration : 1054 bytes
version 12.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption!
hostname Switch0
interface Vlan1
ip address 192.168.1.69 255.255.255.0
line con 0
line vty 0 4
login
line vty 5 15
login
end

S1

hostname Switch1
interface Vlan1
ip address 172.16.32.111 255.255.255.0
line con 0
line vty 0 4
login
line vty 5 15
login

答案1

您似乎没有在任何一个交换机上定义任何默认网关。

在 S0 上:

ip default-gateway 192.168.1.1

在 S1 上:

ip default-gateway 172.16.32.1

就您而言,交换机只是网络上的主机。交换机上的 IP 寻址仅用于交换机管理,而交换机管理是一台主机,就像 PC 或打印机一样。主机网关会告诉主机将不在同一网络上的目的地的流量发送到何处。

相关内容