I have a VPN service that I connect to using PPTP. I am trying to selectively route a single local IP through it. I followed the instructions here: https://strongvpn.com/setup-mikrotik-pptp.html
If I create the PPTPclient interface with a default route the speed is fine (60Mbs) but then ALL local traffic goes over VPN.
If I create it without a default route, only the single host goes over VPN but speed drops to 20Kbs.
I am assuming I should NOT be adding a default route?
Any suggestions on improving speed? Could fasttrack be causing this? Thank you.
/interface ethernet
set [ find default-name=ether1 ] comment=“Internet Gateway” mac-address=**** name=
ether1-gateway
set [ find default-name=ether2 ] comment=“Master Switch Port” name=ether2-master
set [ find default-name=ether3 ] comment=Wifi master-port=ether2-master
set [ find default-name=ether4 ] master-port=ether2-master
set [ find default-name=ether5 ] master-port=ether2-master
/interface pptp-client
add allow=mschap1,mschap2 connect-to=*** disabled=no max-mru=
1400 max-mtu=1400 name=pptp-out1 password=**** user=****
/ip firewall nat
add action=masquerade chain=srcnat comment=“defconf: masquerade” out-interface=
ether1-gateway
add action=masquerade chain=srcnat comment=“pptp tunnel” out-interface=pptp-out1
/ip firewall mangle
add action=mark-routing chain=prerouting disabled=no
new-routing-mark=pptp passthrough=yes src-address=192.168.88.10 tcp-flags=“”
/ip route
add comment=“pia tunnel route” distance=1 gateway=pptp-out1 routing-mark=pptp