Skip to content

Commit

Permalink
nss-setup: fix network in wifi + formatting
Browse files Browse the repository at this point in the history
- fix issue qosmio#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 <[email protected]>
  • Loading branch information
qosmio committed Dec 31, 2024
1 parent 842867a commit b558b2b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions nss-setup/example/README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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'
Expand All @@ -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 '********'
Expand All @@ -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 '********'
Expand Down

0 comments on commit b558b2b

Please sign in to comment.