{"id":18959,"date":"2024-06-24T08:59:54","date_gmt":"2024-06-24T08:59:54","guid":{"rendered":"https:\/\/made4it.com.br\/blog\/how-to-configure-vlans-on-ufispace-devices\/"},"modified":"2026-07-01T14:41:07","modified_gmt":"2026-07-01T14:41:07","slug":"how-to-configure-vlans-on-ufispace-devices","status":"publish","type":"post","link":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-vlans-on-ufispace-devices\/","title":{"rendered":"How to configure vlans on Ufispace devices"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">This article will show you how to configure vlans on Ufispace devices in trunk, hybrid and access mode.<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>First of all, here&#8217;s a step-by-step guide on how to create a VLAN:<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Access Privileged mode:<\/p>\n\n<pre class=\"wp-block-code\"><code>enable <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Access configuration mode:<\/p>\n\n<pre class=\"wp-block-code\"><code>configure terminal <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Create Bridge and configure RSTP protocol (OcNos requirement).<\/p>\n\n<pre class=\"wp-block-code\"><code>bridge 1 protocol rstp vlan-bridge <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Create a Vlan and associate it to the bridge created:<\/p>\n\n<pre class=\"wp-block-code\"><code>vlan database \nvlan 100 bridge 1 name VLAN_LAB <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Exit &#8220;vlan database&#8221; mode<\/p>\n\n<pre class=\"wp-block-code\"><code>exit <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Check for pending settings:<\/p>\n\n<pre class=\"wp-block-code\"><code>show transaction current <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Expected output from the above command:<\/p>\n\n<pre class=\"wp-block-code\"><code>OcNOS(config)#show transaction current \nbridge 1 protocol rstp vlan-bridge \nvlan database \nvlan 100 bridge 1 name VLAN_LAB \nexit <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">If you need to undo the settings, you can use the command:<\/p>\n\n<pre class=\"wp-block-code\"><code>abort transaction <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">If the settings are correct, they can be applied with the command:<\/p>\n\n<pre class=\"wp-block-code\"><code>commit <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">To check the VLAN configuration:<\/p>\n\n<pre class=\"wp-block-code\"><code>show vlan 100 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Once the Vlan has been created, it must be assigned to an interface, either in TAG or UNTAGGED mode (in access).<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>How to configure VLAN in Trunk mode:<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Access interface:<\/p>\n\n<pre class=\"wp-block-code\"><code>interface xe47 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Configure in Layer2 mode and assign a Bridge (created previously):<\/p>\n\n<pre class=\"wp-block-code\"><code>switchport \n bridge-group 1 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Configure interface mode in Trunk:<\/p>\n\n<pre class=\"wp-block-code\"><code>switchport mode trunk <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Configure vlan in TAG on the interface:<\/p>\n\n<pre class=\"wp-block-code\"><code>switchport trunk allowed vlan add 100 <\/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 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\"><strong>How to configure VLAN in Access mode<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Create a Vlan and associate it to the bridge created:<\/p>\n\n<pre class=\"wp-block-code\"><code>vlan database \nvlan 100 bridge 1 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Access interface:<\/p>\n\n<pre class=\"wp-block-code\"><code>interface xe46 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Configure in Layer2 mode and assign a Bridge:<\/p>\n\n<pre class=\"wp-block-code\"><code>switchport \n bridge-group 1 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Configure interface mode in Trunk:<\/p>\n\n<pre class=\"wp-block-code\"><code>switchport access <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Set vlan to UNTAGGED on the interface:<\/p>\n\n<pre class=\"wp-block-code\"><code>switchport access vlan 100 <\/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 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\"><strong>How to configure VLAN in Hybrid mode<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Access interface:<\/p>\n\n<pre class=\"wp-block-code\"><code>interface xe1 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Configure in Layer2 mode and assign a Bridge:<\/p>\n\n<pre class=\"wp-block-code\"><code>switchport \nbridge-group 1 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Set the interface mode to Hybrid:<\/p>\n\n<pre class=\"wp-block-code\"><code>switchport mode hybrid <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Set vlan to UNTAGGED on the interface:<\/p>\n\n<pre class=\"wp-block-code\"><code>switchport hybrid vlan 200 <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Configure vlan in TAGGED on the interface:<\/p>\n\n<pre class=\"wp-block-code\"><code>switchport hybrid allowed vlan add 300 egress-tagged enable <\/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 <\/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>bridge 1 protocol rstp vlan-bridge \n! \nvlan database \n vlan 100 bridge 1 name VLAN_LAB \n vlan 200 bridge 1 \n vlan 300 bridge 1 \n! \ninterface xe1 \n switchport \n bridge-group 1 \n switchport mode hybrid \n switchport hybrid vlan 200 \n switchport mode hybrid acceptable-frame-type all \n switchport hybrid allowed vlan add 300 egress-tagged enable \n! \ninterface xe46 \n switchport \n bridge-group 1 \n switchport mode access \n switchport access vlan 100 \n! \ninterface xe47 \n switchport \n bridge-group 1 \n switchport mode trunk \n switchport trunk allowed vlan add 100 \n! <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Once you have completed all these detailed configurations, you will be able to manage VLANs efficiently on Ufispace devices, ensuring an organized and secure network. Follow the steps carefully, and if you have any questions, don\u2019t hesitate to consult the official documentation or contact specialized technical support. <\/p>\n\n<p class=\"wp-block-paragraph\">Would you like to speak with one of our UfiSpace and IPInfusion specialists?  <\/p>\n\n<p class=\"wp-block-paragraph\">We at Made4it are experts in these technologies and offer comprehensive configuration and support services. <br\/>Contact our consultants to learn more and optimize your network with professional solutions: <br\/><br\/><a href=\"https:\/\/made4it.com.br\/en\/\" target=\"_blank\" rel=\"noopener\" title=\"\">https:\/\/made4it.com.br\/<\/a><\/p>\n\n<p class=\"has-black-color has-text-color wp-block-paragraph\"><\/p>\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article will show you how to configure vlans on Ufispace devices in trunk, hybrid and access mode. First of all, here&#8217;s a step-by-step guide on how to create a VLAN: Access Privileged mode: Access configuration mode: Create Bridge and configure RSTP protocol (OcNos requirement). Create a Vlan and associate it to the bridge created: Exit &#8220;vlan database&#8221; mode Check for pending settings: Expected output from the above command: If you need to undo the settings, you can use the command: If the settings are correct, they can be applied with the command: To check the VLAN configuration: Once the Vlan has been created, it must be assigned to an interface, either in TAG or UNTAGGED mode (in access). How to configure VLAN in Trunk mode: Access interface: Configure in Layer2 mode and assign a Bridge (created previously): Configure interface mode in Trunk: Configure vlan in TAG on the interface: Check configuration and apply: How to configure VLAN in Access mode Create a Vlan and associate it to the bridge created: Access interface: Configure in Layer2 mode and assign a Bridge: Configure interface mode in Trunk: Set vlan to UNTAGGED on the interface: Check configuration and apply: How to configure VLAN in Hybrid mode Access interface: Configure in Layer2 mode and assign a Bridge: Set the interface mode to Hybrid: Set vlan to UNTAGGED on the interface: Configure vlan in TAGGED on the interface: Check configuration and apply: Summary of all settings applied: Once you have completed all these detailed configurations, you will be able to manage VLANs efficiently on Ufispace devices, ensuring an organized and secure network. Follow the steps carefully, and if you have any questions, don\u2019t hesitate to consult the official documentation or contact specialized technical support. 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. Contact our consultants to learn more and optimize your network with professional solutions: 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],"tags":[1388],"class_list":["post-18959","post","type-post","status-publish","format-standard","hentry","category-ufispace","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 configure vlans on Ufispace devices in trunk, hybrid and access mode. First of all, here&#039;s a step-by-step guide on how to create a VLAN: Access Privileged mode: enable Access configuration mode: configure terminal Create Bridge and configure RSTP protocol (OcNos requirement). bridge 1 protocol rstp vlan-bridge Create a\" \/>\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-configure-vlans-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 configure vlans on Ufispace devices - Made4it\" \/>\n\t\t<meta property=\"og:description\" content=\"This article will show you how to configure vlans on Ufispace devices in trunk, hybrid and access mode. First of all, here&#039;s a step-by-step guide on how to create a VLAN: Access Privileged mode: enable Access configuration mode: configure terminal Create Bridge and configure RSTP protocol (OcNos requirement). bridge 1 protocol rstp vlan-bridge Create a\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-vlans-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-24T08:59:54+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=\"How to configure vlans on Ufispace devices - Made4it\" \/>\n\t\t<meta name=\"twitter:description\" content=\"This article will show you how to configure vlans on Ufispace devices in trunk, hybrid and access mode. First of all, here&#039;s a step-by-step guide on how to create a VLAN: Access Privileged mode: enable Access configuration mode: configure terminal Create Bridge and configure RSTP protocol (OcNos requirement). bridge 1 protocol rstp vlan-bridge Create a\" \/>\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-configure-vlans-on-ufispace-devices\\\/#blogposting\",\"name\":\"How to configure vlans on Ufispace devices - Made4it\",\"headline\":\"How to configure vlans 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-24T08:59:54+00:00\",\"dateModified\":\"2026-07-01T14:41:07+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-vlans-on-ufispace-devices\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-vlans-on-ufispace-devices\\\/#webpage\"},\"articleSection\":\"Ufispace, ufispace\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-vlans-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\\\/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\\\/how-to-configure-vlans-on-ufispace-devices\\\/#listItem\",\"name\":\"How to configure vlans 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-configure-vlans-on-ufispace-devices\\\/#listItem\",\"position\":3,\"name\":\"How to configure vlans on Ufispace devices\",\"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\\\/how-to-configure-vlans-on-ufispace-devices\\\/#organizationLogo\",\"width\":87,\"height\":27},\"image\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-vlans-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-configure-vlans-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-configure-vlans-on-ufispace-devices\\\/#webpage\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-vlans-on-ufispace-devices\\\/\",\"name\":\"How to configure vlans on Ufispace devices - Made4it\",\"description\":\"This article will show you how to configure vlans on Ufispace devices in trunk, hybrid and access mode. First of all, here's a step-by-step guide on how to create a VLAN: Access Privileged mode: enable Access configuration mode: configure terminal Create Bridge and configure RSTP protocol (OcNos requirement). bridge 1 protocol rstp vlan-bridge Create a\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-vlans-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-24T08:59:54+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":"How to configure vlans on Ufispace devices - Made4it","description":"This article will show you how to configure vlans on Ufispace devices in trunk, hybrid and access mode. First of all, here's a step-by-step guide on how to create a VLAN: Access Privileged mode: enable Access configuration mode: configure terminal Create Bridge and configure RSTP protocol (OcNos requirement). bridge 1 protocol rstp vlan-bridge Create a","canonical_url":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-vlans-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-configure-vlans-on-ufispace-devices\/#blogposting","name":"How to configure vlans on Ufispace devices - Made4it","headline":"How to configure vlans 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-24T08:59:54+00:00","dateModified":"2026-07-01T14:41:07+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-vlans-on-ufispace-devices\/#webpage"},"isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-vlans-on-ufispace-devices\/#webpage"},"articleSection":"Ufispace, ufispace"},{"@type":"BreadcrumbList","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-vlans-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\/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\/how-to-configure-vlans-on-ufispace-devices\/#listItem","name":"How to configure vlans 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-configure-vlans-on-ufispace-devices\/#listItem","position":3,"name":"How to configure vlans on Ufispace devices","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\/how-to-configure-vlans-on-ufispace-devices\/#organizationLogo","width":87,"height":27},"image":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-vlans-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-configure-vlans-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-configure-vlans-on-ufispace-devices\/#webpage","url":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-vlans-on-ufispace-devices\/","name":"How to configure vlans on Ufispace devices - Made4it","description":"This article will show you how to configure vlans on Ufispace devices in trunk, hybrid and access mode. First of all, here's a step-by-step guide on how to create a VLAN: Access Privileged mode: enable Access configuration mode: configure terminal Create Bridge and configure RSTP protocol (OcNos requirement). bridge 1 protocol rstp vlan-bridge Create a","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/#website"},"breadcrumb":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-vlans-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-24T08:59:54+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":"How to configure vlans on Ufispace devices - Made4it","og:description":"This article will show you how to configure vlans on Ufispace devices in trunk, hybrid and access mode. First of all, here's a step-by-step guide on how to create a VLAN: Access Privileged mode: enable Access configuration mode: configure terminal Create Bridge and configure RSTP protocol (OcNos requirement). bridge 1 protocol rstp vlan-bridge Create a","og:url":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-vlans-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-24T08:59:54+00:00","article:modified_time":"2026-07-01T14:41:07+00:00","twitter:card":"summary_large_image","twitter:title":"How to configure vlans on Ufispace devices - Made4it","twitter:description":"This article will show you how to configure vlans on Ufispace devices in trunk, hybrid and access mode. First of all, here's a step-by-step guide on how to create a VLAN: Access Privileged mode: enable Access configuration mode: configure terminal Create Bridge and configure RSTP protocol (OcNos requirement). bridge 1 protocol rstp vlan-bridge Create a","twitter:image":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png"},"aioseo_meta_data":{"post_id":"18959","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:07","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\tHow to configure vlans on Ufispace devices\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":"How to configure vlans on Ufispace devices","link":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-vlans-on-ufispace-devices\/"}],"_links":{"self":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18959","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=18959"}],"version-history":[{"count":1,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18959\/revisions"}],"predecessor-version":[{"id":18961,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18959\/revisions\/18961"}],"wp:attachment":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/media?parent=18959"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/categories?post=18959"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/tags?post=18959"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}