{"id":18845,"date":"2024-06-28T08:49:41","date_gmt":"2024-06-28T08:49:41","guid":{"rendered":"https:\/\/made4it.com.br\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/"},"modified":"2026-06-29T19:47:01","modified_gmt":"2026-06-29T19:47:01","slug":"how-to-set-up-bgp-sessions-on-ufispace-devices","status":"publish","type":"post","link":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/","title":{"rendered":"How to set up BGP sessions on Ufispace devices"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">This article will show you how to <strong>create BGP sessions on Ufispace devices<\/strong>, as well as some examples of filters, prefix lists and community application.<\/p>\n\n<p class=\"wp-block-paragraph\">To work out the configurations, the following scenario will be used:<\/p>\n\n<pre class=\"wp-block-code\"><code>BGP Ufispace: 10.0.0.1 \nNeighbor BGP: 10.0.0.2 \nAS Local: 65000 \nAS Remoto: 65010 \nPrefixo BGP local: 200.0.0.0\/22 \nPrefixo BGP remoto: 210.0.0.0\/22 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">BGP Policy: Default route announcement + local prefix<br\/>; Accept only the 210.0.0.0\/22 prefix with community tag 65000:1000<br\/>; Both using a route map<\/p>\n\n<p class=\"wp-block-paragraph\">Default route prefix list configuration:<\/p>\n\n<pre class=\"wp-block-code\"><code>ip prefix-list DEFAULT-ROUTE \npermit 0.0.0.0\/0 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Prefix-List configuration with prefixes 200.0.0.0\/22 and 210.0.0.0\/22, allowing up to \/24:<\/p>\n\n<pre class=\"wp-block-code\"><code>ip prefix-list LAB_NETWORK \npermit 200.0.0.0\/22 le 24 \n \nip prefix-list CUSTOMER-AS-65010 \npermit 210.0.0.0\/22 le 24 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Route-Map configuration allowing ASN prefix 65010 and marking community 65000:1000 :<\/p>\n\n<pre class=\"wp-block-code\"><code>route-map CUSTOMER-AS-65010-IN permit 10 \nmatch ip address prefix-list CUSTOMER-AS-65010 \nset community 65000:1000 \n \nroute-map CUSTOMER-AS-65010-IN deny 5000 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Route-Map configuration to announce default route and 200.0.0.0\/22 prefix:<\/p>\n\n<pre class=\"wp-block-code\"><code>route-map CUSTOMER-AS-65010-OUT permit 10 \nmatch ip address prefix-list DEFAULT-ROUTE \n \nroute-map CUSTOMER-AS-65010-OUT permit 20 \nmatch ip address prefix-list LAB_NETWORK \n \nroute-map CUSTOMER-AS-65010-OUT deny 5000 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Configuration of blackhole routes (to avoid static loops and create routes in the routing table):<\/p>\n\n<pre class=\"wp-block-code\"><code>ip route 200.0.0.0\/22 null \nip route 200.0.0.0\/23 null \nip route 200.0.2.0\/23 null <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Access BGP configuration by entering the Local AS:<\/p>\n\n<pre class=\"wp-block-code\"><code>router bgp 65000 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Configure Router-ID<\/p>\n\n<pre class=\"wp-block-code\"><code>bgp router-id 10.99.99.1 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">IPv4 network configuration:<\/p>\n\n<pre class=\"wp-block-code\"><code>address-family ipv4 \nnetwork 200.0.0.0\/22 \nnetwork 200.0.0.0\/23 \nnetwork 200.0.2.0\/23 \nexit <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">BGP neighbor configuration:<\/p>\n\n<pre class=\"wp-block-code\"><code>neighbor 10.0.0.2 remote-as 65010 \nneighbor 10.0.0.2 description CUSTOMER-AS-65010 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Configuring BGP filters:<\/p>\n\n<pre class=\"wp-block-code\"><code>address-family ipv4 \nneighbor 10.0.0.2 activate \nneighbor 10.0.0.2 route-map CUSTOMER-AS-65010-OUT out \nneighbor 10.0.0.2 route-map CUSTOMER-AS-65010-IN in \nexit <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Check configuration and apply:<\/p>\n\n<pre class=\"wp-block-code\"><code>exit \nshow transaction current \ncommit \nexit <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">To check the status of the BGP session:<\/p>\n\n<pre class=\"wp-block-code\"><code>OcNOS#show ip bgp summary \nBGP router identifier 10.99.99.1, local AS number 65000 \nBGP table version is 2 \n2 BGP AS-PATH entries \n1 BGP community entries \n \nNeighbor                 V   AS   MsgRcv    MsgSen TblVer   InQ   OutQ    Up\/Down   State\/PfxRcd \n10.0.0.2                 4 65010  611        619       2      0      0  00:06:21               3 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Check what is being announced in the BGP session:<\/p>\n\n<pre class=\"wp-block-code\"><code>OcNOS#show ip bgp neighbors 10.0.0.2 advertised-routes \n \nAddress family: IPv4 Unicast \nBGP table version is 2, local router ID is 10.99.99.1 \nStatus codes: s suppressed, d damped, a add-path, h history, * valid, > best, i - internal \nOrigin codes: i - IGP, e - EGP, ? - incomplete \n \n    Network          Next Hop            Metric    LocPrf   Weight Path \n*>   200.0.0.0\/22     10.0.0.1             0        100       32768  i \n*>   200.0.0.0\/23     10.0.0.1             0        100       32768  i \n*>   200.0.2.0\/23     10.0.0.1             0        100       32768  i <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Check what we have received as a prefix:<\/p>\n\n<pre class=\"wp-block-code\"><code>OcNOS#show ip bgp neighbors 10.0.0.2 routes \nBGP table version is 2, local router ID is 10.99.99.1 \nStatus codes: s suppressed, d damped, h history, a add-path, * valid, > best, i - internal, \n              l - labeled, S Stale \nOrigin codes: i - IGP, e - EGP, ? - incomplete \n \n    Network          Next Hop            Metric    LocPrf   Weight Path \n*>   210.0.0.0\/22     10.0.0.2             0        100       0   65010 i \n*>   210.0.0.0\/23     10.0.0.2             0        100       0   65010 i \n*>   210.0.2.0\/23     10.0.0.2             0        100       0   65010 i <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\"><strong>Summary of all settings applied<\/strong><\/p>\n\n<pre class=\"wp-block-code\"><code>! \nip prefix-list CUSTOMER-AS-65010 \n seq 5 permit 210.0.0.0\/22 le 24 \n! \nip prefix-list DEFAULT-ROUTE \n seq 5 permit 0.0.0.0\/0 \n! \nip prefix-list LAB_NETWORK \n seq 5 permit 200.0.0.0\/22 le 24 \n! \nroute-map CUSTOMER-AS-65010-IN permit 10 \n match ip address prefix-list CUSTOMER-AS-65010 \n set community 65000:1000 \n! \nroute-map CUSTOMER-AS-65010-IN deny 5000 \n! \nroute-map CUSTOMER-AS-65010-OUT permit 10 \n match ip address prefix-list DEFAULT-ROUTE \n! \nroute-map CUSTOMER-AS-65010-OUT permit 20 \n match ip address prefix-list LAB_NETWORK \n! \nroute-map CUSTOMER-AS-65010-OUT deny 5000 \n! \nrouter bgp 65000 \n bgp router-id 10.99.99.1 \n neighbor 10.0.0.2 remote-as 65010 \n neighbor 10.0.0.2 description CUSTOMER-AS-65010 \n ! \n address-family ipv4 unicast \n network 200.0.0.0\/22 \n network 200.0.0.0\/23 \n network 200.0.2.0\/23 \n neighbor 10.0.0.2 activate \n neighbor 10.0.0.2 route-map CUSTOMER-AS-65010-IN in \n neighbor 10.0.0.2 route-map CUSTOMER-AS-65010-OUT out \n exit-address-family \n! <\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>This article will show you how to create BGP sessions on Ufispace devices, as well as some examples of filters, prefix lists and community application. To work out the configurations, the following scenario will be used: BGP Policy: Default route announcement + local prefix; Accept only the 210.0.0.0\/22 prefix with community tag 65000:1000; Both using a route map Default route prefix list configuration: Prefix-List configuration with prefixes 200.0.0.0\/22 and 210.0.0.0\/22, allowing up to \/24: Route-Map configuration allowing ASN prefix 65010 and marking community 65000:1000 : Route-Map configuration to announce default route and 200.0.0.0\/22 prefix: Configuration of blackhole routes (to avoid static loops and create routes in the routing table): Access BGP configuration by entering the Local AS: Configure Router-ID IPv4 network configuration: BGP neighbor configuration: Configuring BGP filters: Check configuration and apply: To check the status of the BGP session: Check what is being announced in the BGP session: Check what we have received as a prefix: Summary of all settings applied<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[872,1390],"tags":[873,1388],"class_list":["post-18845","post","type-post","status-publish","format-standard","hentry","category-bgp","category-ufispace","tag-bgp","tag-ufispace"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"This article will show you how to create BGP sessions on Ufispace devices, as well as some examples of filters, prefix lists and community application. To work out the configurations, the following scenario will be used: BGP Ufispace: 10.0.0.1 Neighbor BGP: 10.0.0.2 AS Local: 65000 AS Remoto: 65010 Prefixo BGP local: 200.0.0.0\/22 Prefixo BGP remoto:\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Made4it\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Made4it -\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to set up BGP sessions on Ufispace devices - Made4it\" \/>\n\t\t<meta property=\"og:description\" content=\"This article will show you how to create BGP sessions on Ufispace devices, as well as some examples of filters, prefix lists and community application. To work out the configurations, the following scenario will be used: BGP Ufispace: 10.0.0.1 Neighbor BGP: 10.0.0.2 AS Local: 65000 AS Remoto: 65010 Prefixo BGP local: 200.0.0.0\/22 Prefixo BGP remoto:\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"87\" \/>\n\t\t<meta property=\"og:image:height\" content=\"27\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-06-28T08:49:41+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-06-29T19:47:01+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to set up BGP sessions on Ufispace devices - Made4it\" \/>\n\t\t<meta name=\"twitter:description\" content=\"This article will show you how to create BGP sessions on Ufispace devices, as well as some examples of filters, prefix lists and community application. To work out the configurations, the following scenario will be used: BGP Ufispace: 10.0.0.1 Neighbor BGP: 10.0.0.2 AS Local: 65000 AS Remoto: 65010 Prefixo BGP local: 200.0.0.0\/22 Prefixo BGP remoto:\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-set-up-bgp-sessions-on-ufispace-devices\\\/#blogposting\",\"name\":\"How to set up BGP sessions on Ufispace devices - Made4it\",\"headline\":\"How to set up BGP sessions on Ufispace devices\",\"author\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/logomade4it.png\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#articleImage\",\"width\":87,\"height\":27},\"datePublished\":\"2024-06-28T08:49:41+00:00\",\"dateModified\":\"2026-06-29T19:47:01+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-set-up-bgp-sessions-on-ufispace-devices\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-set-up-bgp-sessions-on-ufispace-devices\\\/#webpage\"},\"articleSection\":\"BGP, Ufispace, BGP, ufispace\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-set-up-bgp-sessions-on-ufispace-devices\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/bgp\\\/#listItem\",\"name\":\"BGP\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/bgp\\\/#listItem\",\"position\":2,\"name\":\"BGP\",\"item\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/bgp\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-set-up-bgp-sessions-on-ufispace-devices\\\/#listItem\",\"name\":\"How to set up BGP sessions on Ufispace devices\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-set-up-bgp-sessions-on-ufispace-devices\\\/#listItem\",\"position\":3,\"name\":\"How to set up BGP sessions on Ufispace devices\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/bgp\\\/#listItem\",\"name\":\"BGP\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\",\"name\":\"Made4it\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/logomade4it.png\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-set-up-bgp-sessions-on-ufispace-devices\\\/#organizationLogo\",\"width\":87,\"height\":27},\"image\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-set-up-bgp-sessions-on-ufispace-devices\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/\",\"name\":\"Made4it\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-set-up-bgp-sessions-on-ufispace-devices\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9e851ee58f38006902829c03b2dc8e42c8a735a5561b807ca366ed66bd41f2ca?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Made4it\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-set-up-bgp-sessions-on-ufispace-devices\\\/#webpage\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-set-up-bgp-sessions-on-ufispace-devices\\\/\",\"name\":\"How to set up BGP sessions on Ufispace devices - Made4it\",\"description\":\"This article will show you how to create BGP sessions on Ufispace devices, as well as some examples of filters, prefix lists and community application. To work out the configurations, the following scenario will be used: BGP Ufispace: 10.0.0.1 Neighbor BGP: 10.0.0.2 AS Local: 65000 AS Remoto: 65010 Prefixo BGP local: 200.0.0.0\\\/22 Prefixo BGP remoto:\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-set-up-bgp-sessions-on-ufispace-devices\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"datePublished\":\"2024-06-28T08:49:41+00:00\",\"dateModified\":\"2026-06-29T19:47:01+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"name\":\"Made4it\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to set up BGP sessions on Ufispace devices - Made4it","description":"This article will show you how to create BGP sessions on Ufispace devices, as well as some examples of filters, prefix lists and community application. To work out the configurations, the following scenario will be used: BGP Ufispace: 10.0.0.1 Neighbor BGP: 10.0.0.2 AS Local: 65000 AS Remoto: 65010 Prefixo BGP local: 200.0.0.0\/22 Prefixo BGP remoto:","canonical_url":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/#blogposting","name":"How to set up BGP sessions on Ufispace devices - Made4it","headline":"How to set up BGP sessions on Ufispace devices","author":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"publisher":{"@id":"https:\/\/made4it.com.br\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","@id":"https:\/\/made4it.com.br\/en\/#articleImage","width":87,"height":27},"datePublished":"2024-06-28T08:49:41+00:00","dateModified":"2026-06-29T19:47:01+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/#webpage"},"isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/#webpage"},"articleSection":"BGP, Ufispace, BGP, ufispace"},{"@type":"BreadcrumbList","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/#listItem","position":1,"name":"Home","item":"https:\/\/made4it.com.br\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/bgp\/#listItem","name":"BGP"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/bgp\/#listItem","position":2,"name":"BGP","item":"https:\/\/made4it.com.br\/en\/blog\/category\/bgp\/","nextItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/#listItem","name":"How to set up BGP sessions on Ufispace devices"},"previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/#listItem","position":3,"name":"How to set up BGP sessions on Ufispace devices","previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/bgp\/#listItem","name":"BGP"}}]},{"@type":"Organization","@id":"https:\/\/made4it.com.br\/en\/#organization","name":"Made4it","url":"https:\/\/made4it.com.br\/en\/","logo":{"@type":"ImageObject","url":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/#organizationLogo","width":87,"height":27},"image":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author","url":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/","name":"Made4it","image":{"@type":"ImageObject","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/9e851ee58f38006902829c03b2dc8e42c8a735a5561b807ca366ed66bd41f2ca?s=96&d=mm&r=g","width":96,"height":96,"caption":"Made4it"}},{"@type":"WebPage","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/#webpage","url":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/","name":"How to set up BGP sessions on Ufispace devices - Made4it","description":"This article will show you how to create BGP sessions on Ufispace devices, as well as some examples of filters, prefix lists and community application. To work out the configurations, the following scenario will be used: BGP Ufispace: 10.0.0.1 Neighbor BGP: 10.0.0.2 AS Local: 65000 AS Remoto: 65010 Prefixo BGP local: 200.0.0.0\/22 Prefixo BGP remoto:","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/#website"},"breadcrumb":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/#breadcrumblist"},"author":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"creator":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"datePublished":"2024-06-28T08:49:41+00:00","dateModified":"2026-06-29T19:47:01+00:00"},{"@type":"WebSite","@id":"https:\/\/made4it.com.br\/en\/#website","url":"https:\/\/made4it.com.br\/en\/","name":"Made4it","inLanguage":"en-US","publisher":{"@id":"https:\/\/made4it.com.br\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Made4it -","og:type":"article","og:title":"How to set up BGP sessions on Ufispace devices - Made4it","og:description":"This article will show you how to create BGP sessions on Ufispace devices, as well as some examples of filters, prefix lists and community application. To work out the configurations, the following scenario will be used: BGP Ufispace: 10.0.0.1 Neighbor BGP: 10.0.0.2 AS Local: 65000 AS Remoto: 65010 Prefixo BGP local: 200.0.0.0\/22 Prefixo BGP remoto:","og:url":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/","og:image":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","og:image:secure_url":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","og:image:width":87,"og:image:height":27,"article:published_time":"2024-06-28T08:49:41+00:00","article:modified_time":"2026-06-29T19:47:01+00:00","twitter:card":"summary_large_image","twitter:title":"How to set up BGP sessions on Ufispace devices - Made4it","twitter:description":"This article will show you how to create BGP sessions on Ufispace devices, as well as some examples of filters, prefix lists and community application. To work out the configurations, the following scenario will be used: BGP Ufispace: 10.0.0.1 Neighbor BGP: 10.0.0.2 AS Local: 65000 AS Remoto: 65010 Prefixo BGP local: 200.0.0.0\/22 Prefixo BGP remoto:","twitter:image":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png"},"aioseo_meta_data":{"post_id":"18845","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_custom_url":null,"og_image_custom_fields":null,"og_image_url":null,"og_image_width":null,"og_image_height":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_image_url":null,"twitter_title":null,"twitter_description":null,"schema_type":"default","schema_type_options":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null,"created":"2026-06-29 19:47:00","updated":"2026-06-29 21:04:25"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/made4it.com.br\/en\/\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/made4it.com.br\/en\/blog\/category\/bgp\/\" title=\"BGP\">BGP<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to set up BGP sessions on Ufispace devices\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/made4it.com.br\/en\/"},{"label":"BGP","link":"https:\/\/made4it.com.br\/en\/blog\/category\/bgp\/"},{"label":"How to set up BGP sessions on Ufispace devices","link":"https:\/\/made4it.com.br\/en\/blog\/how-to-set-up-bgp-sessions-on-ufispace-devices\/"}],"_links":{"self":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18845","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/comments?post=18845"}],"version-history":[{"count":1,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18845\/revisions"}],"predecessor-version":[{"id":18846,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18845\/revisions\/18846"}],"wp:attachment":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/media?parent=18845"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/categories?post=18845"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/tags?post=18845"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}