连接小型网络时遇到问题.. ping

网络工程 故障排除
2022-02-16 12:27:13

RTR配置:

service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname T-RTR
!
boot-start-marker
boot-end-marker
!
!
enable secret 5 $1$g2ly$xT6VHT1gXBTLuXp6uJlp./
!
no aaa new-model
!
!
!
!
!
!
!
!
!
!
!
!
!
!
ip cef
no ipv6 cef
multilink bundle-name authenticated
!
cts logging verbose
!
!
license udi pid CISCO1921/K9 sn FGL1943200R
!
!
!
redundancy
!
!
!
!
!
!
interface Embedded-Service-Engine0/0
 no ip address
 shutdown
!
interface GigabitEthernet0/0
 ip address dhcp
 duplex auto
 speed auto
!
interface GigabitEthernet0/1
 no ip address
 duplex auto
 speed auto
!
interface GigabitEthernet0/1.10
 encapsulation dot1Q 10
 ip address 172.16.10.1 255.255.255.0
!
interface GigabitEthernet0/1.20
 encapsulation dot1Q 20
 ip address 172.16.20.1 255.255.255.0
!
interface GigabitEthernet0/1.30
 encapsulation dot1Q 30
 ip address 172.16.30.1 255.255.255.0
!
router rip
 version 2
 network 172.16.0.0
 network 192.168.1.0
 no auto-summary
 passive-interface GigabitEthernet 0/1
!
ip forward-protocol nd
!
no ip http server
no ip http secure-server
!
!
!
!
!
control-plane
!
!
banner motd ^C Unauthorized Access is prohibited!^C
!

网络拓扑:https ://drive.google.com/open?id=0B_gP-IlJx8dsN1BCTElKa1gwMmIySVdKYVp3Q3pRdXpfM3dv

BR: 如果你们需要一些信息,请告诉我,这是一台 RV320。它正在运行 DHCP 为连接的路由器提供 IP 地址。

这是我的问题。

我无法从172.16.x.x网络上的任何主机 ping 到我的 BR 接口192.168.1.1- 固定的

我无法从我的 BR ping 到 RTR g0/1 接口(intervlan 路由所在的位置)。- 固定的

我无法从我的任何主机 ping 到BR 上的接口internet或我的接口(使用WAN192.168.13.81/24gateway 192.168.13.254

我所有的内部局域网都可以互相ping通。

RTR可以 ping 192.168.13.81Internet192.168.13.254192.168.1.1几乎所有内容)。

我在 RTR 上运行了调试 ICMP,然后尝试从 BR ping 到 RTR 上的 int g0/1.x(子接口),但我在调试中一无所获。

我的 BR 启用了 RIPv2。

RTR 路由表:

Gateway of last resort is 192.168.1.1 to network 0.0.0.0

S*    0.0.0.0/0 [254/0] via 192.168.1.1
      172.16.0.0/16 is variably subnetted, 8 subnets, 2 masks
R        172.16.1.0/24 [120/2] via 192.168.1.1, 00:00:03, GigabitEthernet0/0
C        172.16.10.0/24 is directly connected, GigabitEthernet0/1.10
L        172.16.10.1/32 is directly connected, GigabitEthernet0/1.10
C        172.16.20.0/24 is directly connected, GigabitEthernet0/1.20
L        172.16.20.1/32 is directly connected, GigabitEthernet0/1.20
C        172.16.30.0/24 is directly connected, GigabitEthernet0/1.30
L        172.16.30.1/32 is directly connected, GigabitEthernet0/1.30
R        172.16.60.0/24 [120/2] via 192.168.1.1, 00:00:03, GigabitEthernet0/0
      192.168.1.0/24 is variably subnetted, 2 subnets, 2 masks
C        192.168.1.0/24 is directly connected, GigabitEthernet0/0
L        192.168.1.2/32 is directly connected, GigabitEthernet0/0
R     192.168.13.0/24 [120/1] via 192.168.1.1, 00:00:03, GigabitEthernet0/0
1个回答

问题很可能是 BR 没有路由到您的 172.16.0.0/16 网络,因此无法发送任何响应。

您可以将来自 172.16.0.0/16 网络的所有流量 NAT 到您的“外部”IP 地址:192.168.1.2。

如果您的网络实际上可以在没有 NAT 的情况下在学校局域网内路由,那么您必须确保您的 rip 配置正常工作。(正如 Ron 所说,首先在 rip 配置中添加“版本 2”)