mikrotik 951g-2hnd - route marking

Hello,

I have RouterOS on 7.6 RB951Ui-2HnD mikrotik. I tried to set-up multiple ISPs setup for my household with PPC. For PPC, one needs route marking as multiple tutorials have said. For me, unfortunately, it’s not possible to create new route mark, because in Mangle rule creation → action → mark routing, I can only select “main” at the new routing mark menu.

Is this by-design limitation of this routerboard or am I doing something wrong?

Given limitation stated above, I have restorted to ECMP load balancing and that seems to work.

Take care, Z.S.

It is not a limitation of RB951, it is a change of approach in ROS 7 as compared to ROS 6. Now, you have to explicitly add the routing table before using it, the goal being to reduce the amount of smashed routers and suicides caused by typos.

/routing/table/add name=xyz fib

is the magic you look for.

Hi,
I have a similar problem
I have now upgraded from V6 to V7.6
I have 2 ISP’s and can’t do simple routing like I would on V6.
Below is an example from v6:

/interface pppoe-client
add add-default-route=yes default-route-distance=3 disabled=no interface=ether1 name=partner password=???????? use-peer-dns=yes user=??????????
add add-default-route=yes default-route-distance=5 disabled=no interface=ether1 name=older password=???????? user=?????????

/ip firewall mangle
add action=mark-routing chain=prerouting comment=ap new-routing-mark=older passthrough=no src-mac-address=XX:2D:21:XX:A4:XX

/ip route
add distance=2 gateway=older routing-mark=older

How do I do it in v 7.6 ?

Thanks for clarification, understood, all clear now.