Saturday, February 1, 2014

Cisco Router: BGP Sample/Template Config

BGP is a routing protocol, and if you are reading this post, I suppose you know that already.  I went onsite to a customer that needed some router config done for a connection to an MPLS.  The ISP was using BGP for routing and so I needed to get that configured, among other interface config and some static routing.  Here is the BGP template below if you need one.  This config was for one connection to the MPLS.

router bgp 1234
 bgp log-neighbor-changes
 neighbor 10.12.51.14 remote-as 45677
 !
 address-family ipv4
 network 10.10.0.0 mask 255.255.0.0
  redistribute connected
  neighbor 10.12.51.14 activate
  neighbor 10.12.51.14 advertisement-interval 5
 exit-address-family

No comments:

Post a Comment

Your comment will be reviewed for approval. Thank you for submitting your comments.