Peer group in a set of BGP neighbor that share some policy. Policy that can be the same, for example, route-map, filter-list, prefix-list, update-source, route-reflector client. Peer group can reduce cpu process consumption, also configuration effort.
Example
BGP Configuration Using Peer Group In Cisco Router
Before using Peer Group
router bgp 65000
neighbor 10.10.1.1 remote-as 65000
neighbor 10.10.1.1 update-source loopback0
neighbor 10.10.1.1 route-reflector client
neighbor 10.10.1.1 next-hop self
neighbor 10.10.1.2 remote-as 65000
neighbor 10.10.1.2 update-source loopback0
neighbor 10.10.1.2 route-reflector client
neighbor 10.10.1.2 next-hop self
After using Peer Group
router bgp 65000
neighbor INTERNAL-PEER peer-group
neighbor INTERNAL-PEER update-spurce loopback0
neighbor INTERNAL-PEER route-reflector client
neighbor INTERNAL-PEER next-hop self
neighbor 10.10.10.1 remote-as 65000
neighbor 10.10.10.1 peer-group INTERNAL-PEER
neighbor 10.10.10.2 remote-as 65000
neighbor 10.10.10.2 peer-group INTERNAL-PEER
BGP Configuration Using Peer Group in Juniper Router
In JunOS, by default neighbor is create under group, a.k.a peer group. So, if you want share policy, just apply policy under group, not under specific neighbor.
[8:21 PM
|
0
comments
]
Related Posts
BGP
- Basic BGP Tutorial
- Configure Route Reflector On Cisco Router
- Configure Route Reflector On Juniper Router
- TeliaSonera International BGP Community String
- Tiscali International Network (TINet) BGP Community String
- AT&T BGP Community String
- BGP Configuration Using Route Reflector
- Understanding BGP Communities
- DTAG BGP Community String
- Verizon BGP Community String
- Cogent BGP Community String
- Savvis BGP Community String
- Level3 BGP Community String
- Global Crossing BGP Community String
- Route Influence Using BGP Community
- Sample BGP Regular Expressions
- BGP Route Selection Criteria
- Configuring BGP On Cisco Router
- Configuring BGP On Juniper Router
0 comments
Post a Comment