我正在添加一个新的路由器到OSPF设置。配置似乎一切正常,但状态仍然是INIT/DROTHER。当我从新路由器进行ping到224.0.0.5时,我得到的结果是:
CB# ping 224.0.0.5
键入转义序列以中止。将1100字节的ICMP Echos发送到224.0.0.5,超时为2秒:.CB#
在另一个路由器上使用同一个地址的ping是很好的。
请指点。
路由器CB-3825高级安全12.4(7c)
路由器IG -相同的路由器/IOS
ROUTER CB
version 12.4
!
hostname CB
!
logging buffered 51200 warnings
!
no aaa new-model
!
resource policy
!
ip cef
!
no ip dhcp use vrf connected
!
ip multicast-routing
!
interface Loopback1
ip address 10.200.204.1 255.255.255.224
!
interface GigabitEthernet0/0
description LAN Interface
ip address 192.168.1.1 255.255.255.0
no ip redirects
no ip unreachables
no ip proxy-arp
ip virtual-reassembly
duplex auto
speed auto
media-type rj45
negotiation auto
no mop enabled
!
interface GigabitEthernet0/0/0
ip address 10.10.1.2 255.255.255.252
no ip redirects
no ip unreachables
no ip proxy-arp
ip virtual-reassembly
negotiation auto
!
router ospf 1
log-adjacency-changes
network 10.10.1.0 0.0.0.3 area 0
network 192.168.1.0 0.0.0.255 area 0
!
ip route 0.0.0.0 0.0.0.0 10.10.1.1 permanent
ROUTER IG
version 12.4
!
service nagle
no service pad
service tcp-keepalives-in
service tcp-keepalives-out
!
hostname IG
!
no aaa new-model
!
resource policy
!
no ip source-route
ip cef
ip tcp synwait-time 10
!
interface Loopback1
ip address 10.200.200.1 255.255.255.0
!
interface GigabitEthernet0/0
description LAN Interface
bandwidth 1048576
ip address 192.168.10.1 255.255.255.0
no ip redirects
no ip unreachables
no ip proxy-arp
ip nbar protocol-discovery
ip flow ingress
ip flow egress
ip virtual-reassembly
ip route-cache flow
duplex auto
speed auto
media-type rj45
negotiation auto
no mop enabled
!
interface GigabitEthernet0/1
description to CCTV1
ip address 172.10.1.1 255.255.255.252
no ip redirects
no ip unreachables
no ip proxy-arp
ip nbar protocol-discovery
ip flow ingress
ip flow egress
ip pim dense-mode
ip virtual-reassembly
ip route-cache flow
ip ospf cost 10
ip ospf hello-interval 1
ip ospf dead-interval 2
ip ospf retransmit-interval 3
ip ospf transmit-delay 3
duplex auto
speed auto
media-type rj45
negotiation auto
no mop enabled
!
interface GigabitEthernet0/1/0
description Service Provider Fiber Link
no ip address
negotiation auto
!
interface GigabitEthernet0/1/0.10
description to CCTV2
encapsulation dot1Q 10
ip address 172.10.2.1 255.255.255.252
ip nbar protocol-discovery
ip flow ingress
ip flow egress
ip ospf hello-interval 1
ip ospf dead-interval 2
ip ospf retransmit-interval 3
ip ospf transmit-delay 3
no snmp trap link-status
no cdp enable
!
interface GigabitEthernet0/1/0.32
description to CB
encapsulation dot1Q 32
ip address 10.10.1.1 255.255.255.252
no snmp trap link-status
no cdp enable
!
router ospf 1
log-adjacency-changes
network 10.10.1.0 0.0.0.3 area 0
network 172.10.1.0 0.0.0.3 area 0
network 172.10.2.0 0.0.0.3 area 0
network 192.168.10.0 0.0.0.255 area 0
!
ip route 0.0.0.0 0.0.0.0 XXX.XXX.XXX.XXX发布于 2010-09-29 00:28:55
路由器需要在启动后重新循环电源,一切都开始正常工作。
发布于 2010-09-22 17:48:04
首先,我会在同一个网段(在本例中为10.10.1.1和10.10.1.2)上平其他设备,以查看是否有任何响应。如果您有基本的L3连接,那么我将开始查看OSPF事件调试或OSPF数据包调试。
不过,我不会依赖OSPF组播IP的任何ping响应。
编辑:啊,您已经在其中一个路由器上显式地配置了各种OSPF间隔。这些在所有路由器上都是匹配的,形成一个邻接,所以当发送Hello数据包时,它们会立即作为无效丢弃。
https://serverfault.com/questions/183604
复制相似问题