{"id":18953,"date":"2024-06-24T09:12:35","date_gmt":"2024-06-24T09:12:35","guid":{"rendered":"https:\/\/made4it.com.br\/blog\/l3-configuration-on-ufispace-equipment\/"},"modified":"2026-07-01T14:41:07","modified_gmt":"2026-07-01T14:41:07","slug":"l3-configuration-on-ufispace-equipment","status":"publish","type":"post","link":"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/","title":{"rendered":"L3 configuration on Ufispace equipment"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><strong>Static and Dynamic Routing Protocols, OSPF and BGP<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">We&#8217;re going to present Layer 3 (L3) configuration on Ufispace equipment, both static and dynamic, using protocols such as OSPF (Open Shortest Path First) and BGP (Border Gateway Protocol). Below is a guide to configuring these features. <\/p>\n\n<ol class=\"wp-block-list\">\n<li><strong>Access to equipment<\/strong><\/li>\n<\/ol>\n\n<p class=\"wp-block-paragraph\">To start the configuration, you need to access the Ufispace device via the command line interface (CLI). We will demonstrate access via ssh, but it can also be done via serial connection and telnet. <\/p>\n\n<pre class=\"wp-block-code\"><code>ssh admin@ip_do_equipamento<\/code><\/pre>\n\n<ol class=\"wp-block-list\" start=\"2\">\n<li><strong>Configuring L3 Interfaces<\/strong><\/li>\n<\/ol>\n\n<p class=\"wp-block-paragraph\">Configuration directly on the interface:<\/p>\n\n<pre class=\"wp-block-code\"><code>configure \n\ninterface xe1 \n\n  description interface fisica \n\n  ip address 192.168.1.1\/24 \n\n  ipv6 address 2001:db8:192:168:1:1\/126 \n\n  mtu 9198 \n\n  enable-rsvp <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Example vlan Sub-Interface configuration. Using vlan 4 as an example. <\/p>\n\n<pre class=\"wp-block-code\"><code>Configure \n\ninterface xe2.4 \n\n  description subinterface vlan4 \n\n  encapsulation dot1q 4 \n\n  ip address 192.168.2.1\/24 \n\n  ipv6 address 2001:db8:192:168:2:1\/126 \n\n  mtu 9198 \n\n  enable-rsvp <\/code><\/pre>\n\n<ol class=\"wp-block-list\" start=\"3\">\n<li><strong>Static Routing<\/strong><\/li>\n<\/ol>\n\n<p class=\"wp-block-paragraph\">To configure static routing, add static routes to the configuration:<\/p>\n\n<pre class=\"wp-block-code\"><code>configure \n\nip route 10.0.0.0\/24 192.168.1.254 \n\nip route 172.16.0.0\/24 192.168.2.254 \n\nip route 172.16.44.0\/24 192.168.3.254 <\/code><\/pre>\n\n<ol class=\"wp-block-list\" start=\"4\">\n<li><strong>Configuring OSPF V4 and V6.<\/strong><\/li>\n<\/ol>\n\n<p class=\"wp-block-paragraph\">OSPF is a dynamic routing protocol widely used in corporate networks. To configure OSPF on the Ufispace device: <\/p>\n\n<p class=\"wp-block-paragraph\">V4<\/p>\n\n<pre class=\"wp-block-code\"><code>configure \n\nrouter ospf \n\n  router-id 1.1.1.1 \n\n  bfd all-interfaces \n\n  network 192.168.1.0\/24 area 0.0.0.0 \n\n  network 192.168.2.0\/24 area 0.0.0.0 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">V6<\/p>\n\n<pre class=\"wp-block-code\"><code>router ipv6 ospf \n\n router-id 1.1.1.1 \n\n bfd all-interfaces <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Add the interfaces participating in OSPF using the following commands:<\/p>\n\n<pre class=\"wp-block-code\"><code>ip ospf network point-to-point \n\nipv6 ospf network point-to-point instance-id 0 \n\nipv6 router ospf area 0.0.0.0 instance-id 0 <\/code><\/pre>\n\n<ol class=\"wp-block-list\" start=\"5\">\n<li><strong>Configuration check<\/strong><\/li>\n<\/ol>\n\n<p class=\"wp-block-paragraph\">To check that the settings are correct and working:<\/p>\n\n<pre class=\"wp-block-code\"><code>show ip route \n\nshow ip ospf neighbor <\/code><\/pre>\n\n<ol class=\"wp-block-list\" start=\"6\">\n<li><strong>Saving the configuration<\/strong><\/li>\n<\/ol>\n\n<p class=\"wp-block-paragraph\">Finally, save the configuration to ensure that the changes are retained after a reboot:<\/p>\n\n<pre class=\"wp-block-code\"><code>write memory <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\"><strong>Conclusion<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Configuring static and dynamic routing on <strong>Ufispace<\/strong> equipment involves specific steps to define IP addresses on interfaces, add static routes and configure routing protocols such as OSPF and BGP. By following this guide, you can set up efficient and robust routing on your network. <\/p>\n\n<p class=\"wp-block-paragraph\">By the end of this guide, you will be ready to configure static and dynamic routing on Ufispace devices, using protocols such as OSPF and BGP to ensure an efficient and robust network. Follow the steps carefully, and if you have any questions, consult the official documentation or seek expert assistance. <\/p>\n\n<p class=\"wp-block-paragraph\">Would you like to speak with one of our UfiSpace and IPInfusion specialists?  <br\/>We at Made4it are experts in these technologies and offer comprehensive configuration and support services. In addition, we are official partners of Padtec, which sells UfiSpace routers. Contact us to learn more and optimize your network with professional solutions.  <br\/><br\/>See you later!<br\/><br\/><a href=\"\/undefined\" target=\"_blank\" rel=\"noopener\" title=\"https:\/\/made4it.com.br\/\">https:\/\/made4it.com.br\/<\/a> <br\/><br\/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Static and Dynamic Routing Protocols, OSPF and BGP We&#8217;re going to present Layer 3 (L3) configuration on Ufispace equipment, both static and dynamic, using protocols such as OSPF (Open Shortest Path First) and BGP (Border Gateway Protocol). Below is a guide to configuring these features. To start the configuration, you need to access the Ufispace device via the command line interface (CLI). We will demonstrate access via ssh, but it can also be done via serial connection and telnet. Configuration directly on the interface: Example vlan Sub-Interface configuration. Using vlan 4 as an example. To configure static routing, add static routes to the configuration: OSPF is a dynamic routing protocol widely used in corporate networks. To configure OSPF on the Ufispace device: V4 V6 Add the interfaces participating in OSPF using the following commands: To check that the settings are correct and working: Finally, save the configuration to ensure that the changes are retained after a reboot: Conclusion Configuring static and dynamic routing on Ufispace equipment involves specific steps to define IP addresses on interfaces, add static routes and configure routing protocols such as OSPF and BGP. By following this guide, you can set up efficient and robust routing on your network. By the end of this guide, you will be ready to configure static and dynamic routing on Ufispace devices, using protocols such as OSPF and BGP to ensure an efficient and robust network. Follow the steps carefully, and if you have any questions, consult the official documentation or seek expert assistance. Would you like to speak with one of our UfiSpace and IPInfusion specialists? We at Made4it are experts in these technologies and offer comprehensive configuration and support services. In addition, we are official partners of Padtec, which sells UfiSpace routers. Contact us to learn more and optimize your network with professional solutions. See you later! https:\/\/made4it.com.br\/<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1390,1394],"tags":[1388,1395],"class_list":["post-18953","post","type-post","status-publish","format-standard","hentry","category-ufispace","category-ufispace-2","tag-ufispace","tag-ufispace-2"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Static and Dynamic Routing Protocols, OSPF and BGP We&#039;re going to present Layer 3 (L3) configuration on Ufispace equipment, both static and dynamic, using protocols such as OSPF (Open Shortest Path First) and BGP (Border Gateway Protocol). Below is a guide to configuring these features. Access to equipment To start the configuration, you need to\" \/>\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\/l3-configuration-on-ufispace-equipment\/\" \/>\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=\"L3 configuration on Ufispace equipment - Made4it\" \/>\n\t\t<meta property=\"og:description\" content=\"Static and Dynamic Routing Protocols, OSPF and BGP We&#039;re going to present Layer 3 (L3) configuration on Ufispace equipment, both static and dynamic, using protocols such as OSPF (Open Shortest Path First) and BGP (Border Gateway Protocol). Below is a guide to configuring these features. Access to equipment To start the configuration, you need to\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/\" \/>\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-24T09:12:35+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-07-01T14:41:07+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"L3 configuration on Ufispace equipment - Made4it\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Static and Dynamic Routing Protocols, OSPF and BGP We&#039;re going to present Layer 3 (L3) configuration on Ufispace equipment, both static and dynamic, using protocols such as OSPF (Open Shortest Path First) and BGP (Border Gateway Protocol). Below is a guide to configuring these features. Access to equipment To start the configuration, you need to\" \/>\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\\\/l3-configuration-on-ufispace-equipment\\\/#blogposting\",\"name\":\"L3 configuration on Ufispace equipment - Made4it\",\"headline\":\"L3 configuration on Ufispace equipment\",\"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-24T09:12:35+00:00\",\"dateModified\":\"2026-07-01T14:41:07+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/l3-configuration-on-ufispace-equipment\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/l3-configuration-on-ufispace-equipment\\\/#webpage\"},\"articleSection\":\"Ufispace, Ufispace, ufispace, ufispace\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/l3-configuration-on-ufispace-equipment\\\/#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\\\/ufispace\\\/#listItem\",\"name\":\"Ufispace\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/ufispace\\\/#listItem\",\"position\":2,\"name\":\"Ufispace\",\"item\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/ufispace\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/l3-configuration-on-ufispace-equipment\\\/#listItem\",\"name\":\"L3 configuration on Ufispace equipment\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/l3-configuration-on-ufispace-equipment\\\/#listItem\",\"position\":3,\"name\":\"L3 configuration on Ufispace equipment\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/ufispace\\\/#listItem\",\"name\":\"Ufispace\"}}]},{\"@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\\\/l3-configuration-on-ufispace-equipment\\\/#organizationLogo\",\"width\":87,\"height\":27},\"image\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/l3-configuration-on-ufispace-equipment\\\/#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\\\/l3-configuration-on-ufispace-equipment\\\/#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\\\/l3-configuration-on-ufispace-equipment\\\/#webpage\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/l3-configuration-on-ufispace-equipment\\\/\",\"name\":\"L3 configuration on Ufispace equipment - Made4it\",\"description\":\"Static and Dynamic Routing Protocols, OSPF and BGP We're going to present Layer 3 (L3) configuration on Ufispace equipment, both static and dynamic, using protocols such as OSPF (Open Shortest Path First) and BGP (Border Gateway Protocol). Below is a guide to configuring these features. Access to equipment To start the configuration, you need to\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/l3-configuration-on-ufispace-equipment\\\/#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-24T09:12:35+00:00\",\"dateModified\":\"2026-07-01T14:41:07+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":"L3 configuration on Ufispace equipment - Made4it","description":"Static and Dynamic Routing Protocols, OSPF and BGP We're going to present Layer 3 (L3) configuration on Ufispace equipment, both static and dynamic, using protocols such as OSPF (Open Shortest Path First) and BGP (Border Gateway Protocol). Below is a guide to configuring these features. Access to equipment To start the configuration, you need to","canonical_url":"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/#blogposting","name":"L3 configuration on Ufispace equipment - Made4it","headline":"L3 configuration on Ufispace equipment","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-24T09:12:35+00:00","dateModified":"2026-07-01T14:41:07+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/#webpage"},"isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/#webpage"},"articleSection":"Ufispace, Ufispace, ufispace, ufispace"},{"@type":"BreadcrumbList","@id":"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/#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\/ufispace\/#listItem","name":"Ufispace"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/ufispace\/#listItem","position":2,"name":"Ufispace","item":"https:\/\/made4it.com.br\/en\/blog\/category\/ufispace\/","nextItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/#listItem","name":"L3 configuration on Ufispace equipment"},"previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/#listItem","position":3,"name":"L3 configuration on Ufispace equipment","previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/ufispace\/#listItem","name":"Ufispace"}}]},{"@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\/l3-configuration-on-ufispace-equipment\/#organizationLogo","width":87,"height":27},"image":{"@id":"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/#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\/l3-configuration-on-ufispace-equipment\/#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\/l3-configuration-on-ufispace-equipment\/#webpage","url":"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/","name":"L3 configuration on Ufispace equipment - Made4it","description":"Static and Dynamic Routing Protocols, OSPF and BGP We're going to present Layer 3 (L3) configuration on Ufispace equipment, both static and dynamic, using protocols such as OSPF (Open Shortest Path First) and BGP (Border Gateway Protocol). Below is a guide to configuring these features. Access to equipment To start the configuration, you need to","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/#website"},"breadcrumb":{"@id":"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/#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-24T09:12:35+00:00","dateModified":"2026-07-01T14:41:07+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":"L3 configuration on Ufispace equipment - Made4it","og:description":"Static and Dynamic Routing Protocols, OSPF and BGP We're going to present Layer 3 (L3) configuration on Ufispace equipment, both static and dynamic, using protocols such as OSPF (Open Shortest Path First) and BGP (Border Gateway Protocol). Below is a guide to configuring these features. Access to equipment To start the configuration, you need to","og:url":"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/","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-24T09:12:35+00:00","article:modified_time":"2026-07-01T14:41:07+00:00","twitter:card":"summary_large_image","twitter:title":"L3 configuration on Ufispace equipment - Made4it","twitter:description":"Static and Dynamic Routing Protocols, OSPF and BGP We're going to present Layer 3 (L3) configuration on Ufispace equipment, both static and dynamic, using protocols such as OSPF (Open Shortest Path First) and BGP (Border Gateway Protocol). Below is a guide to configuring these features. Access to equipment To start the configuration, you need to","twitter:image":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png"},"aioseo_meta_data":{"post_id":"18953","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-07-01 14:41:06","updated":"2026-07-01 14:43:02"},"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\/ufispace\/\" title=\"Ufispace\">Ufispace<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tL3 configuration on Ufispace equipment\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/made4it.com.br\/en\/"},{"label":"Ufispace","link":"https:\/\/made4it.com.br\/en\/blog\/category\/ufispace\/"},{"label":"L3 configuration on Ufispace equipment","link":"https:\/\/made4it.com.br\/en\/blog\/l3-configuration-on-ufispace-equipment\/"}],"_links":{"self":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18953","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=18953"}],"version-history":[{"count":1,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18953\/revisions"}],"predecessor-version":[{"id":18955,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18953\/revisions\/18955"}],"wp:attachment":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/media?parent=18953"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/categories?post=18953"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/tags?post=18953"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}