How to Setup "Pure VPN" on Mikrotik Router

I have followed all the steps in the article:
https://support.p u r e v p n.com/article-categories/getting-started/router/mikrotik
for both the PPTP and SSTP.

For one small difference, I only want 1 local IP address to get traffic through this VPN connection.

PPTP does not work, and Status is: waiting for packets (not sure why), anyone any idea?

On the SSTP I can get IP address in SSTP settings, it says its Status: connected,
I can see data flowing through sstp-out interface, but on the specific device I still get my ISP’s IP instead of the Pure VPN IP…

Here is the CLI setup for SSTP:

/interface sstp-client
add add-default-route=yes connect-to=uk.pointtoserver.com dial-on-demand=yes disabled=no name=sstp-out-PureVPN password=xxxxx profile=default-encryption user=purevpn0xxxxxx disabled=yes

/ip firewall nat
add action=masquerade chain=srcnat log=yes log-prefix=!NAT-VPN out-interface=sstp-out-PureVPN src-address=192.168.1.52

/ip firewall mangle
add action=mark-routing chain=prerouting comment=sstp-PureVPN log=yes log-prefix=!MANGLE_VPN new-routing-mark=sstp-out-PureVPN passthrough=no src-address=192.168.1.52

/ip route
add distance=1 gateway=sstp-out-PureVPN routing-mark=sstp-out-PureVPN

/ip dns
set allow-remote-requests=yes max-udp-packet-size=512 servers=1.0.0.1,1.1.1.1,2606:4700:4700::1111,2606:4700:4700::1001

/ip dhcp-server network
add address=192.168.1.0/24 comment="defconf: added DNS Server 192.168.1.1" dns-server=1.1.1.1,1.0.0.1 gateway=192.168.1.1 netmask=24 ntp-server=90.207.238.106,90.207.238.105

/interface sstp-client enable sstp-out-PureVPN

Anyone any idea why is it not working?


[REDACTED] stuff = P u r e V P N name …

I guess I am looking for feature called “VPN split tunneling”
https://www.expressvpn.com/features/split-tunneling

Where I want “some devices” on the network to get all their traffic via the PPTP/SSTP VPN tunnel and rest of the devices not to be routed via the VPN tunnel.