RIP routing to specific routing table

I want to get some RIP routes to a specific routing table, so they don’t affect the ‘main’ table.
My current setup:

/routing rip set garbage-timer=15m timeout-timer=15m
/routing rip interface add authentication=simple authentication-key=****** in-prefix-list=\
    rip_in_filter interface=ether6 out-prefix-list=none passive=yes receive=v2
/routing rip network add network=192.168.74.0/24

Rip v2 multicasts come from 192.168.74.1 and it works as expected.

Changing this to use table1

/routing rip set garbage-timer=15m routing-table=table1 timeout-timer=15m

prevents any routes to be installed.

Am I missing something or is this a bug?

Hi,

I found that to achieve this, the interface you are receiving RIP routes on need to be added to the routing table via /ip route vrf.

For instance, I receive my RIP routes via PPTP, so I add the PPTP Client interface as vrf entry to my custom routing table

Then set RIP to my custom routing table

And only then would RIP routes install to my custom routing table.

Thanks.

Thank you very much.
That worked :slight_smile:

With the remark that the RIP sender has to be inside the subnet defined by the interface ip/netmask for the multicasts to be accepted.