question on redistribution
If I have three networks with eigrp / ospf / isis.
I need to redistribute isis and eigrp but maintain the bw of eigrp.
Not sure how to do this.
router ospf 1
redistribute isis level-1-2
redistribute eigrp 100
default-metric eigrp 100 6400 100 255 1 1500
I know I can go to the eigrp router and get the metric but I how do I maintain the bw on the ospf side with redistribution.
I need to redistribute isis and eigrp but maintain the bw of eigrp.
Not sure how to do this.
router ospf 1
redistribute isis level-1-2
redistribute eigrp 100
default-metric eigrp 100 6400 100 255 1 1500
I know I can go to the eigrp router and get the metric but I how do I maintain the bw on the ospf side with redistribution.
Comments
-
keenon Member Posts: 1,922 ■■■■□□□□□□dkdoyle wrote:If I have three networks with eigrp / ospf / isis.
I need to redistribute isis and eigrp but maintain the bw of eigrp.
Not sure how to do this.
router ospf 1
redistribute isis level-1-2
redistribute eigrp 100
default-metric eigrp 100 6400 100 255 1 1500
I know I can go to the eigrp router and get the metric but I how do I maintain the bw on the ospf side with redistribution.
you should be using redistribute static metric 1000 100 255 1 1500 user eigrpBecome the stainless steel sharp knife in a drawer full of rusty spoons -
dkdoyle Member Posts: 6 ■□□□□□□□□□Got this response from Cisco website CCIE. I think it explains a little better.
The easiest way to use a default-metric and only use it on one protocol being redistributed is to use the "metric <bw> <delay> <Reliability> <load> <MTU>" at the end of the redistribute command. See Below:
router eigrp 1
redistribute eigrp 100 metric 100000 100 255 1 1500
redistribute isis level-1-2
default-metric 64000 100 255 1 1500
In this instance only the isis level-1-2 routes will use the default metric. The router eigrp 100 will use the metrics given. You could also use the metric command on the isis and let eigrp 100 use the default. It all depends on your situation I guess.keenon wrote:dkdoyle wrote:If I have three networks with eigrp / ospf / isis.
I need to redistribute isis and eigrp but maintain the bw of eigrp.
Not sure how to do this.
router ospf 1
redistribute isis level-1-2
redistribute eigrp 100
default-metric eigrp 100 6400 100 255 1 1500
I know I can go to the eigrp router and get the metric but I how do I maintain the bw on the ospf side with redistribution.
you should be using redistribute static metric 1000 100 255 1 1500 user eigrp