文档介绍:目录
实验一、配置Eigrp 验证,汇总································2
实验二、配置ospf验证,汇总,虚链路··························8
实验三、配置Ospf与Eigrp的路由再发布························15
实验四、配置Bgp·············································22
实验五、配置PIM auto-rp······································31
实验一、配置Eigrp 验证,汇总
环境:三台路由器串口相连,其它接口配置如图
要求:
、R3配置EIGRP接口密文验证
步骤一: 配置三个路由器接口使其连通。
R1的配置
R1(config)# interface Loopback0
R1(config-if)# ip address
R1(config)# interface Loopback1
R1(config-if)# ip address
R1(config)# interface Loopback2
R1(config-if)# ip address
R1(config)# interface s0
R1(config-if)# ip address
R1(config-if)#no shutdown
R2的配置
R2(config)# interface s0
R2(config-if)# ip address
R2(config-if)#clockrate 64000
R2(config-if)#no shutdown
R2(config)# interface s1
R2(config-if)# ip address
R12(config-if)#no shutdown
R3的配置
R3(config)# interface Loopback0
R3(config-if)# ip address
R3(config)# interface s1
R3(config-if)# ip address
R3(config-if)#clockrate 64000
R3(config-if)#no shutdown
步骤二: 配置Eigrp
R1的配置
R1(config)# router eigrp 100 à启用eigrp,自治号为100,三台路由器保持一致
R1(config-router)# network à使相关接口参与eigrp
R1(config-router)# network
R1(config-router)# network
R1(config-router)# network
R1(config-router)# no auto-summary à关闭自动汇总
R2的配置
R2(config)# router eigrp 100
R2(config-router)# network
R2(config-router)# network
R2(config-router)# no auto-summary
R3的配置
R3(config)# router eigrp 100
R3(config-router)# network
R3(config-router)# network
R3(config-router)# no auto-summary
步骤三:配置EIGRP手工路由汇总
R1的配置
R1(config)# interface s0
R1(config-if)# ip summary-address eigrp 10