PPTP to PPTP

Hi Guys,

I’m trying to establish a VPN PPTP connexion between my Mikrotik 750GL for my different office location. My VPN connexion on both side is configured and I’m able to ping from the Mikrotik the other side, my problem now is from the lan section I’m not able to pring or get access to the other side. I tryed differend thing like adding route manually or directly in the PPTP configuration secret section.

Here is my config:

Office:
Lan 10.100.1.0/24
PPTP 172.16.101.1
Route Detail from this connexion: 4 ADC dst-address=172.16.101.2/32 pref-src=172.16.101.1 gateway=
gateway-status= reachable distance=0 scope=10

PPTP Secret Config:
2 name=“ppp1” service=pptp caller-id=“” password=“123456” profile=default
local-address=172.16.101.1 remote-address=172.16.101.2
routes=“10.100.1.0/24 172.16.101.1 1” limit-bytes-in=0 limit-bytes-out=0

Client:
Lan 192.168.88.1
PPTP 172.16.101.2

Like I said, I’m able to ping 172.16.101.2 from the Mikrotik Consol but not from my lan PC. Let’s hope I wrote all information.

Thank David

if connection is ok. is your nat/routing ok?

3 way now i have in mind in this time:

1- both static route on both RouterOS will help you
2- use BCP on both routerOS
3- use NAT

But i will describe first (Static Routing)

ON Mikrotik with IP Address : 10.100.1.X

/ip route
add disabled=no distance=1 dst-address=192.168.88.0/24 gateway=172.16.101.2 scope=30 target-scope=10

ON router with 192.168.88.1 ip address :

/ip route
add disabled=no distance=1 dst-address=10.100.1.0/24 gateway=172.16.101.1 scope=30 target-scope=10

don’t forget to give karma if useful :smiley:

cybercoder you are a master, your static route config work like a charm. Thank you

I’m now a Mikrotik happy guy

Don’t forget to give karma when useful.