{"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-08-21T18:44:08","modified_gmt":"2026-08-21T18:44:08","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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-1\"><code>enable <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Access configuration mode:<\/p>\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-2\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-3\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-4\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-5\"><code>exit <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Check for pending settings:<\/p>\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-6\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-7\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-8\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-9\"><code>commit <\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">To check the VLAN configuration:<\/p>\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-10\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-11\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-12\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-13\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-14\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-15\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-16\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-17\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-18\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-19\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-20\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-21\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-22\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-23\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-24\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-25\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-26\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-27\"><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 has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-28\"><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","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":[869,1390],"tags":[1388],"class_list":["post-18959","post","type-post","status-publish","format-standard","hentry","category-network","category-ufispace","tag-ufispace"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"On OcNOS, a VLAN requires a bridge with RSTP and a commit to take effect. Here&#039;s how to create VLANs in Ufispace and configure interfaces as trunk, access, and hybrid.\" \/>\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) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Made4it - Solu\u00e7\u00f5es de TI para Empresas e ISPs\" \/>\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=\"On OcNOS, a VLAN requires a bridge with RSTP and a commit to take effect. Here&#039;s how to create VLANs in Ufispace and configure interfaces as trunk, access, and hybrid.\" \/>\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-08-21T18:44:08+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=\"On OcNOS, a VLAN requires a bridge with RSTP and a commit to take effect. Here&#039;s how to create VLANs in Ufispace and configure interfaces as trunk, access, and hybrid.\" \/>\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-03:00\",\"dateModified\":\"2026-08-21T18:44:08-03: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\":\"Network, Ufispace, ufispace, Optional\"},{\"@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\\\/network\\\/#listItem\",\"name\":\"Network\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/network\\\/#listItem\",\"position\":2,\"name\":\"Network\",\"item\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/network\\\/\",\"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\\\/network\\\/#listItem\",\"name\":\"Network\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\",\"name\":\"Made4it\",\"description\":\"Solu\\u00e7\\u00f5es de TI para Empresas e ISPs\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"telephone\":\"+5543984854013\",\"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\"},\"sameAs\":[\"https:\\\/\\\/www.instagram.com\\\/made4it\\\/\"]},{\"@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\":\"On OcNOS, a VLAN requires a bridge with RSTP and a commit to take effect. Here's how to create VLANs in Ufispace and configure interfaces as trunk, access, and hybrid.\",\"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-03:00\",\"dateModified\":\"2026-08-21T18:44:08-03:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"name\":\"Made4it\",\"description\":\"Solu\\u00e7\\u00f5es de TI para Empresas e ISPs\",\"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":"On OcNOS, a VLAN requires a bridge with RSTP and a commit to take effect. Here's how to create VLANs in Ufispace and configure interfaces as trunk, access, and hybrid.","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-03:00","dateModified":"2026-08-21T18:44:08-03: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":"Network, Ufispace, ufispace, Optional"},{"@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\/network\/#listItem","name":"Network"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/network\/#listItem","position":2,"name":"Network","item":"https:\/\/made4it.com.br\/en\/blog\/category\/network\/","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\/network\/#listItem","name":"Network"}}]},{"@type":"Organization","@id":"https:\/\/made4it.com.br\/en\/#organization","name":"Made4it","description":"Solu\u00e7\u00f5es de TI para Empresas e ISPs","url":"https:\/\/made4it.com.br\/en\/","telephone":"+5543984854013","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"},"sameAs":["https:\/\/www.instagram.com\/made4it\/"]},{"@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":"On OcNOS, a VLAN requires a bridge with RSTP and a commit to take effect. Here's how to create VLANs in Ufispace and configure interfaces as trunk, access, and hybrid.","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-03:00","dateModified":"2026-08-21T18:44:08-03:00"},{"@type":"WebSite","@id":"https:\/\/made4it.com.br\/en\/#website","url":"https:\/\/made4it.com.br\/en\/","name":"Made4it","description":"Solu\u00e7\u00f5es de TI para Empresas e ISPs","inLanguage":"en-US","publisher":{"@id":"https:\/\/made4it.com.br\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Made4it - Solu\u00e7\u00f5es de TI para Empresas e ISPs","og:type":"article","og:title":"How to configure vlans on Ufispace devices - Made4it","og:description":"On OcNOS, a VLAN requires a bridge with RSTP and a commit to take effect. Here's how to create VLANs in Ufispace and configure interfaces as trunk, access, and hybrid.","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-08-21T18:44:08+00:00","twitter:card":"summary_large_image","twitter:title":"How to configure vlans on Ufispace devices - Made4it","twitter:description":"On OcNOS, a VLAN requires a bridge with RSTP and a commit to take effect. Here's how to create VLANs in Ufispace and configure interfaces as trunk, access, and hybrid.","twitter:image":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png"},"aioseo_meta_data":{"post_id":"18959","title":null,"description":"On OcNOS, a VLAN requires a bridge with RSTP and a commit to take effect. Here's how to create VLANs in Ufispace and configure interfaces as trunk, access, and hybrid. ","keywords":null,"keyphrases":{"focus":{"keyphrase":"vlan ufispace","score":38,"analysis":{"keyphraseInTitle":{"score":3,"maxScore":9,"error":1},"keyphraseInDescription":{"score":3,"maxScore":9,"error":1},"keyphraseLength":{"score":9,"maxScore":9,"error":0,"length":2},"keyphraseInURL":{"score":1,"maxScore":5,"error":1},"keyphraseInIntroduction":{"score":3,"maxScore":9,"error":1},"keyphraseInSubHeadings":[],"keyphraseInImageAlt":[],"keywordDensity":{"score":0,"type":"low","maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":"On OcNOS, a VLAN requires a bridge with RSTP and a commit to take effect. Here's how to create VLANs in Ufispace and configure interfaces as trunk, access, and hybrid. ","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":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":true,"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":"BlogPosting","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":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":{"subject":"","preview":"","content":""},"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"breadcrumb_settings":null,"seo_analyzer_scan_date":null,"created":"2026-07-01 14:41:07","updated":"2026-08-21 18:59:10","focus_keyword":"vlan ufispace","additional_keywords":null,"truseo_locale":null},"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\/network\/\" title=\"Network\">Network<\/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":"Network","link":"https:\/\/made4it.com.br\/en\/blog\/category\/network\/"},{"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":2,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18959\/revisions"}],"predecessor-version":[{"id":21966,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18959\/revisions\/21966"}],"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}]}}