Saturday, February 27, 2016

OSPF EIGRP Redistribution



R2#show interface s0/0/0
Write down these 5 parameters, notice that we have to divide the Delay by 10 because the metric unit is in tens of microsecond. For example, we get Bandwidth=1544 Kbit, Delay=20000 us, Reliability=255, Load=1, MTU=1500 bytes then we would redistribute as follows:
R2#config terminalR2(config)# router ospf 24
R2(config-router)#
 redistribute eigrp 100 metric-type 1 subnetsR2(config-router)#exitR2(config-router)#router eigrp 100R2(config-router)#redistribute ospf 24 metric 1544 2000 255 1 1500

R3#show interface fa0/0
For example we get Bandwidth=10000 Kbit, Delay=1000 us, Reliability=255, Load=1, MTU=1500 bytes
R3#config terminal
R3(config)#
router ospf 34
R3(config-router)#
redistribute eigrp 100 metric-type 1 subnets
R3(config)#
exit
R3(config-router)#
router eigrp 100
R3(config-router)#
redistribute ospf 34 metric 10000 100 255 1 1500

2 comments: