Link to home
Start Free TrialLog in
Avatar of senmohan
senmohanFlag for United Arab Emirates

asked on

BGP Summarize network

Dear All,

We are using MPLS on our Router

now we need to add a summarized network on the existing BGP setup.....but unable to show the same under BGP table.

this is my BGP config.

router bgp 65300
no synchronization
bgp log-neighbor-changes
network 10.110.110.0 mask 255.255.255.0
network 172.29.200.48 mask 255.255.255.252
network 172.31.201.0 mask 255.255.255.0
redistribute ospf 10
neighbor 172.29.200.50 remote-as 65009
neighbor 172.29.200.50 default-originate
neighbor 172.29.200.50 weight 10
no auto-summary

All of the networks are redistributing though OSPF.
Now i need to advertise summarized networks like  10.0.0.0/8 & 172.16.0.0/12. We tried to advertise this with "network" comand  but i cant see these networks in BGP table.
How to advertise these summary networks through BGP.

I am a beginner with BGP......could you people help on the same ?
ASKER CERTIFIED SOLUTION
Avatar of pergr
pergr

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of senmohan

ASKER

Hi Pergr,

Thanks for your replay.

Do i need to remove these from config to do that?

"network 10.110.110.0 mask 255.255.255.0
network 172.29.200.48 mask 255.255.255.252
network 172.31.201.0 mask 255.255.255.0
redistribute ospf 10"

Did the aggregate command do any difference in existing sites?
Avatar of pergr
pergr

You can remove the network statements if you want to, but it is not necessary.

Not sure what you mean with "existing sites", but other sites will now only receive the /8 and /12 routes.

If all of your sites are using smaller networks in these /8 and /12, then it is probably not suitable to advertise only those routes - but your question was how to do these summary routes.
Thanks Pergr. Its working fine. :)