{"id":316,"date":"2021-02-18T15:05:57","date_gmt":"2021-02-18T15:05:57","guid":{"rendered":"https:\/\/bluemap.co\/blog\/?p=316"},"modified":"2022-01-09T07:27:25","modified_gmt":"2022-01-09T07:27:25","slug":"how-to-configure-bgp-on-juniper-router","status":"publish","type":"post","link":"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/","title":{"rendered":"How to configure BGP on Juniper router?"},"content":{"rendered":"\n<p><strong>BGP<\/strong> is a path vector routing protocol used to exchange routing information among routers in different <strong>Autonomous Systems [ASs]<\/strong>. BGP operates over TCP port 179. It is a reliable but slow routing protocol and it is also the routing protocol which runs the internet. <a href=\"https:\/\/www.bluemap.co\/juniper-network-certified-internet-associate-jncia-junos\/\">JUNOS supports<\/a> BGP version 4 [v4]. This version of BGP adds support for Classless Inter-domain Routing (CIDR), which eliminates the concept of network classes.\u00a0BGP supports two types of neighbor relationship- ibgp [internal BGP peers- within same AS] and ebgp [external BGP peers &#8211; within different AS].\u00a0<\/p>\n\n\n\n<p>In this blog <strong>I will explain step by step configuration of BGP peers in Juniper vMX routers<\/strong>. To begin with, let us have a look at the topology:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"1024\" height=\"518\" src=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration-1-1024x518.png\" alt=\"\" class=\"wp-image-323\" srcset=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration-1-1024x518.png 1024w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration-1-300x152.png 300w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration-1-768x388.png 768w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration-1-1536x777.png 1536w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration-1-2048x1036.png 2048w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration-1-700x354.png 700w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration-1-520x263.png 520w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration-1-360x182.png 360w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration-1-250x126.png 250w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration-1-100x51.png 100w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>In this topology we have two Autonomous Systems &#8211; AS 100 and AS 200. In AS 100 we have vMX-1 and vMX-2 and in AS 200 we have vMX-3. <strong>Cisco routers 3725<\/strong> acts as end host which we will be using to check connectivity at the end of the configuration.&nbsp;<\/p>\n\n\n\n<p>Let us look at the steps involved to configure BGP in the above topology:<\/p>\n\n\n\n<ol><li><strong>IP Configuration on the interface<\/strong>: Assign IP addresses as displayed in the topology. You can copy paste the commands below in your router if you trying to create the same lab<\/li><\/ol>\n\n\n\n<p>vMX-1<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set interfaces ge-0\/0\/2 unit 0 family inet address 10.1.1.1\/24<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set interfaces ge-0\/0\/3 unit 0 family inet address 192.168.4.1\/30<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set interfaces lo0 unit 0 family inet address 1.1.1.1\/32<\/p>\n\n\n\n<p>vMX-2<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set interfaces ge-0\/0\/2 unit 0 family inet address 192.168.7.1\/30<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set interfaces ge-0\/0\/3 unit 0 family inet address 192.168.4.2\/30<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set interfaces lo0 unit 0 family inet address 4.4.4.4\/32<\/p>\n\n\n\n<p>vMX-3<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set interfaces ge-0\/0\/0 unit 0 family inet address 10.1.3.1\/24<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set interfaces ge-0\/0\/2 unit 0 family inet address 192.168.7.2\/30<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set interfaces lo0 unit 0 family inet address 6.6.6.6\/32<\/p>\n\n\n\n<p class=\"has-black-color has-text-color\"><strong>2. Autonomous System and Router-ID configuration<\/strong>: As shown in the topology the Autonomous System will be assigned as AS-100 for vMX-1 and vMX-2 and AS-200 for vMX-3. Router-ID is a logical parameter, you can either use the ones I have chosen or choose your own values<\/p>\n\n\n\n<p>vMX-1<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set routing-options router-id 1.1.1.1<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set routing-options autonomous-system 100<\/p>\n\n\n\n<p>vMX-2<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set routing-options router-id 4.4.4.4<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set routing-options autonomous-system 100<\/p>\n\n\n\n<p>vMX-3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set routing-options router-id 6.6.6.6<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set routing-options autonomous-system 200<\/p>\n\n\n\n<p class=\"has-black-color has-text-color\"><strong>3. eBGP peer configuration<\/strong>: eBGP peers are formed between routers which belong to two different Autonomous Systems. In our case eBGP peering will be done between vMX-2 of AS-100 with vMX-3 of AS-200. Follow the commands below to create eBGP peering. The address chosen for peering is the interface address for the routers.<\/p>\n\n\n\n<p>vMX-2<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-Ext type external<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-Ext local-address 192.168.7.1<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-Ext peer-as 200<\/p>\n\n\n\n<p>vMX-3<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-ext type external<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-ext local-address 192.168.7.2<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-ext peer-as 100<\/p>\n\n\n\n<p class=\"has-black-color has-text-color\"><strong>4. iBGP peer configuration<\/strong>:&nbsp;iBGP peers are formed between routers which belong to the same Autonomous System. In our case iBGP peering will be done between vMX-1 and vMX-2 in AS-100. In this case we choose the loopback IP addresses to establish iBGP peering, hence static routing is done on vMX routers to have connectivity with each other\u2019s loopback interfaces<\/p>\n\n\n\n<p>vMX-1<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-Internal type internal<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-Internal local-address 1.1.1.1<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-Internal peer-as 100<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set routing-options static route 4.4.4.4\/32 next-hop 192.168.4.2<\/p>\n\n\n\n<p>vMX-2<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-Internal type internal<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-Internal local-address 4.4.4.4<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set routing-options static route 1.1.1.1\/32 next-hop 192.168.4.1<\/p>\n\n\n\n<p class=\"has-black-color has-text-color\"><strong>5. Routing Policy configuration<\/strong>:&nbsp;Till the above commands we have successfully established BGP connectivity between the routers. Now the next step is to advertise networks in BGP and to do the Next-Hop configuration for our iBGP peers. Speaking about routing policies the default policy for BGP is JUNOS says that import all routes and export nothing. To change this behavior and export our directly connected network into BGP we have to design an export route policy for BGP. Policy will be applied on the following routers for following purposes:<\/p>\n\n\n\n<p>vMX-1: to advertise the connected the networks on vMX-1<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set policy-options policy-statement Conn from protocol direct<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set policy-options policy-statement Conn then accept<\/p>\n\n\n\n<p>vMX-2: to configure Next-Hop-Self for vMX-1 and advertise networks in BGP. [Remember the next-hop-rule in BGP!!]<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set policy-options policy-statement My-route from protocol direct<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set policy-options policy-statement My-route from protocol static<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set policy-options policy-statement My-route then accept<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set policy-options policy-statement NHP term 1 from route-filter 1.1.1.1\/32 exact<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set policy-options policy-statement NHP term 1 then next-hop self<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set policy-options policy-statement NHP term 2 from protocol bgp<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set policy-options policy-statement NHP term 2 from protocol direct<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set policy-options policy-statement NHP term 2 then accept<\/p>\n\n\n\n<p>vMX-3: to advertise the connected the networks on vMX-3<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set policy-options policy-statement My-Route from protocol direct<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set policy-options policy-statement My-Route then accept<\/p>\n\n\n\n<p class=\"has-black-color has-text-color\"><strong>6. Applying routing policy in BGP<\/strong>: Once the policies have been designed it is time to apply the policy in the BGP configuration:<\/p>\n\n\n\n<p>vMX-1<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-Internal neighbor 4.4.4.4 export Conn<\/p>\n\n\n\n<p>vMX-2<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-Ext neighbor 192.168.7.2 export My-route<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-Internal neighbor 1.1.1.1 export NHP<\/p>\n\n\n\n<p>vMX-3<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-text-color\">set protocols bgp group BGP-ext neighbor 192.168.7.1 export My-Route<\/p>\n\n\n\n<p class=\"has-black-color has-text-color\"><strong>7. Verification<\/strong>: The result of the above configuration is shown below:<\/p>\n\n\n\n<ul type=\"a\"><li>vMX-1 BGP peers<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"624\" height=\"104\" src=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-peers.jpg\" alt=\"\" class=\"wp-image-324\" srcset=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-peers.jpg 624w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-peers-300x50.jpg 300w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-peers-520x87.jpg 520w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-peers-360x60.jpg 360w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-peers-250x42.jpg 250w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-peers-100x17.jpg 100w\" sizes=\"(max-width: 624px) 100vw, 624px\" \/><\/figure>\n\n\n\n<ul><li>vMX-2 BGP Peers<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"624\" height=\"116\" src=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-2-BGP-peers.jpg\" alt=\"\" class=\"wp-image-325\" srcset=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-2-BGP-peers.jpg 624w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-2-BGP-peers-300x56.jpg 300w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-2-BGP-peers-520x97.jpg 520w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-2-BGP-peers-360x67.jpg 360w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-2-BGP-peers-250x46.jpg 250w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-2-BGP-peers-100x19.jpg 100w\" sizes=\"(max-width: 624px) 100vw, 624px\" \/><\/figure>\n\n\n\n<ul><li>vMX-3 BGP Peers<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"624\" height=\"104\" src=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-peers.jpg\" alt=\"\" class=\"wp-image-326\" srcset=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-peers.jpg 624w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-peers-300x50.jpg 300w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-peers-520x87.jpg 520w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-peers-360x60.jpg 360w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-peers-250x42.jpg 250w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-peers-100x17.jpg 100w\" sizes=\"(max-width: 624px) 100vw, 624px\" \/><\/figure>\n\n\n\n<ul><li>vMX-3 BGP Routes<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"584\" height=\"320\" src=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-routes.jpg\" alt=\"\" class=\"wp-image-327\" srcset=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-routes.jpg 584w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-routes-300x164.jpg 300w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-routes-520x285.jpg 520w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-routes-360x197.jpg 360w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-routes-250x137.jpg 250w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-3-BGP-routes-100x55.jpg 100w\" sizes=\"(max-width: 584px) 100vw, 584px\" \/><\/figure>\n\n\n\n<ul><li>vMX-1 BGP Routes<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"624\" height=\"392\" src=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-routes.jpg\" alt=\"\" class=\"wp-image-328\" srcset=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-routes.jpg 624w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-routes-300x188.jpg 300w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-routes-520x327.jpg 520w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-routes-360x226.jpg 360w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-routes-250x157.jpg 250w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/vMX-1-BGP-routes-100x63.jpg 100w\" sizes=\"(max-width: 624px) 100vw, 624px\" \/><\/figure>\n\n\n\n<ul><li>Connectivity between Cisco 3725 acting as end devices<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"624\" height=\"200\" src=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/Cisco-3725.jpg\" alt=\"\" class=\"wp-image-329\" srcset=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/Cisco-3725.jpg 624w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/Cisco-3725-300x96.jpg 300w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/Cisco-3725-520x167.jpg 520w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/Cisco-3725-360x115.jpg 360w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/Cisco-3725-250x80.jpg 250w, https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/Cisco-3725-100x32.jpg 100w\" sizes=\"(max-width: 624px) 100vw, 624px\" \/><\/figure>\n\n\n\n<p>To know more about trainings offered for Juniper Network do check out our website or get in touch with us at&nbsp;<a href=\"mailto:enquiry@bluemap.co\">enquiry@bluemap.co<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>BGP is a path vector routing protocol used to exchange routing information among routers in different Autonomous Systems [ASs]. BGP operates over TCP port 179. It is a reliable but slow routing protocol and it is also the routing protocol [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":318,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[49,50,48],"tags":[53,51,52,56,55,44,54],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v17.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to configure BGP on Juniper router | BlueMap Blogs<\/title>\n<meta name=\"description\" content=\"BGP is a path vector routing protocol used to exchange routing information among routers in different Autonomous Systems. Keep Reading...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to configure BGP on Juniper router | BlueMap Blogs\" \/>\n<meta property=\"og:description\" content=\"BGP is a path vector routing protocol used to exchange routing information among routers in different Autonomous Systems. Keep Reading...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/\" \/>\n<meta property=\"og:site_name\" content=\"Bluemap Blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-18T15:05:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-01-09T07:27:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2068\" \/>\n\t<meta property=\"og:image:height\" content=\"1046\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Omar Memon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/bluemap.co\/blog\/#website\",\"url\":\"https:\/\/bluemap.co\/blog\/\",\"name\":\"Bluemap Blog\",\"description\":\"Bluemap Networking\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/bluemap.co\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration.png\",\"contentUrl\":\"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration.png\",\"width\":2068,\"height\":1046,\"caption\":\"Juniper BGP Configuration\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/#webpage\",\"url\":\"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/\",\"name\":\"How to configure BGP on Juniper router | BlueMap Blogs\",\"isPartOf\":{\"@id\":\"https:\/\/bluemap.co\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/#primaryimage\"},\"datePublished\":\"2021-02-18T15:05:57+00:00\",\"dateModified\":\"2022-01-09T07:27:25+00:00\",\"author\":{\"@id\":\"https:\/\/bluemap.co\/blog\/#\/schema\/person\/9d599f7baf3378325f84bcb82f73806a\"},\"description\":\"BGP is a path vector routing protocol used to exchange routing information among routers in different Autonomous Systems. Keep Reading...\",\"breadcrumb\":{\"@id\":\"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/bluemap.co\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to configure BGP on Juniper router?\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/bluemap.co\/blog\/#\/schema\/person\/9d599f7baf3378325f84bcb82f73806a\",\"name\":\"Omar Memon\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/bluemap.co\/blog\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3c4adedcbb1ca216fa9c709387b3ce9a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3c4adedcbb1ca216fa9c709387b3ce9a?s=96&d=mm&r=g\",\"caption\":\"Omar Memon\"},\"description\":\"Network Consultant and Trainer by profession with knowledge in multi-vendor environment ranging from routing and switching in Cisco and Juniper to firewalls from Cisco, Palo Alto, Juniper, CheckPoint and Fortigate to virtualization in Cisco UCS and design and deployment of Cisco Viptela SD-WAN solution. Successfully designed and deployed green field and grey field networks for various small to mid-scale organizations.\",\"url\":\"https:\/\/bluemap.co\/blog\/author\/omar\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to configure BGP on Juniper router | BlueMap Blogs","description":"BGP is a path vector routing protocol used to exchange routing information among routers in different Autonomous Systems. Keep Reading...","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/","og_locale":"en_US","og_type":"article","og_title":"How to configure BGP on Juniper router | BlueMap Blogs","og_description":"BGP is a path vector routing protocol used to exchange routing information among routers in different Autonomous Systems. Keep Reading...","og_url":"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/","og_site_name":"Bluemap Blog","article_published_time":"2021-02-18T15:05:57+00:00","article_modified_time":"2022-01-09T07:27:25+00:00","og_image":[{"width":2068,"height":1046,"url":"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Written by":"Omar Memon","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/bluemap.co\/blog\/#website","url":"https:\/\/bluemap.co\/blog\/","name":"Bluemap Blog","description":"Bluemap Networking","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bluemap.co\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/#primaryimage","inLanguage":"en-US","url":"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration.png","contentUrl":"https:\/\/bluemap.co\/blog\/wp-content\/uploads\/2021\/02\/juniper-bgp-configuration.png","width":2068,"height":1046,"caption":"Juniper BGP Configuration"},{"@type":"WebPage","@id":"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/#webpage","url":"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/","name":"How to configure BGP on Juniper router | BlueMap Blogs","isPartOf":{"@id":"https:\/\/bluemap.co\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/#primaryimage"},"datePublished":"2021-02-18T15:05:57+00:00","dateModified":"2022-01-09T07:27:25+00:00","author":{"@id":"https:\/\/bluemap.co\/blog\/#\/schema\/person\/9d599f7baf3378325f84bcb82f73806a"},"description":"BGP is a path vector routing protocol used to exchange routing information among routers in different Autonomous Systems. Keep Reading...","breadcrumb":{"@id":"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/bluemap.co\/blog\/2021\/02\/how-to-configure-bgp-on-juniper-router\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bluemap.co\/blog\/"},{"@type":"ListItem","position":2,"name":"How to configure BGP on Juniper router?"}]},{"@type":"Person","@id":"https:\/\/bluemap.co\/blog\/#\/schema\/person\/9d599f7baf3378325f84bcb82f73806a","name":"Omar Memon","image":{"@type":"ImageObject","@id":"https:\/\/bluemap.co\/blog\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/3c4adedcbb1ca216fa9c709387b3ce9a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3c4adedcbb1ca216fa9c709387b3ce9a?s=96&d=mm&r=g","caption":"Omar Memon"},"description":"Network Consultant and Trainer by profession with knowledge in multi-vendor environment ranging from routing and switching in Cisco and Juniper to firewalls from Cisco, Palo Alto, Juniper, CheckPoint and Fortigate to virtualization in Cisco UCS and design and deployment of Cisco Viptela SD-WAN solution. Successfully designed and deployed green field and grey field networks for various small to mid-scale organizations.","url":"https:\/\/bluemap.co\/blog\/author\/omar\/"}]}},"_links":{"self":[{"href":"https:\/\/bluemap.co\/blog\/wp-json\/wp\/v2\/posts\/316"}],"collection":[{"href":"https:\/\/bluemap.co\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bluemap.co\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bluemap.co\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/bluemap.co\/blog\/wp-json\/wp\/v2\/comments?post=316"}],"version-history":[{"count":5,"href":"https:\/\/bluemap.co\/blog\/wp-json\/wp\/v2\/posts\/316\/revisions"}],"predecessor-version":[{"id":365,"href":"https:\/\/bluemap.co\/blog\/wp-json\/wp\/v2\/posts\/316\/revisions\/365"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bluemap.co\/blog\/wp-json\/wp\/v2\/media\/318"}],"wp:attachment":[{"href":"https:\/\/bluemap.co\/blog\/wp-json\/wp\/v2\/media?parent=316"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bluemap.co\/blog\/wp-json\/wp\/v2\/categories?post=316"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bluemap.co\/blog\/wp-json\/wp\/v2\/tags?post=316"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}