Mailing List Archive

Static route redistribution
Hi folks,

I'm trying to find a way to install a static route on a XMR, but not
redistribute the route into OSPF. I already have 'redistribute static'
enabled in OSPF, for some static routes that I do want redistributed into
OSPF.

Juniper has an option on a static route called "no-readvertise" - Don't
mark route as eligible to be readvertised, but I don't see a way to do this
on Brocade. I see 'distribute-list' option on OSPF but that only seems to
apply to incoming routes.

Is there something I missed?


Thanks,

Mark
Re: Static route redistribution [ In reply to ]
Hi Mark,

The following config should take care of the job:

ip route 192.168.0.0/24 10.0.0.1 tag 123

route-map STATIC-TO-OSPF deny 100
match tag 123
route-map STATIC-TO-OSPF permit 200

router ospf
redistribute static route-map STATIC-TO-OSPF

Best regards,
Martijn

On 03/09/15 21:11, Mark Price wrote:
>
> Hi folks,
>
> I'm trying to find a way to install a static route on a XMR, but not
> redistribute the route into OSPF. I already have 'redistribute
> static' enabled in OSPF, for some static routes that I do want
> redistributed into OSPF.
>
> Juniper has an option on a static route called "no-readvertise" -
> Don't mark route as eligible to be readvertised, but I don't see a way
> to do this on Brocade. I see 'distribute-list' option on OSPF but
> that only seems to apply to incoming routes.
>
> Is there something I missed?
>
>
> Thanks,
>
> Mark
>
>
>
>
>
> _______________________________________________
> foundry-nsp mailing list
> foundry-nsp@puck.nether.net
> http://puck.nether.net/mailman/listinfo/foundry-nsp
Re: Static route redistribution [ In reply to ]
Perfect, thank you Martijn.



On Thu, Sep 3, 2015 at 3:17 PM, i3D.net - Martijn Schmidt <
martijnschmidt@i3d.net> wrote:

> Hi Mark,
>
> The following config should take care of the job:
>
> ip route 192.168.0.0/24 10.0.0.1 tag 123
>
> route-map STATIC-TO-OSPF deny 100
> match tag 123
> route-map STATIC-TO-OSPF permit 200
>
> router ospf
> redistribute static route-map STATIC-TO-OSPF
>
> Best regards,
> Martijn
>
>