Access a router behind your MikroTik
Reach the admin page of a second router connected to your MikroTik's LAN — from anywhere — with a remote plus one NAT rule. Same trick as the OLT guide, aimed at a router.
A second router hanging off your MikroTik's LAN has no direct path from the internet. MikRouter forwards a public address + port down a VPN tunnel to your MikroTik, and one NAT rule hands that traffic to the downstream router. Opening ph1.mikrouter.com:44541in your browser then lands you on that router's login page.
Before you start, make sure you have
- A MikRouter account with enough credits or a payment method.
- Winbox open and connected to the main MikroTik the second router is plugged into.
- The downstream router's LAN IP address and admin port — e.g.
192.168.88.2on port80. Find it under IP›DHCP Server›Leases on the MikroTik, or from the router itself.
Create a remote for the router
Remote Accounts
Manage your remote access accounts. Drag to rearrange.
Office Router
OnlinePick a server close to you, set a Duration, and choose a VPN Service (L2TP is easiest). The key field is Service Port:
| Field | Value | Note |
|---|---|---|
| VPN Service | L2TP | See the L2TP guide |
| Service Port | Other | Not Winbox/HTTPS — those point at the main router |
| Port | 8090 | Any free port on the tunnel |
| Protocol | TCP | Router admin page is TCP |
| Remote Name | Secondary Router | Anything you like |
Why “Other” for the Service Port?
8090— you'll aim it at the second router in step 5. 1. Remote Server
PH 1
🇵🇭 PHL2TP, SSTP, OVPN
SG 1
L2TP, SSTP
US 1
OVPN
2. Service Configuration
3. Details
Purchase Summary
- Server
- PH 1 (PH)
- Duration
- 1 Week(s)
- VPN Service
- L2TP
- Service Port
- 8090 (TCP)
- Total
- PHP 10
Pay and confirm
Copy your connection details
Secondary Router
OnlineVPN Credentials
Username
mr-8x3k9p
Password
a1b2c3d4e5
Connect To
ph1.mikrouter.com
Assigned Port
44541
Remote URL
ph1.mikrouter.com:44541
Use this address to connect via Winbox, SSH, HTTP, or API.
Quick Setup
/interface l2tp-client add name=mikrouter-l2tp-mr-8x3k9p connect-to=ph1.mikrouter.com user=mr-8x3k9p password=a1b2c3d4e5 disabled=no
| Field | Value | Note |
|---|---|---|
| Connect To | ph1.mikrouter.com | VPN server address |
| Username | mr-8x3k9p | PPP username |
| Password | a1b2c3d4e5 | PPP password |
| Remote URL | ph1.mikrouter.com:44541 | Server : your assigned port |
| Service Port | 8090 | The port you chose in step 1 |
Build the VPN tunnel on the MikroTik
/interface l2tp-client add name=mikrouter-l2tp-mr-8x3k9p connect-to=ph1.mikrouter.com user=mr-8x3k9p password=a1b2c3d4e5 disabled=no
Prefer clicking? Add it by hand instead: go to PPP, click + › L2TP Client, and on the Dial Out tab fill in:
| Field | Value | Note |
|---|---|---|
| Connect To | ph1.mikrouter.com | Your Connect To value |
| User | mr-8x3k9p | PPP username |
| Password | a1b2c3d4e5 | PPP password |
| Profile | default-encryption | Select this profile |
| Allow | mschap2, mschap1, chap, pap | Check all four |
Confirm the client shows an R(running) flag and the remote's badge turns Online.
Point the port at the second router
/ip firewall nat add chain=dstnat protocol=tcp \
in-interface=mikrouter-l2tp-mr-8x3k9p dst-port=8090 \
action=dst-nat to-addresses=192.168.88.2 to-ports=80 \
comment="mikrouter 2nd router"| Field | Value | Note |
|---|---|---|
| in-interface | mikrouter-l2tp-… | The VPN client from step 4 |
| dst-port | 8090 | The Service Port you chose |
| to-addresses | 192.168.88.2 | The downstream router's LAN IP |
| to-ports | 80 | Its admin port (8291 for Winbox, 443 for HTTPS) |
Prefer the menus? Go to IP›Firewall›NAT and add the same values on the General and Action tabs.
If the page still won't load
/ip firewall nat add chain=srcnat dst-address=192.168.88.2 action=masquerade comment="mikrouter 2nd router return"
Open the router from anywhere
| Field | Value | Note |
|---|---|---|
| Address | http://ph1.mikrouter.com:44541 | Use https:// if the router port is 443 |
Router Admin
Web management
Sign in with the downstream router's own username and password — not your MikroTik or MikRouter login.
Is the second device a MikroTik too?
to-ports to 8291 instead of 80, then open Winbox and connect to ph1.mikrouter.com:44541.Troubleshooting
Remote shows “Offline” in the dashboard
- The VPN client isn't connected — recheck step 4 (username, password, server address).
- Make sure your ISP isn't blocking the protocol; try SSTP (port 443) if L2TP won't connect.
- Confirm the subscription hasn't expired.
Online, but the browser page times out
- Check the NAT rule from step 5 —
dst-portmust equal your Service Port (8090), andto-addresses/to-portsmust match the router. - From New Terminal run
/ping 192.168.88.2to confirm the MikroTik can reach the router. - If ping works but the page doesn't load, add the
srcnat masqueraderule from step 5.
Page loads but won't log in
- Use the downstream router's own admin credentials, not your main router or MikRouter login.
- If it only serves HTTPS, try
https://and set the NATto-ports=443.
Quick recap
- Buy a remote — set Service Port = Other (8090, TCP).
- Copy the credentials & Remote URL from the detail page.
- Create the VPN client on the main MikroTik (paste the Quick Setup command).
- Add one NAT rule forwarding port 8090 → the second router's IP:80.
- Browse to
ph1.mikrouter.com:44541— you're on the router.