我有两个路由器(R3和R4连接串行链接)。我用RIP 2、192.168.1.1/32和192.168.2.1/32在R3上和192.168.3.1/32和192.168.4.1/32在R4上公布了我的回环。我的路线没有广告,请帮我
Router3#sh run
Building configuration...
Current configuration : 912 bytes
!
version 15.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router
!
!
!
!
!
!
!
!
ip cef
no ipv6 cef
!
!
!
!
license udi pid CISCO2911/K9 sn FTX15247K60-
!
!
!
!
!
!
!
!
!
!
!
spanning-tree mode pvst
!
!
!
!
!
!
interface Loopback1
ip address 192.168.1.1 255.255.255.255
!
interface Loopback2
ip address 192.168.2.1 255.255.255.255
!
interface GigabitEthernet0/0
ip address 172.33.1.1 255.255.255.252
duplex auto
speed auto
!
interface GigabitEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface GigabitEthernet0/2
no ip address
duplex auto
speed auto
shutdown
!
interface Vlan1
no ip address
shutdown
!
router rip
version 2
network 192.168.1.0
network 192.168.2.0
no auto-summary
!
ip classless
!
ip flow-export version 9
!
!
!
!
!
!
!
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
!
!
endRouter4#sh运行
Building configuration...
Current configuration : 912 bytes
!
version 15.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router
!
!
!
!
!
!
!
!
ip cef
no ipv6 cef
!
!
!
!
license udi pid CISCO2911/K9 sn FTX1524QLWF-
!
!
!
!
!
!
!
!
!
!
!
spanning-tree mode pvst
!
!
!
!
!
!
interface Loopback1
ip address 192.168.3.1 255.255.255.255
!
interface Loopback2
ip address 192.168.4.1 255.255.255.255
!
interface GigabitEthernet0/0
ip address 172.33.1.2 255.255.255.252
duplex auto
speed auto
!
interface GigabitEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface GigabitEthernet0/2
no ip address
duplex auto
speed auto
shutdown
!
interface Vlan1
no ip address
shutdown
!
router rip
version 2
network 192.168.3.0
network 192.168.4.0
no auto-summary
!
ip classless
!
ip flow-export version 9
!
!
!
!
!
!
!
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
!
!
end发布于 2022-06-22 14:17:30
您需要在rip网络语句中包含链接地址(172.33.x.x)。否则,RIP将不会发送这些接口的广告。
https://networkengineering.stackexchange.com/questions/79211
复制相似问题