Pass Traffic to VPN

I’m trying to get my traffic of a ip range go through my VPN
I’ve basically followed this guide
https://www.strongvpn.com/setup_mikrotik_pptp.shtml

The VPN is up but no traffic from my range is using the VPN

[admin@MikroTik] /interface> print 
Flags: D - dynamic, X - disabled, R - running, S - slave 
 #     NAME                                TYPE       ACTUAL-MTU L2MTU
 0  R  ether1-gateway                      ether            1500  1598
 1  RS ether2-master-local                 ether            1500  1598
 2  RS ether3-slave-local                  ether            1500  1598
 3  RS ether4-slave-local                  ether            1500  1598
 4  RS ether5-slave-local                  ether            1500  1598
 5  R  IAmBridge1                          bridge           1500  1598
 6  R  IAmNordVPN1                         pptp-out         1400
 
 [admin@MikroTik] /ip firewall nat> print
Flags: X - disabled, I - invalid, D - dynamic 
 0    ;;; default configuration
      chain=srcnat action=masquerade out-interface=ether1-gateway log=no log-prefix="" 

 1    ;;; default configuration
      chain=srcnat action=masquerade to-addresses=0.0.0.0 out-interface=ether1-gateway log=no log-prefix="" 

...

20    chain=srcnat action=masquerade out-interface=IAmNordVPN1 log=no log-prefix="" 

[admin@MikroTik] /ip firewall mangle> print
Flags: X - disabled, I - invalid, D - dynamic 

...
26    chain=prerouting action=mark-routing new-routing-mark=NORDVPN passthrough=yes src-address=10.0.0.5-10.0.0.200 log=no log-prefix=""


[admin@MikroTik] /ip dns>> print  
                servers: 8.8.8.8,8.8.4.4
        dynamic-servers: 
  allow-remote-requests: yes
    max-udp-packet-size: 4096
   query-server-timeout: 2s
    query-total-timeout: 10s
             cache-size: 2048KiB
          cache-max-ttl: 1w
             cache-used: 12KiB


[admin@MikroTik] /ip route>> print 
Flags: X - disabled, A - active, D - dynamic, C - connect, S - static, r - rip, b - bgp, o - ospf, m - mme, B - blackhole, U - unreachable, P - prohibit 
 #      DST-ADDRESS        PREF-SRC        GATEWAY            DISTANCE
 0 A S  0.0.0.0/0                          IAmNordVPN1               1
 1 ADS  0.0.0.0/0                          198.48.196.129            1
 2 ADC  10.0.0.0/24        10.0.0.1        IAmBridge1                0
 3 ADC  10.10.10.1/32      10.10.10.14     IAmNordVPN1               0
 4 ADC  xxx.xxx.xxx.xxx/27  xxx.xx.xxx.xxx  ether1-gateway            0

.
My router is not de DHCP server

thanks

got it to work
QOS mangle was tagging everything else :slight_smile: