MikroTik SXTsq 5ax + TP-Link VX230v Setup Guide
Wireless Bridge to Second Building — Solved After 5 Hours
Use case: Extend internet from a main router/modem (in our case a Telstra modem + WiFi extender) to a second building using a MikroTik SXTsq 5ax as a wireless bridge, then distributing WiFi inside via a TP-Link VX230v.
Network topology:
Telstra Modem → WiFi Extender → (WiFi) → MikroTik SXTsq 5ax → (Ethernet) → TP-Link VX230v → WiFi/LAN clients
Equipment
-
MikroTik SXTsq 5ax (RouterOS 7.18.2)
-
TP-Link VX230v (AX1800 VDSL/ADSL Modem Router)
-
Winbox 4.1 (for MikroTik configuration)
Part 1 — MikroTik SXTsq Configuration (via Winbox Terminal)
Connect to the SXTsq via Winbox, open New Terminal and run these commands in order:
Step 1 — Set WiFi to station-bridge mode
/interface wifi set wifi1 configuration.mode=station-bridge
Step 2 — Add ether1 to the bridge
/interface bridge port add interface=ether1 bridge=bridgeLocal
Step 3 — Remove old DHCP client and add new one on bridgeLocal
/ip dhcp-client remove 0
/ip dhcp-client add interface=bridgeLocal use-peer-dns=yes add-default-route=yes
Step 4 — Set ether1 IP address to match TP-Link subnet
/ip address set 0 address=192.168.2.2/24 network=192.168.2.0
Step 5 — Set DHCP pool to 192.168.2.x range
/ip pool set 0 ranges=192.168.2.100-192.168.2.199
Step 6 — Move DHCP server to bridgeLocal
/ip dhcp-server set 0 interface=bridgeLocal
Step 7 — Set DNS to Google
/ip dns set servers=8.8.8.8,8.8.4.4 allow-remote-requests=yes
Step 8 — Set NAT masquerade rule
/ip firewall nat add chain=srcnat action=masquerade out-interface=bridgeLocal
Step 9 — Verify internet on SXTsq
/ping 8.8.8.8 count=4
You should get 4 replies with 0% packet loss. If so, the SXTsq has internet ![]()
Part 2 — TP-Link VX230v Configuration
Connect your computer to a LAN port on the TP-Link and go to http://192.168.1.1 in your browser.
Step 1 — Change LAN IP
Go to Advanced → Network → LAN Settings
-
IP Address: 192.168.2.1
-
Subnet Mask: 255.255.255.0
-
DHCP Pool: 192.168.2.100 — 192.168.2.199
-
Click Save (router will reboot — access via 192.168.2.1 after reboot)
Step 2 — Set WAN to EWAN Dynamic IP
Go to Advanced → Network → EWAN
-
WAN Priority: EWAN
-
Click the edit icon on the connection
-
Internet Connection Type: Dynamic IP
-
VLAN ID: unchecked
-
Click Save
Step 3 — Connect ethernet cable
Plug the ethernet cable from the SXTsq ether1 port into the WAN port on the TP-Link.
Step 4 — Reboot TP-Link
After reboot, the TP-Link should get an IP in the 192.168.2.x range from the SXTsq and internet should flow through to all connected devices.
Key Things That Tripped Us Up
-
WiFi must be in station-bridge mode — regular station mode doesn't support bridging properly in RouterOS 7
-
DHCP client must be on bridgeLocal — not wifi1 (which is a slave interface)
-
DHCP server must be on bridgeLocal — not ether1 (also a slave interface)
-
TP-Link LAN must be on a different subnet to the SXTsq's upstream network — we used 192.168.2.x
-
TP-Link must be set to EWAN mode — not DSL — since it's receiving internet via ethernet not a phone line
-
Cable goes into WAN port on the TP-Link when using EWAN mode
Verification
Once complete, run this in Winbox terminal to confirm everything is working:
/ip dhcp-server lease print
You should see the TP-Link (VX230) listed with a 192.168.2.x IP address and status bound.
Guide written based on real-world troubleshooting — ...., May 2026
