{"id":5028,"date":"2026-03-08T15:54:25","date_gmt":"2026-03-08T15:54:25","guid":{"rendered":"https:\/\/geekmungus.co.uk\/?p=5028"},"modified":"2026-03-08T15:55:19","modified_gmt":"2026-03-08T15:55:19","slug":"bgp-test-lab-part-12-bgp-route-redistribution","status":"publish","type":"post","link":"https:\/\/geekmungus.co.uk\/?p=5028","title":{"rendered":"BGP Test Lab &#8211; Part 12 &#8211; BGP Route Redistribution"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">We&#8217;re now going to explore BGP Route Redistribution. BGP Route Distribution is where you can redistribute routes that the router has learnt via some other protocol, e.g. static, OSPF,&nbsp;EIGRP, RIP etc. into BGP, so in effect it becomes a BGP Route.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A common example for this might be the redistributing a default static route into your network (perhaps for access to the Internet). Another common example would be redistributing a route (or routes) to a network (or networks) that have been learnt via another protocol (e.g. OSPF) on a border router, where the network from which it learnt the routes doesn&#8217;t support BGP, therefore doesn&#8217;t have the capability to learn it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Its worth noting that when you enable BGP Redistribution for a particular protocol, it enables it for that protocol completely (global), If this would mean that you&#8217;d suddenly start advertising routes into BGP via redistribution that you don&#8217;t want to, you would need to use Policy to filter would actually get redistributed into BGP (from the source protocol) and what does not.<\/p>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-Topology\">Topology<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">For this article, we&#8217;re going to be adding a new router\/switch to the topology, which we can use to show how you can redistribute a static route; so we&#8217;ll need a static route we can redistribute, and therefore somewhere for it to go!<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We&#8217;re going to add Switch A into AS Blue, now it won&#8217;t run BGP, it will just act as a &#8220;Router on a Stick&#8221;, but it will be within the AS in terms of it&#8217;s routing (and what it connects to), but won&#8217;t be running BGP. It will have two local LAN networks on it, we can use to explore redistribution of static routes.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Without redistributing static routes being configured on Router G, only the networks directly connected to Router G (i.e. 10.1.2.0\/24) would be able to reach the networks hosted on Switch A (10.1.4.0\/24 and 10.1.5.0\/24).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We&#8217;ll also add a Default Static route on Switch A to point all traffic for all networks at Router G, so it has a route to everything, but Switch A won&#8217;t be participating in BGP, nor will it be participating into OSPF, although it&#8217;s point to point network 192.168.100.48\/30 will need to be added into OSPF for it to become a &#8220;feasible&#8221; route for the BGP routing.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"676\" src=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-72-1024x676.png\" alt=\"\" class=\"wp-image-5029\" srcset=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-72-1024x676.png 1024w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-72-300x198.png 300w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-72-768x507.png 768w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-72.png 1448w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-Preparation\">Preparation<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">We need to get Switch A and Router G configured with the networks and point to point link, so we have something we can use to experiment with the static route redistribution.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-SwitchA\">Switch A<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">We add a point to point network, along with two VLANs which will behave as our test LAN networks on the Switch\/Router. We then add a static default route to point all networks at the point to point IP of Router G.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Note we are not configuring BGP or any other routing protocol for that matter; this Switch will just act as a simple router using only static routing.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>create vlan \"SWA-RG\"\nconfigure vlan \"SWA-RG\" ipaddress 192.168.100.49\/30\nenable ipforwarding vlan \"SWA-RG\"\nconfigure vlan \"SWA-RG\" add port 49 untagged\n\ncreate vlan \"SwitchA-LAN1\" tag 1008\nconfigure vlan \"SwitchA-LAN1\" ipaddress 10.1.4.1\/24\nenable ipforwarding \"SwitchA-LAN1\"\nenable loopback-mode vlan \"SwitchA-LAN1\"\n\ncreate vlan \"SwitchA-LAN2\" tag 1009\nconfigure vlan \"SwitchA-LAN2\" ipaddress 10.1.5.1\/24\nenable ipforwarding \"SwitchA-LAN2\"\nenable loopback-mode vlan \"SwitchA-LAN2\"\n\nconfigure iproute add default 192.168.100.50 vr \"VR-Default\"<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If we were to examine the route table on Router G, we&#8217;d see that it does not yet have any knowledge of these two networks, or any routes to it. Let&#8217;s fix that.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-RouterG\">Router G<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">We add the VLAN for the point to point link to Switch A, we then need to ensure that this point to point network is added to OSPF (as a passive network &#8211; i.e. there is nothing at the other end which will be making join requests), so that when we use this network within BGP the point to point network is seen as feasible (and thus installed), because it is&nbsp;routable.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>create vlan \"RG-SWA\"\nconfigure vlan \"RG-SWA\" ipaddress 192.168.100.50\/30\nenable ipforwarding vlan \"RG-SWA\"\nconfigure vlan \"RG-SWA\" add port 48 untagged\n\nconfigure ospf add vlan \"RG-SWA\" area 0.0.0.0 passive<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">We then need to add some static routes so that\u00a0<strong>Router G<\/strong>\u00a0knows how to route to the networks\u00a0<strong>10.1.4.0\/24\u00a0<\/strong>and\u00a0<strong>10.1.5.0\/24<\/strong>.\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>configure iproute add 10.1.4.0\/24 192.168.100.49 vr \"VR-Default\"\nconfigure iproute add 10.1.5.0\/24 192.168.100.49 vr \"VR-Default\"<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If we examine the route table on Router G (not the BGP Routes), the whole route table, we can see the following, left, before &#8211; adding the static routes, then after on the right with the static routes added.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"722\" height=\"447\" src=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-73.png\" alt=\"\" class=\"wp-image-5030\" srcset=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-73.png 722w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-73-300x186.png 300w\" sizes=\"auto, (max-width: 722px) 100vw, 722px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"737\" height=\"488\" src=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-74.png\" alt=\"\" class=\"wp-image-5031\" srcset=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-74.png 737w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-74-300x199.png 300w\" sizes=\"auto, (max-width: 737px) 100vw, 737px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-Verify\">Verify<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If we try to ping from the LAN1 network interface (10.1.4.1) on Switch A to Router H&#8217;s LAN network interface (10.2.2.1), we can see that it is not working.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"744\" height=\"292\" src=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-75.png\" alt=\"\" class=\"wp-image-5032\" srcset=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-75.png 744w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-75-300x118.png 300w\" sizes=\"auto, (max-width: 744px) 100vw, 744px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Why? Because although Switch A has a route to any network (via it&#8217;s default static route pointing at Router G), and Router G knows a route back to Switch A&#8217;s LAN networks (10.1.4.0\/24 and 10.1.5.0\/24), no other part of the network knows these routes or how to reach these two networks.&nbsp;<\/p>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-RedistributeStaticRoutes\">Redistribute Static Routes<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">So what do we do? That&#8217;s where we can use redistribution to inject these routes into BGP, so they can be learnt by AS Blue, AS Green and AS Red, and all the routers within.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Extreme Networks (EXOS) calls redistribution in this case &#8220;Export&#8221;, so we&#8217;ll be exporting static route(s) into BGP.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Remember earlier that BGP export rules will export all static routes into BGP, it&#8217;s all or nothing on or off. In this particular example we don&#8217;t care, but in the next example we&#8217;ll want to be selective about the static routes we do and don&#8217;t want to export (redistribute) to BGP, so we&#8217;ll show how that can be achieved with&#8230;..you guessed it Policy.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-RouterG.1\">Router G<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Add the BGP export command to export (redistribute) all the static routes (known by Router G) to BGP. If you so wished you could specify which IPv4, IPv6 (and multicast addresses) routes you&#8217;d want, but in our case we&#8217;re just going to export static routes of all types.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>enable bgp export static<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-Verify.1\">Verify<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If we now check the BGP Route Table, normal Route Table and the BGP Transmitted Routes (to one of the neighbours) we can see that the routes to Switch A&#8217;s LAN networks 10.1.4.0\/24 and 10.1.5.0\/24 are present.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"827\" height=\"445\" src=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-76.png\" alt=\"\" class=\"wp-image-5033\" srcset=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-76.png 827w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-76-300x161.png 300w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-76-768x413.png 768w\" sizes=\"auto, (max-width: 827px) 100vw, 827px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"766\" height=\"540\" src=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-77.png\" alt=\"\" class=\"wp-image-5034\" srcset=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-77.png 766w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-77-300x211.png 300w\" sizes=\"auto, (max-width: 766px) 100vw, 766px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"725\" height=\"269\" src=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-78.png\" alt=\"\" class=\"wp-image-5035\" srcset=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-78.png 725w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-78-300x111.png 300w\" sizes=\"auto, (max-width: 725px) 100vw, 725px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Ignore the route for 10.1.0.0\/16 this was left in the switch configuration from some previous testing. It&#8217;s only the two routes 10.1.4.0\/24 and 10.1.5.0\/24 which we are interested in this particular example.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I removed the old static route that was configured on Router G, which covered the&nbsp;supernet&nbsp;for 10.1.0.0\/16 pointing at Switch A.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">But it is a good learning point. So why did this route that included all the networks within AS Blue not cause us problems? Why did all traffic for the 10.1.0.0\/16&nbsp;supernet&nbsp;and all the networks within for Router A&#8217;s LAN network, Router B&#8217;s LAN network, Router E&#8217;s LAN network all just get not funnelled into Switch A?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Well, It&#8217;s because there were more specific routes available. For example if traffic was destined for a network that existed e.g. 10.1.1.0\/24 which is hosted on Router A, then there would be a route that matches this, thus that would be used. But if the traffic was destined for a network that does not exist e.g. 10.1.10.0\/24, then there is no more specific route available and therefore this traffic would just be funnelled at Switch A, as being the only match for the 10.1.10.0\/24 network, matching the&nbsp;supernet&nbsp;10.1.0.0\/16.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you look at the BGP routes you&#8217;ll notice the column with &#8220;i&#8221; and &#8220;?&#8221;, this is the origin code.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>IGP (i) &#8211; Most Preferred:<\/strong>&nbsp;Indicates the route was generated by an Interior Gateway Protocol (IGP) and injected into BGP using the network statement. It signifies that the originating Autonomous System (AS) has full knowledge of the IP prefix.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Incomplete (?) &#8211; Least Preferred:<\/strong>&nbsp;Indicates that the origin of the route is unknown or was introduced into BGP via redistribution from another source (such as static, OSPF, or&nbsp;EIGRP&nbsp;routes).&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So in this case these new routes we added via export (redistribution) are marked as &#8220;incomplete&#8221; with a &#8220;?&#8221; because they have been introducted\/learned via a static route imported into BGP.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-Test\">Test<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If we now do a test to verify the configuration works as expected. So we&#8217;ll ping from Switch A to Router H (in AS Green).<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"555\" height=\"179\" src=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-79.png\" alt=\"\" class=\"wp-image-5036\" srcset=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-79.png 555w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-79-300x97.png 300w\" sizes=\"auto, (max-width: 555px) 100vw, 555px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"664\" height=\"221\" src=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-80.png\" alt=\"\" class=\"wp-image-5037\" srcset=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-80.png 664w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-80-300x100.png 300w\" sizes=\"auto, (max-width: 664px) 100vw, 664px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">As we can see we now have connectivity, because Router H (and all the rest of the Routers within our networks) now has learned the route back to 10.1.4.0\/24 which was exported (redistributed) from the static route into BGP.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"725\" height=\"475\" src=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-81.png\" alt=\"\" class=\"wp-image-5038\" srcset=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-81.png 725w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-81-300x197.png 300w\" sizes=\"auto, (max-width: 725px) 100vw, 725px\" \/><\/figure>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-RedistributeStaticRoute-RestrictwithPolicy\">Redistribute Static Route &#8211; Restrict with Policy<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">So we&#8217;ve configured to export (redistribute) static routes, but it is a bit of a blunt instrument, its now advertising all static routes on the Router G to BGP, what if we don&#8217;t want this? Policy can be used to limit what is and what is not exported (redistributed) into BGP. So let&#8217;s experiment with this, we are going to make it so only the 10.1.5.0\/24 is exported (redistributed) to BGP, we want the 10.1.4.0\/24 network not to be advertised into&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-RouterG.2\">Router G<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">We first create a policy document with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>vi STATIC-EXPORT.pol<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">And enter the following, and remember to check it with &#8220;check policy STATIC-EXPORT&#8221; after you&#8217;ve created it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>STATIC-EXPORT.pol<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>entry STATIC-EXPORT-PERMIT {\nif match any {\n    nlri 10.1.5.0\/24 ;\n}\nthen {\n    permit ;\n}\n}\nentry STATIC-EXPORT-DENY {\nif match any {\n    nlri 10.1.4.0\/24 ;\n}\nthen {\n    deny ;\n}\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Then we apply it to our export (redistribute) static command for BGP. Note that we need to disable the export before adding the policy, then re-enable.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>enable bgp export static address-family ipv4-unicast export-policy STATIC-EXPORT<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Before<\/h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"805\" height=\"468\" src=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-82.png\" alt=\"\" class=\"wp-image-5039\" srcset=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-82.png 805w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-82-300x174.png 300w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-82-768x446.png 768w\" sizes=\"auto, (max-width: 805px) 100vw, 805px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-After\">After&nbsp;<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">And now we can see we only have the 10.1.5.0\/24 network being exported (redistributed) into BGP, the policy is doing its thing by ensuring that 10.1.4.0\/24 is not exported. If we have other networks (from other protocols) we wish to permit or deny export, we have fine-grained control, so although it is an all or nothing export (redistirbution) it can be configured to be more specific.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"816\" height=\"445\" src=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-83.png\" alt=\"\" class=\"wp-image-5040\" srcset=\"https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-83.png 816w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-83-300x164.png 300w, https:\/\/geekmungus.co.uk\/wp-content\/uploads\/2026\/03\/image-83-768x419.png 768w\" sizes=\"auto, (max-width: 816px) 100vw, 816px\" \/><\/figure>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-Conclusion\">Conclusion<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">We have seen how we can use exports (redistribution) to bring routes for networks that a router has learned via either direct connection, static configuration, or from other dynamic protocols like&nbsp;EIGRP, OSPF etc. Exporting (redistribution) is likely something you&#8217;ll need to do at some point because networks tend to be a mixture of different protocols due to business need, mergers and acquisitions, system administrator design and knowledge or just plain old organic growth.<\/p>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"BGPTestLabPart12BGPRouteRedistribution-AdditionalInformation\">Additional Information<\/h1>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/extreme-networks.my.site.com\/ExtrArticleDetail?an=000080851\">https:\/\/extreme-networks.my.site.com\/ExtrArticleDetail?an=000080851<\/a><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/ssg-confluence.internal.sanger.ac.uk\/spaces\/IMT\/pages\/316146129\/BGP+Test+Lab+-+Part+12+-+BGP+Route+Redistribution\"><\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>We&#8217;re now going to explore BGP Route Redistribution. BGP Route Distribution is where you can redistribute routes that the router has learnt via some other protocol, e.g. static, OSPF,&nbsp;EIGRP, RIP etc. into BGP, so in effect it becomes a BGP Route. A common example for this might be the redistributing a default static route into &#8230; <a title=\"BGP Test Lab &#8211; Part 12 &#8211; BGP Route Redistribution\" class=\"read-more\" href=\"https:\/\/geekmungus.co.uk\/?p=5028\" aria-label=\"Read more about BGP Test Lab &#8211; Part 12 &#8211; BGP Route Redistribution\">Read more<\/a><\/p>\n","protected":false},"author":4,"featured_media":4783,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[62,41,17],"tags":[],"class_list":["post-5028","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bgp","category-extreme-networks","category-networking"],"_links":{"self":[{"href":"https:\/\/geekmungus.co.uk\/index.php?rest_route=\/wp\/v2\/posts\/5028","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/geekmungus.co.uk\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/geekmungus.co.uk\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/geekmungus.co.uk\/index.php?rest_route=\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/geekmungus.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5028"}],"version-history":[{"count":2,"href":"https:\/\/geekmungus.co.uk\/index.php?rest_route=\/wp\/v2\/posts\/5028\/revisions"}],"predecessor-version":[{"id":5044,"href":"https:\/\/geekmungus.co.uk\/index.php?rest_route=\/wp\/v2\/posts\/5028\/revisions\/5044"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/geekmungus.co.uk\/index.php?rest_route=\/wp\/v2\/media\/4783"}],"wp:attachment":[{"href":"https:\/\/geekmungus.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5028"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/geekmungus.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=5028"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/geekmungus.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=5028"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}