Routes over L2tp

Need help!

I have a l2tp tunnel and need to access the devices behind client router.

  1. My router (public ip 88.196.xxx.xxx) > l2tp tunnel server (10.10.10.1) > l2tp client (10.10.10.2) > client router (192.168.88.1)
    Can I make routes so if I connect to my public IP, my mikrotik will forward the port to device behind clients router?

  2. My router (public ip 88.196.xxx.xxx) > l2tp tunnel server (10.10.10.1) > l2tp client (10.10.10.2) > client router (LAN 192.168.88.1 and WAN 192.168.1.165) > clients ISP router (LAN 192.168.1.1 and WAN is dynamic)
    Can I access the ISP router somehow?

Anybody?

I have a l2tp tunnel and need to access the devices behind client router.

  1. My router (public ip 88.196.xxx.xxx) > l2tp tunnel server (10.10.10.1) > l2tp client (10.10.10.2) > client router (192.168.88.1)
    Can I make routes so if I connect to my public IP, my mikrotik will forward the port to device behind clients router?

  2. My router (public ip 88.196.xxx.xxx) > l2tp tunnel server (10.10.10.1) > l2tp client (10.10.10.2) > client router (LAN 192.168.88.1 and WAN 192.168.1.165) > clients ISP router (LAN 192.168.1.1 and WAN is dynamic)
    Can I access the ISP router somehow?


  /route add dst-address=192.168.88.1 gateway=10.10.10.2

to just that ip

  /route add dst-address=192.168.88.0/24 gateway=10.10.10.2

to access the subnet behind.

Client router may also need to know about your subnet.


  /route add dst-address=10.10.10.1 gateway=10.10.10.2

to just that ip

  /route add dst-address=10.10.10.0/24 gateway=10.10.10.2

to access the subnet behind.

(l2tp client have to be client router) It should also be possible to acces directly at 10.10.10.2

if l2tp client is a computer, and have the router behind (in front), you have to route at computer to. (do a route /?) at computer. should be something like route add “your subnet” “subnet netmask” “router ip”

My ISP router > Mikrotik1 > l2tp tunnel > Mikrotik2 > Client ISP router

-My ISP router WAN is 88.196.xxx.xxx - LAN IP is 192.168.1.1
-Mikrotik1 WAN ip is 192.168.1.15 from ISP router - Lan is 192.168.0.x - l2tp server ip 10.10.10.1
-Mikrotik2 WAN ip is 192.168.1.165 from ISP router - LAN is 192.168.88.x - l2tp client is 10.10.10.2
-Client ISP router LAN is 192.168.1.1

Can I access the Clients 192.168.1.1 by making some routes?

\

E:
With a little help I got my problem fixed.
I made a EOIP tunnel over the L2tp and bridged the clients mikrotik Wan with EOIP tunnel.
In my router I bridged the EOIP with one of my ethernet port and can access the clients ISP router from that port.

If there is a way to do that without me being localy at my router It would be nice help.