From ab3ab138a7e2910c01338f54b153f7f76eedcf6d Mon Sep 17 00:00:00 2001 From: Sean Khan Date: Tue, 29 Oct 2024 13:24:11 -0400 Subject: [PATCH] nss-setup: fix network in wifi + formatting - fix issue #15: minor config mistake in the new nss setup vlan readme guide - fix formatting of primary subsection displaying too large. Signed-off-by: Sean Khan --- nss-setup/example/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nss-setup/example/README.md b/nss-setup/example/README.md index 4df517f6cd9f85..5c3564b0b797ae 100644 --- a/nss-setup/example/README.md +++ b/nss-setup/example/README.md @@ -1,11 +1,11 @@ --- # **Configuring VLANs with OpenWRT on NSS-Enabled Devices** -## **Important Note:** No VLAN Filtering for NSS Devices +### **Important Note:** No VLAN Filtering for NSS Devices For **NSS setups**, you **cannot** enable VLAN filtering directly because **NSS handles VLAN internally** through the module `kmod-qca-nss-drv-vlan-mgr`. Enabling VLAN filtering via the standard method will interfere with the NSS. To check whether it's enabled, follow the steps below. ---- +--- ### 1. **Check if VLAN Filtering is Enabled** Run the following command to check if VLAN filtering is active: ```vim @@ -148,7 +148,7 @@ config interface 'iot' Here is an example of how to configure the WiFi interfaces for different networks in `/etc/config/wireless`: ```vim -config wifi-iface 'default_radio0' +config wifi-iface 'lan' option device 'radio0' option mode 'ap' option network 'lan' @@ -162,7 +162,7 @@ config wifi-iface 'default_radio0' config wifi-iface 'guest' option device 'radio0' option mode 'ap' - option network 'br-guest' + option network 'guest' option ssid 'OpenWrt-Guest' option encryption 'psk2' option key '********' @@ -173,7 +173,7 @@ config wifi-iface 'guest' config wifi-iface 'iot' option device 'radio0' option mode 'ap' - option network 'br-iot' + option network 'iot' option ssid 'OpenWrt-IoT' option encryption 'psk2' option key '********'