<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Bgp - Tag - Fryguy's Blog</title><link>https://hugo.fryguy.net/tags/bgp/</link><description>Bgp - Tag - Fryguy's Blog</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Mon, 24 Sep 2012 12:25:02 +0000</lastBuildDate><atom:link href="https://hugo.fryguy.net/tags/bgp/" rel="self" type="application/rss+xml"/><item><title>IOS XR – iBGP and eBGP</title><link>https://hugo.fryguy.net/2012/09/24/ios-xr-ibgp-and-ebgp/</link><pubDate>Mon, 24 Sep 2012 12:25:02 +0000</pubDate><author>Fryguy</author><guid>https://hugo.fryguy.net/2012/09/24/ios-xr-ibgp-and-ebgp/</guid><description><![CDATA[<p><a href="/wp-content/uploads/2012/09/iosxrfryguy-8.jpg" rel=""></a><br>
BGP, this is where it starts to get different with IOS XR.<br>
First up, configuring an iBGP peering with R2’s 150.1.12.2 in AS1 and advertise our loopback interface.<br>
<span style="color: #0000ff;">RP/0/7/CPU0:R1(config)#</span><br>
<span style="color: #0000ff;">RP/0/7/CPU0:R1(config)#<span style="color: #ff0000;">router bgp 1</span></span><br>
Let’s define the network we want to advertise, under the address family:<br>
<span style="color: #0000ff;">RP/0/7/CPU0:R1(config-bgp)#<span style="color: #ff0000;">address-family ipv4 unicast </span></span><br>
<span style="color: #0000ff;">RP/0/7/CPU0:R1(config-bgp-af)#<span style="color: #ff0000;">net 1.1.1.1/32</span></span><br>
<span style="color: #0000ff;">RP/0/7/CPU0:R1(config-bgp-af)#<span style="color: #ff0000;">exit</span></span><br>
Now, we can configure the neighbor.  Notice all the commands for the neighbor are under the neighbor now – not next to the neighbor.<br>
<span style="color: #0000ff;">RP/0/7/CPU0:R1(config-bgp)#<span style="color: #ff0000;">nei 150.1.12.2</span></span><br>
<span style="color: #0000ff;">RP/0/7/CPU0:R1(config-bgp-nbr)#<span style="color: #ff0000;">remote-as 1</span></span><br>
<span style="color: #0000ff;">RP/0/7/CPU0:R1(config-bgp-nbr)#<span style="color: #ff0000;">address-family ipv4 unicast </span></span><br>
<span style="color: #0000ff;">RP/0/7/CPU0:R1(config-bgp-nbr-af)#<span style="color: #ff0000;">exit</span></span><br>
<span style="color: #0000ff;">RP/0/7/CPU0:R1(config-bgp-nbr)#<span style="color: #ff0000;">comm</span></span><br>
<span style="color: #0000ff;">Thu Mar 29 22:47:05.147 UTC</span><br>
<span style="color: #0000ff;">RP/0/7/CPU0:R1(config-bgp)#<span style="color: #ff0000;">exit</span></span><br>
<span style="color: #0000ff;">RP/0/7/CPU0:R1(config)#<span style="color: #ff0000;">exit</span></span><br>
Now, time to see if we have a neighbor established:<br>
<span style="color: #0000ff;">RP/0/7/CPU0:R1#<span style="color: #ff0000;">sh bgp nei 150.1.12.2</span></span><br>
<span style="color: #0000ff;">Thu Mar 29 22:48:13.338 UTC</span></p>]]></description></item><item><title>Basic MPLS continued – RIP</title><link>https://hugo.fryguy.net/2011/09/12/basic-mpls-continued-rip/</link><pubDate>Mon, 12 Sep 2011 12:05:42 +0000</pubDate><author>Fryguy</author><guid>https://hugo.fryguy.net/2011/09/12/basic-mpls-continued-rip/</guid><description><![CDATA[<p><a href="/wp-content/uploads/2011/09/CatChasingBug.jpg" rel=""></a><br>
The other day I posted some “basic” MPLS information and figured I could use that to build a bit more. In subsequent posts I will post the configs for EIGRP, OSPF, and BGP – but today I will post on RIP.<br>
So, this whole lab/post will build off the previous one – <a href="http://www.fryguy.net/2011/09/09/basic-mpls-with-vrf-rd-and-bgp-vpnv4/" target="_blank" rel="noopener noreffer ">LINK</a> – but will remove all the static routes and replace them with the RIP protocol. I will only post the configs for the CE (R1, R3, R4, R5) and PE (R2 and R5), the core will not change.</p>
<p align="center">
  
</p>
<p> </p>]]></description></item><item><title>DMVPN and Routing Protocols – BGP</title><link>https://hugo.fryguy.net/2011/08/06/dmvpn-and-routing-protocols-bgp/</link><pubDate>Sat, 06 Aug 2011 21:52:31 +0000</pubDate><author>Fryguy</author><guid>https://hugo.fryguy.net/2011/08/06/dmvpn-and-routing-protocols-bgp/</guid><description><![CDATA[  
This post will build off my last one, <a href="/2011/08/03/dmvpn/" target="_blank" rel="noopener noreferrer">DMVPN,</a> and here we will discuss the routing protocol options as well as each of their configurations.  I will break out each protocol into a separate post in order to help keep things straight, putting them all together has the potential to get confusing (for both you and me!).   The routing protocol options I will document are OSPF, RIPv2, EIGRP, and BGP and   each has some unique features and quirks, so I will try and point them out where necessary.  
The only problem that BGP introduces here is that it is a bit higher-touch for routing.  You will need to configure the spoke as well as the HUB to support the new neighbor relationship.  This might not be a big deal, but if you have quite a few of these sites, this means every add will require you to modify the hub router.  Guess we could call it job security 🙂  
Quick note:  When I am posting the configurations for the sites I will only notate the routing protocol additions.  If you need information on DMVPN configuration, see my previous post.  
<span style="color: #ff0000;"><strong>Router/Switch Output</strong></span>  
<span style="color: #3366ff;"><strong>Commands</strong></span>  
<span style="color: #339966;"><strong>Notes</strong></span>  
Lets start with the DMVPN hub.  
<span style="color: #339966;">First, lets get that loopoback created so we have something to advertise.</span>  
<span style="color: #ff0000;">Rack1DMVPN(config)#<span style="color: #3366ff;">interface Loopback0</span></span>  
 <span style="color: #ff0000;">Rack1DMVPN(config-if)#  <span style="color: #3366ff;">ip address 100.100.100.100 255.255.255.255</span></span>]]></description></item></channel></rss>