Is Beryl GL-MT1300 VLAN-aware?

I am looking to create VLANs on my network using managed switches that are VLAN-capable.

I would need a VLAN-aware router to source and service the VLANs.

Is the Beryl GL-MT1300 a VLAN-aware router?

Are there any settings I would need to turn on or configure to make it service my VLANs?

Thank you!

Upstream OpenWrt has started using DSA for switch configuration, which makes setting up VLANs easier. I haven’t tried setting up VLANs on the 3.x firmware (based on OpenWrt 19.07), but I assume it might be more complicated.

Thank you, this means that it is a VLAN-aware router, I assume. Please confirm.

Yes. I confirm.

I use 4.x snapshot firmware.
Part of the /etc/config/network

config device
        option name 'br-lan'
        option type 'bridge'
        list ports 'lan1'
        list ports 'lan2.3'

config interface 'lan'
        option device 'br-lan'
        option proto 'static'
        option ipaddr '192.168.8.1'
        option netmask '255.255.255.0'
        option ip6assign '60'
        option isolate '0'

I managed to use this configuration to assign an IP address to VLAN 3.

1 Like