Setting Mikrotik with Leased Line Topology

Mikrotik Topology.JPG
Dear All

How I can Configure this Topology with the red line route, In My PC I want to access the web App ( with IP Private ) and I also can surfing the internet.
Is my PC must be configure with 2 Gateway. or i must be setting the route list im My Mikrotik

Please Help

static route on mikrotik

Did you mean like this /ip route add dst-address=10.111.111.1 gateway=10.10.10.161

i have configure static route but My PC doesn’t connect, although with the Gateway 10.10.10.61 cannot ping,

You’ll likely also have to set a NAT rule to src-nat (or masquerade) for traffic out that interface as well, so it will appear as coming from 10.10.10.162 (as their network likely does not have a route back to you for 192.168.88.0/24)

In Mikrotik i can ping to the all IP 10.111.111.1
10.10.10.162
10.10.10.161

But in PC i Cannot ping to 10.10.10.161
10.111.111.1
and i can ping to 10.10.10.162

yep so .161 doesnt know how to get back to you, which likely means you are presenting as your internal IP 192.168.88.x. Like a normal internet connection, you’ll need to NAT your connection out of that interface.

/ip firewall nat add chain=srcnat action=masquerade out-interface=

(or similar)

this should get you working.

But how about the web app, it cannot be ping to 10.111.111.1 from the PC

I’ve steered you to the likely answer - give it a go and tell me if it works. If you are not understanding what I am explaining then perhaps this task is beyond your capabilities and you should hire someone to help you. My explanation explains why you would not be able to ping the web server from your PC (until you add the NAT rule).

Oke It’s Work from My PC

Thanks