Hello
How can I extend (or replicate) the Guest Wifif service running on my BE9300? I need onther access points in my property to provide the same wifi for guest moving around the property.
Thanks
Hello
How can I extend (or replicate) the Guest Wifif service running on my BE9300? I need onther access points in my property to provide the same wifi for guest moving around the property.
Thanks
I took a look at the interface and device settings in luci. It wasnt obvious to me whether the standard GL-iNet guest WIFI was using a specific VLAN, or ip number range with nominated DHCP server. Does anyone have more details on the way GL-INet setup guest WiFi on the BE9300??
Hi
Sorry for the delayed reply.
By default, our Guest network simply creates a new bridge, assigns it a new subnet, and adds the Guest Wi-Fi to that bridge.
If you want to extend the existing Main and Guest networks to other AP devices, you will need to configure VLANs on both the main router and the AP to achieve this.
You can refer to the following guide for the relevant configuration:
I took some time to investigate this from scratch so I could properly understand how it works.
In the end, it turned out to be quite simple—once I figured out the correct commands and how the Flint 3 handles networking internally.
That said, I found this quite difficult initially because a lot of the Flint 3 wireless configuration is hidden from LuCI, and it doesn’t behave exactly like standard OpenWrt.
For context:
I’m not a developer or network engineer—just an enthusiastic home networking tinkerer. Hopefully this helps someone at a similar level.
One Ethernet cable per access point
That cable carries multiple VLANs
The AP splits them into:
Main WiFi (LAN)
Guest WiFi
[ Flint 3 Router ]
│
│ (Single Ethernet Cable - VLAN Trunk)
│ VLAN 1 (LAN) + VLAN 3 (Guest)
│
-------------------
| |
[ Access Point ] [ Access Point ]
| | | |
LAN Guest LAN Guest
SSID SSID SSID SSID
Important: Each access point only needs one cable — that cable carries multiple networks (VLANs), which the AP then separates into different WiFi networks.
This guide assumes your Flint 3 is already set up with a basic working configuration:
Internet connected via WAN port
Main WiFi configured (SSID + security)
Guest WiFi enabled
(Flint UI → Wireless → Guest WiFi)
LAN configured
(Network → LAN)
Guest network configured
(Network → Guest Network)
Port forwarding configured (if needed)
SSH enabled
(Security → Management Control → SSH on port 22)
Remote SSH access disabled
Each AP needs two VLANs:
VLAN 1 → Main LAN (default)
VLAN 3 → Guest network (example)
How I did it:
Connect AP directly to your PC
Set a static IP on your PC, in the same range as your AP
Open AP web interface
Configure VLANs
This is well documented online for OpenWrt-based APs.
Ultimately you want your AP bridge device to have VLANS configured similar to this:
Good news:
VLAN 1 (LAN) already exists
We only need to add VLAN 3 (Guest)
From your PC command prompt:
ssh root@<Flint3 LAN IP>
Enter your password when prompted.
Run one line at a time:
uci add network switch_vlan
uci set network.@switch_vlan[-1].device='switch1'
uci set network.@switch_vlan[-1].vlan='3'
uci set network.@switch_vlan[-1].ports='4t 5t 6t 7t 3t'
uci set network.guest.ifname='eth1.3'
uci commit network
/etc/init.d/network restart
Create VLAN 3
Allow it on LAN ports (tagged)
Link it to the guest network
Restart networking
APs send guest traffic via VLAN 3
Flint 3 handles:
DHCP
Firewall rules
Internet access
Guest WiFi now works across all remote APs
VLAN IDs must match on router + APs
Check VLAN tagging on AP ports
Reboot APs if needed
You can extend this for IoT VLANs later
Thanks for sharing the guide—I think it will be very helpful for users with similar needs!