Flint2 and vlan

Hello everyone,
I would like to create two VLANs on lan3.

  • VLAN 10 → network 192.168.10.0/24
  • VLAN 11 → network 192.168.11.0/24

ChatGPT suggests the following configuration:

config device
    option name 'br-lan'
    option type 'bridge'
    option macaddr 'xx:xx:xx:xx:xx:xx'
    list ports 'lan1'
    list ports 'lan2'
    list ports 'lan3.10'

config device
    option type 'bridge'
    option name 'br-iot'
    option bridge_empty '1'
    list ports 'lan4'
    list ports 'lan5'
    list ports 'lan3.11'

config device
    option name 'lan3.10'
    option type '8021q'
    option ifname 'lan3'
    option vid '10'

config device
    option name 'lan3.11'
    option type '8021q'
    option ifname 'lan3'
    option vid '11'

Do you think this configuration is correct? Thank you

Hello,

Please refer to this post:

Thanks

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.