2
Votes

Omada Software Controller rejects IPv6 ULA addresses for switch VLAN Configuation

  This repeated request has been merged into the main thread IPv6 ULA support. Please vote on the main thread.

 
2
Votes

Omada Software Controller rejects IPv6 ULA addresses for switch VLAN Configuation

  This repeated request has been merged into the main thread IPv6 ULA support. Please vote on the main thread.
Omada Software Controller rejects IPv6 ULA addresses for switch VLAN Configuation
Omada Software Controller rejects IPv6 ULA addresses for switch VLAN Configuation
a week ago - last edited Sunday

I believe I’ve found a frontend validation bug in Omada Controller 6.0.0.25 affecting switch VLAN IPv6 configuration.

 

Summary
The Omada Controller UI rejects valid IPv6 Unique Local Addresses (ULA, fc00::/7) when configuring a static IPv6 address on a switch VLAN interface. ULAs are valid IPv6 addresses per RFC 4193, the switch firmware itself accepts and applies the configuration correctly.

 

Reproduction steps

  1. Go to Manage Device for a switch  - Config - VLAN Interface - Edit - IPv6 (Mode: Static)

  2. Enter a valid ULA, for example:

fd40:40:40::6/64

  1. Attempt to save

 

Observed behavior
The UI reports “Invalid format”.
Global unicast IPv6 addresses starting with 2001: are accepted.
ULA (fdxx:) and link-local addresses are rejected.

Expected behavior
Valid IPv6 ULAs (fc00::/7) should be accepted for switch VLAN interfaces.
ULAs are commonly used for internal IPv6 management addressing and DNS within a site.

 

Technical analysis
In Omada Controller 6.0.0.25, the switch VLAN interface IPv6 field is defined in device-config-drawer and uses the following validator:

 

new Re() ipv6() isRequired() rule

 

The underlying IPv6 validator defaults to:

  • uniqueLocalAddr = false

  • canbeLinkLocalAddr = false

  • allowAllAddress = false

 

As a result, valid IPv6 addresses such as ULAs are rejected during VLAN interface configuration, even though they are syntactically correct.

Elsewhere in the Omada UI, the same IPv6 validator is invoked with all flags true, indicating that support for ULAs and related address types is intended but not applied consistently in the switch VLAN config form.

 

Confirmation
I patched device-config-drawer to enable all required IPv6 validator options. After doing so, the controller successfully saved the configuration and pushed it to the switch, producing valid device configuration such as:


 

interface vlan 1

  ipv6 address fd40:40:40::6/64

 

The switch then responded correctly to IPv6 traffic (for example, ping6 from a host in the same VLAN).

 

Proposed fix
For switch VLAN IPv6 address validation in device-config-drawer, change:


 

new Re() ipv6() isRequired() rule

to:

new Re() ipv6({ uniqueLocalAddr: true, canbeLinkLocalAddr: true, allowAllAddress: true }) isRequired() rule

 

This matches the configuration already used in other parts of the Omada UI and resolves the issue consistently.

 

Why this matters
ULAs are standard practice for internal IPv6 management.
Rejecting them forces unnecessary use of global IPv6 or IPv4.
The error message “Invalid format” is misleading. The Format: 2001:: comment is even more confusing.

 

Environment
Omada Controller 6.0.0.25
Switch VLAN interface IPv6 static configuration
Issue is reproducible consistently

#1
Options
2 Reply
Re:Omada Software Controller rejects IPv6 ULA addresses for switch VLAN Configuation
a week ago - last edited Sunday

I had to remove the dots from the code samples above as this forum flags them as "Content or title contains illegal external links". Ironic considering the bug in Omada controller is also a validation bug.

#2
Options
Re:Omada Software Controller rejects IPv6 ULA addresses for switch VLAN Configuation
Sunday - last edited Sunday

Hi  @AdriftAtlas 

 

Thanks for posting here and thanks for your feedback. This is because Omada controller does not yet support IPV6 ULA. 

You can add your vote in the following post. Thanks for your understanding.

IPv6 ULA support

 

To better consolidate and clarify the needs expressed, we will merge your post with the main discussion thread. If you're interested, please visit the main post to cast your vote.

#3
Options