netjsonconfig icon indicating copy to clipboard operation
netjsonconfig copied to clipboard

[bug] Bridge and VLAN interaction

Open nemesifier opened this issue 10 months ago • 2 comments

Describe the bug A clear and concise description of the bug or unexpected behavior.

Steps To Reproduce Steps to reproduce the behavior:

  1. Create a template:
{
    "interfaces": [
        {
            "type": "bridge",
            "stp": false,
            "bridge_members": [
                "cpwlan0",
                "cpwlan1"
            ],
            "name": "br-wifi",
            "network": "wifi"
        },
        {
            "wireless": {
                "network": [
                    "wifi"
                ],
                "mode": "access_point",
                "radio": "radio0",
                "ssid": "SSID HERE",
                "encryption": {
                    "protocol": "none"
                },
                "wmm": true,
                "isolate": true,
                "macfilter": "disable",
                "maclist": []
            },
            "type": "wireless",
            "name": "cpwlan0"
        },
        {
            "wireless": {
                "network": [
                    "wifi"
                ],
                "mode": "access_point",
                "radio": "radio1",
                "ssid": "SSID HERE",
                "encryption": {
                    "protocol": "none"
                },
                "wmm": true,
                "isolate": true,
                "macfilter": "disable",
                "maclist": []
            },
            "type": "wireless",
            "name": "cpwlan1"
        },
        {
            "type": "8021q",
            "name": "br-wifi",
            "disabled": false,
            "vid": 200,
            "ingress_qos_mapping": [],
            "egress_qos_mapping": []
        }
    ]
}
  1. Assign the template to a device
  2. Look at the resulting configuration preview of the device and compare it with the config preview generated by the template

Result: they're not the same, the device conf is missing the br-wifi part.

Expected behavior The resulting configuration is the same.

System Informatioon:

  • OS: Ubuntu 24.04.1 LTS
  • Python Version: Python 3.12.3 (main, Jan 17 2025, 18:03:48) [GCC 13.3.0] on linux

nemesifier avatar Feb 14 '25 15:02 nemesifier

Apologies, was this issue ever fixed and implemented? I'm struggling with some automation for my configs with vlans, and they keep being wrong every time. Not sure if this is directly connected or not.

keyxmakerx avatar Oct 24 '25 02:10 keyxmakerx

@keyxmakerx in the recent releases we have addressed some VLAN issues.

I haven't tired replicating again this issue on the latest master yet

nemesifier avatar Oct 24 '25 07:10 nemesifier