How to extend BE9300 Guest Wifi to second AP (OpenWrt or GL-iNet devices)

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:

:satellite_antenna: Flint 3 – Guest WiFi on Remote Access Points (VLAN Setup Guide)

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.


:brain: Overview (What we're doing)

  • One Ethernet cable per access point

  • That cable carries multiple VLANs

  • The AP splits them into:

    • Main WiFi (LAN)

    • Guest WiFi


:framed_picture: Diagram

[ 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

:light_bulb: Important: Each access point only needs one cable — that cable carries multiple networks (VLANs), which the AP then separates into different WiFi networks.


:white_check_mark: Assumptions

This guide assumes your Flint 3 is already set up with a basic working configuration:

  • :globe_with_meridians: Internet connected via WAN port

  • :antenna_bars: Main WiFi configured (SSID + security)

  • :busts_in_silhouette: Guest WiFi enabled

    (Flint UI → Wireless → Guest WiFi)

  • :house: LAN configured

    (Network → LAN)

  • :door: Guest network configured

    (Network → Guest Network)

  • :locked_with_key: Port forwarding configured (if needed)

  • :desktop_computer: SSH enabled

    (Security → Management Control → SSH on port 22)

  • :prohibited: Remote SSH access disabled


:electric_plug: Step 1 – Configure VLANs on Access Points

Each AP needs two VLANs:

  • VLAN 1 → Main LAN (default)

  • VLAN 3 → Guest network (example)

How I did it:

  1. Connect AP directly to your PC

  2. Set a static IP on your PC, in the same range as your AP

  3. Open AP web interface

  4. Configure VLANs

:memo: This is well documented online for OpenWrt-based APs.

Ultimately you want your AP bridge device to have VLANS configured similar to this:


:puzzle_piece: Step 2 – Configure VLAN on Flint 3

Good news:

  • VLAN 1 (LAN) already exists

  • We only need to add VLAN 3 (Guest)


:laptop: Step 3 – SSH into the Router

From your PC command prompt:

ssh root@<Flint3 LAN IP>

Enter your password when prompted.


:gear: Step 4 – Add Guest VLAN (Commands)

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

:magnifying_glass_tilted_left: What These Commands Do

  • :plus: Create VLAN 3

  • :shuffle_tracks_button: Allow it on LAN ports (tagged)

  • :link: Link it to the guest network

  • :counterclockwise_arrows_button: Restart networking


:bullseye: Final Result

  • APs send guest traffic via VLAN 3

  • Flint 3 handles:

  • DHCP

  • Firewall rules

  • Internet access

:white_check_mark: Guest WiFi now works across all remote APs


:test_tube: Tips / Troubleshooting

  • :check_mark: VLAN IDs must match on router + APs

  • :check_mark: Check VLAN tagging on AP ports

  • :repeat_button: Reboot APs if needed

  • :wrench: You can extend this for IoT VLANs later

1 Like

Thanks for sharing the guide—I think it will be very helpful for users with similar needs!

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.