当前位置:文档之家› 3种动态路由协议

3种动态路由协议

RIP EIGRP和OSPF重分布

Cisco默认的几种路由协议的AD如下:

1.直连接口:0

2.静态路由:1(例外:使用接口来代替下1跳地址的时候它会被认为是直连接口)

3.EIGRP汇总路由:5

4.External(外部) BGP:20

5.EIGRP:90

6.IGRP:100

7.OSPF:110

8.IS-IS:115

9.RIP:120

10.EGP:140

11.External(外部) EIGRP:170

12.Internal(内部) BGP:200

13.未知:255

做重分布时的各路由协议的默认metric值

1、往RIP里做时,metric值默认infinity.所以要人工指定metric值,注意不要超过RIP中最大16跳.

2、往OSPF里做时,metric值默认是20,metric-type 是2默认不发布子网.

3、往EIGRP里做时,metric值默认是infinity,人工指metric值时包括:带宽,延迟,可靠度,负载,MTU.(注:可靠度=255时最大,负载=1时最小,MTU=1500,一般来说这三个值都设成这样.而且在配置metric值时的顺序就是这样的顺序.)

如:Paige(config-router)#redistribute ospf 1 metric 10000 100 255 1 1500

4、往IS-IS里做时,Router的默认类型是level-2的,并且metric值为0,在做重分布时,如果网络中只有一个IS-IS进程时,可以不写IS-IS的tag,而其他的路由协议,如EIGRP后面必须跟上进程号.

注:metric-type类型为由于OSPF的外部路由分为

类型1:--外部路径成本+数据包在OSPF网络所经过各链路成本

类型2:--外部路径成本,即ASBR上的默认设置

问题:在向EIGRP中重分布时,必须指定默认管理距离吗?为何只在OSPF向EIGRP重分布时distance eigrp 90 150??

答:在默认时EIGRP的内部管理距离是90,外部路由管理距离是170,命令“distance eigrp 90 150”只是修改了外部管理距离

R1(config)#int loo0

R1(config-if)#ip add 1.1.1.1 255.255.255.0

R1(config-if)#int s2/0

R1(config-if)#ip add 192.168.12.1 255.255.255.0

R1(config-if)#no sh

R1(config-if)#exit

R1(config)#

R1(config)#

R1(config)#router rip

R1(config-router)#version 2

R1(config-router)#net 192.168.12.0

R1(config-router)#net 1.0.0.0

R1(config-router)#no net 1.0.0.0

R1(config-router)#no auto-summary

R1(config-router)#redistribute static metric 3

R1(config-router)#exit

R1(config)#ip route 0.0.0.0 0.0.0.0 s 2/1-------配置默认路由,观查R2上的路由表R1(config)#exit

R1(config)#int s2/1

R1(config-if)#no sh

R1(config-if)#exit

R1(config)#

R1(config)#

R1(config)#^Z

R1#ping 4.4.4.4

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 4.4.4.4, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 76/118/176 ms

R1#sh ip route

Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area

N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2

i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2

ia - IS-IS inter area, * - candidate default, U - per-user static route

o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

C 192.168.12.0/24 is directly connected, Serial2/0

1.0.0.0/24 is subnetted, 1 subnets

C 1.1.1.0 is directly connected, Loopback0

3.0.0.0/24 is subnetted, 1 subnets

R 3.3.3.0 [120/4] via 192.168.12.2, 00:00:03, Serial2/0-----从R2上重分布进来的,注意度量值与R2上相符

4.0.0.0/32 is subnetted, 1 subnets

R 4.4.4.4 [120/4] via 192.168.12.2, 00:00:03, Serial2/0

R 192.168.23.0/24 [120/4] via 192.168.12.2, 00:00:03, Serial2/0-----从R2上重分布进来的

R 192.168.34.0/24 [120/4] via 192.168.12.2, 00:00:03, Serial2/0-----从R2上重分布进

相关主题