Use mikrotik router to establish a vpn connection to another mikrotik server

Hi hope you are all fine. Just wonder if you could give me some good advise.

I have already setup a VPN Server in the quick set, and I can access the mikrotik Server with all my devices.
VPN is working fine.

I know have to leave the country for a longer period, and I want of course use my streaming accounts.

Would it also be possible to configure another mikrotik router which also connects to the vpn server, and all the devices behind this client would be able to access my streaming accounts again (over wifi and ethernet). So there would be no need to make a vpn connection for every single device.
Is there a fast way to setup this?

Thanks in advance for your help.
Regards
Arthur

I’d say quite fast: add a L2TP client with “Use IPsec” enabled:

https://help.mikrotik.com/docs/display/ROS/L2TP

After that, create a routing table, add a default route pointing to the L2TP interface on both main and newly created routing tables and use routing rules to specify which clients should use the tunnel and which not:

/routing table
add fib name=thr_L2TP

/ip route
add dst-address=0.0.0.0/0 gateway="L2TP_interface"
add dst-address=0.0.0.0/0 gateway="L2TP_interface" routing-table=thr_L2TP

/routing rule
add src-address="client_addresses" action=lookup-only-in-table table=thr_L2TP