PPTP server

i’m trying to set up an pptp tunnel between 2 buildings.
On ether 6 is my WAN connection through PPPOE in house1

In the other house (house2) is an Asus rtn66u with an pptp client on it, the server is on mikrotik RB2011UiAS-2HnD(house1)
Everything is working fine, so i can access everything from house 1 in house 2.
Now i want also to do the opposite, so i can access everything from house2 in house1 and vice versa.

LAN house2 (ASUS):
network:192.168.2.0/24
WAN: ip from ISP
VPN IP: 10.8.0.2/24

LAN house1 (Mikrotik):
network: 10.0.0.0/24
WAN: ip from ISP
VPN IP: 10.8.0.1/24

The route that is automatic created on the mikrotik is : dst-adress: 10.8.0.2 gateway=reachable

i’ve manually added already another route without result:
192.168.2.0/24 to gateway 10.8.0.2

So is it possible to access files from both sites and if so what should i change on my configuration?

Thx in advance

Your clients in house1 must have a route to 192.168.2.0/24 via the local mikrotik (10.0.0.1 ? 10.0.0.254?)
Your clients in house2 must have a route to 10.0.0.0/24 via the local mikrotik (192.168.2.1 ? 192.168.2.254?)
Your mikrotik@house1 must have a route to 192.168.2.0/24 via 10.8.0.2
Your Asus@house2 must have a route to 10.0.0.0/24 via 10.8.0.1
and then you should be fine.

If your clients have their local mikrotik as default gateway, then you do not need the first two lines.

Ok i’ve tried it but without success.
Well, it is now that i can ping from the mikrotik (flood ping) to the asus, but when i try to ping from a computer connected to the mikrotik i can not ping anymore to the asus.
So i think it is a configuration setting in the router, because pptp tunnel is working.

What should i change so i can ping also from my laptop/desktop to the asus?

Ok i’m almost done.
i’ve tried it with some Mangle rules ans now i can connect to my server. (https://support.hidemyass.com/hc/en-us/articles/202721196-Mikrotik-PPTP-L2TP-Setup-OS-6-0-or-newer-)

Now there is one more problem.
I can access almost everything except my https sites. The sites started loading, i get a message in chrome of an invalid certificate (which is normal because they were self-signed) but then it stops. the rest of the site is not loading.
Also pinging is perfect possible. So it is a https issue for sure.
Are there special things i have to take in mind for the https?

thanks in advance

So after i read some more forums, some were complaining about the default mtu of 1450.
I set it to 1400 and everything is working fine!

To everyone thx for the support!