EIGRP默认路由总结
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
EIGRP默认路由总结
实现EIGRP默认路由:
方法1:写一条默认路由,重发布到EIGRP中
R2(config)#ip route 0.0.0.0 0.0.0.0 s0/0 172.16.12.1 //使用出站接口和下一跳IP地址均可
R2(config-router)#redistribute static metric 1544 20000 1 255 1500
查看R3上的路由表如下:
Gateway of last resort is 192.168.23.2 to network 0.0.0.0
D 192.168.45.0/24 [90/2681856] via 192.168.34.4, 00:31:50, Ser ial0/1
D 192.168.25.0/24 [90/2681856] via 192.168.23.2, 00:31:52, Ser ial0/0
C 192.168.23.0/24 is directly connected, Serial0/0
C 192.168.34.0/24 is directly connected, Serial0/1
D*EX 0.0.0.0/0 [170/7289856] via 192.168.23.2, 00:00:05, Serial0/ 0
默认路由条目以外部路由存在
方法2:使用EIGRP特有的IP default-network宣告默认路由
ip default-network 后的IP地址一定要是主类IP地址,并且处于所宣告该网段的接口的IP地址也必须的主类IP地址。
如果R2配置如下:
router eigrp 10
network 172.16.0.0
network 192.168.23.0
network 192.168.25.0
no auto-summary
R2(config)#ip default-network 172.16.12.0
则R2上show run会发现多处一条静态路由:ip route 172.16.0.0 255.25 5.0.0 172.16.12.0
该静态路由是由宣告子网所造成的。所产生的路由表如下:
Gateway of last resort is 172.16.12.1 to network 0.0.0.0
D 192.168.45.0/24 [90/2681856] via 192.168.25.5, 00:05:14, Ser ial0/2
C 192.168.25.0/24 is directly connected, Serial0/2
172.16.0.0/16 is variably subnetted, 2 subnets, 2 masks
C 172.16.12.0/24 is directly connected, Serial0/0
S 172.16.0.0/16 [1/0] via 172.16.12.0 生成的静态路由
C 192.168.23.0/24 is directly connected, Serial0/1
D 192.168.34.0/24 [90/2681856] via 192.168.23.3, 00:05:14, Ser ial0/1
S* 0.0.0.0/0 [1/0] via 172.16.12.1
正确方法:router eigrp 10
network 172.16.0.0
network 192.168.23.0
network 192.168.25.0
no auto-summary
R2(config)#int s0/0
R2(config-if)#ip add 172.16.12.2 255.255.0.0
R2(config)#ip default-network 172.16.0.0
查看R2路由表
Gateway of last resort is 172.16.12.1 to network 0.0.0.0
D 192.168.45.0/24 [90/2681856] via 192.168.25.5, 00:20:58, Serial0 /2
C 192.168.25.0/24 is directly connected, Serial0/2
C* 172.16.0.0/16 is directly connected, Serial0/0
C 192.168.23.0/24 is directly connected, Serial0/1
D 192.168.34.0/24 [90/2681856] via 192.168.23.3, 00:20:58, Serial0 /1
S* 0.0.0.0/0 [1/0] via 172.16.12.1
172.16.0.0的默认路由用于宣告给EIGRP邻居,作为邻居的最后求助(last-re sort)的网关,但ip default-network对自己不生效,所以必须再在R2上配置
ip route 0.0.0.0 0.0.0.0 172.16.12.1
查看R3路由表:
Gateway of last resort is 192.168.23.2 to network 172.16.0.0
//R3将通告给自己172.16.0.0默认路由的路由器设定为网关
D 192.168.45.0/24 [90/2681856] via 192.168.34.4, 00:24:25, Seria l0/1
D 192.168.25.0/24 [90/2681856] via 192.168.23.2, 00:24:26, Seria l0/0