I want to use this static IP provider for servers where I need to have a static IP due to firewall restrictions.
All is fine if I create a static route but I though I could create a firewall list and use mangle to keep the routing table less poluted. I have this mangle rule
Code: Select all
chain=prerouting action=mark-routing new-routing-mark=isp2 passthrough=no dst-address-list=static_ip
Code: Select all
dst-address=0.0.0.0/0 pref-src=MyStaticIP gateway=pptpDslInternet gateway-status=pptpDslInternet reachable distance=1 scope=30 target-scope=10 routing-mark=isp2
Disabling the mangle and adding a static route for the server I want to reach and everything is fast again.
This is on a RouterBOARD 952Ui-5ac2nD with router OS 6.42.1
What am I doing wrong?