CCIE学习笔记
1. 用ipdefault-network:
R2关键配置:
Ip route 2.0.0.0255.0.0.0 null 0 //在路由表中制造一条主类网络
Router eigrp 1
Network2.0.0.0 //宣告主类网络
Ipdefault-network 2.0.0.0 //相当于告诉EIGRP域内的路由器默认网关在2.0.0.0,所以发布这个网关的路由器的路由表要可达这个地址
Ip route 0.0.0.00.0.0.0 f1/0 12.1.1.2 //让R2到外网可达
R2路由表:
R3路由表:
R3ping外网:
2. R2写一条静态默认路由并重发布:
R2关键配置:
Ip route 0.0.0.0 0.0.0.0 f1/0 12.1.1.1
Router eigrp 1
redistribute static metric 100000 10 255 1 1500
3. R2写一条静态默认路由并network:
R2关键配置:
Ip route 0.0.0.0 0.0.0.0 f1/0 12.1.1.1
Router eigrp 1
Network 0.0.0.0
4. R2向R3汇总一条明细路由:
R2关键配置:
Int f0/1
ip summary-address eigrp 1 0.0.0.0 0.0.0.0
注意:如果用方法1(ip default-network)向外宣告一条eigrp默认路由那么可以用default-informationin/out来控制默认路由的发送与接收,其他三种方法不能用default-information控制:
ip bandwidth-percent eigrp as-number percent:设置eigrp能用带宽的百分比
leak-map: (Optional) Specifies theroute-map reference that is
used to configure the route leaking throughthe
summary.如:
R2(config)#access-list 1 permit 2.2.2.20.0.0.0
R2(config)#route-map leak permit 10
R2(config-route-map)#match ip address 1
R2(config-if)#ip summary-address eigrp 12.0.0.0 255.0.0.0 100 leak-map leak
接收到汇总路由的路由表:
(config-router)#metric maximum-hops 10 //指定最大跳数为10
tos: Type of service. This value mustalways be zero.
Router(config-router)# metric weights 0 2 02 0 0
在多路访问网络中用neighbor就不会发送也不会接受多播hello,只能通过neighbor建立邻居
在address family模式中指定从某邻居接收的最大前缀数量:
Router(config)# router eigrp 1
Router(config-router)# address-family ipv4
Router(config-router-af)# autonomous-system1
Router(config-router-af)# neighbor 10.0.0.1maximum-prefix 1000 80
开启NONE STOP FORWARDING:
Router(config)# router eigrp 101
Router(config-router)# nsf
Router(config-router)# offset-list 21 in 10ethernet 0 //从e0口学来的且符合标准ACL21的metric加10
限制重发布到EIGRP的路由,只能用在address family模式下
设置从发送query进入到宣告这条路由进入stuck in active(SIA)的等待时间
Router(config-router)# timers active-time200
traffic-share balance:开启不等价负载均衡(默认)
traffic-share min:只用开销最小的链路,如果有多条则负载均衡(等价负载)
Router(config-router)# traffic-sharebalanced
接口下:ip summary-addresseigrp
向EIGRP通告的汇总路由不会被标记为外部路由(即使汇总前为D EX)
本文出自 “flyclc” 博客,请务必保留此出处http://flyclc.blog.51cto.com/1385758/1539315
原文地址:http://flyclc.blog.51cto.com/1385758/1539315