socallinuxexpo / scale-network

SCaLE's on-site expo network configurations, wifi, tooling, and scripts
https://www.socallinuxexpo.org/
BSD 3-Clause "New" or "Revised" License
46 stars 19 forks source link

BSS Coloring for Wi-Fi 6 #652

Open MrHamel opened 8 months ago

MrHamel commented 8 months ago

Description

Add BSS Coloring ID based on the last octet of the management IP address (2-63)

Acceptance Criteria

What is the expected outcome that resolves this issue?

BSS Coloring is added to the script (https://github.com/socallinuxexpo/scale-network/blob/master/openwrt/files/etc/udhcpc.user)

sarcasticadmin commented 8 months ago

Example /tmp/udhcpc.params:

udhcpc.params.txt

sarcasticadmin commented 8 months ago

We should key on e8450-ubi in board.json:

~# cat /etc/board.json | jq -r .
{
  "model": {
    "id": "linksys,e8450-ubi",
    "name": "Linksys E8450 (UBI)"
  },
  "led": {
    "wan": {
      "name": "WAN",
      "sysfs": "inet:blue",
      "type": "netdev",
      "device": "wan",
      "mode": "link tx rx"
    }
  },
  "network": {
    "lan": {
      "ports": [
        "lan1",
        "lan2",
        "lan3",
        "lan4"
      ],
      "protocol": "static"
    },
    "wan": {
      "device": "wan",
      "protocol": "dhcp"
    }
  },
  "wlan": {
    "wl0": {
      "path": "platform/18000000.wmac"
    },
    "wl1": {
      "path": "1a143000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0"
    },
    "wl2": {
      "path": "1a145000.pcie/pci0001:00/0001:00:01.0/0001:01:00.0"
    }
  }
}
sarcasticadmin commented 8 months ago

Additional info was recently added to the openwrt wiki regarding BSS coloring: https://openwrt.org/toh/linksys/e8450#beam_forming_and_enable_basic_service_set_bss_coloring

davidelang commented 8 months ago

did you add the bridger package to this build to enable the WED offload for 5GHz that's mentioned on the same page?

David Lang

On Sun, 4 Feb 2024, Robert James Hernandez wrote:

Additional info was recently added to the openwrt wiki regarding BSS coloring: https://openwrt.org/toh/linksys/e8450#beam_forming_and_enable_basic_service_set_bss_coloring

sarcasticadmin commented 8 months ago

yes its on the same page