
每个路由器都是用EIGRP实现的,共享其路由。
作品:
ISP,R1,R2,R4
问题:
R3不能与R1建立邻居关系,其路由也不能共享。
和其他路由器一样,我也是这么做的。
R3 -
R3#ping 10.0.0.13
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.13, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/8/22 ms
R3#sh ip protocols
Routing Protocol is "eigrp 1 "
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Default networks flagged in outgoing updates
Default networks accepted from incoming updates
EIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
EIGRP maximum hopcount 100
EIGRP maximum metric variance 1
Redistributing: eigrp 1
Automatic network summarization is not in effect
Maximum path: 4
Routing for Networks:
10.0.0.12/30
Routing Information Sources:
Gateway Distance Last Update
Distance: internal 90 external 170
R3#sh ip eigrp neighbors
IP-EIGRP neighbors for process 1R1 -
R1#ping 10.0.0.14
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.14, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 19/29/49 ms
R1#sh ip protocols
Routing Protocol is "eigrp 1 "
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Default networks flagged in outgoing updates
Default networks accepted from incoming updates
EIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
EIGRP maximum hopcount 100
EIGRP maximum metric variance 1
Redistributing: eigrp 1
Automatic network summarization is not in effect
Maximum path: 4
Routing for Networks:
10.0.0.4/30
10.0.0.0/30
10.0.0.8/30
1.0.0.12/30
Routing Information Sources:
Gateway Distance Last Update
10.0.0.6 90 6397
10.0.0.10 90 8936
10.0.0.2 90 9818
Distance: internal 90 external 170
R1#sh ip eigrp neighbors
IP-EIGRP neighbors for process 1
H Address Interface Hold Uptime SRTT RTO Q Seq
(sec) (ms) Cnt Num
0 10.0.0.6 Se0/0/1 10 00:16:28 40 1000 0 5
1 10.0.0.10 Se0/1/1 10 00:16:26 40 1000 0 5
2 10.0.0.2 Se0/0/0 12 00:16:25 40 1000 0 5我认为是auto-summary的残疾,但事实并非如此。有什么建议吗?
发布于 2015-08-20 18:04:00
将有助于查看R1和R3的EIGRP配置,这些配置可以与show run | section router eigrp 1或仅用show run显示,并从“路由器eigrp 1”复制该部分。
这么说,我看上去你输入了错误的网络声明。在R1上,您可以看到:
Routing for Networks:
10.0.0.4/30
10.0.0.0/30
10.0.0.8/30
1.0.0.12/30应该是10.0.12/30,而不是1.0.0.12/30。
在路由器eigrp 1下的R1上,您应该输入network 10.0.0.12 0.0.0.3并删除任何其他网络语句。
删除任何其他网络语句的原因是,除了串行链接之外,我看不到任何其他直接连接的网络,而且您也没有提到任何回环等等。“Networkx.xY.Y”语句告诉EIGRP它应该启用EIGRP的哪些接口,并为该网络做广告。
https://networkengineering.stackexchange.com/questions/20784
复制相似问题