vyos 1.3-rolling-202008200357 RIP outgoing update filter list no longer operational
RIP outgoing update filter list worked perfectly using prior vyos version 1.2.0-rolling+201904260337
here is the configuration
policy {
prefix-list fromECVs { rule 10 { action permit prefix 192.168.0.0/24 } rule 20 { action permit prefix 192.168.2.0/24 } rule 30 { action permit prefix 192.168.3.0/24 } rule 40 { action permit prefix 192.168.4.0/24 } rule 50 { action permit prefix 192.168.5.0/24 } rule 60 { action permit prefix 192.168.6.0/24 } rule 70 { action permit prefix 192.168.7.0/24 } rule 80 { action permit prefix 192.168.255.0/30 } rule 90 { action permit prefix 192.168.255.4/30 } rule 100 { action permit prefix 192.168.255.8/30 } rule 110 { action permit prefix 192.168.255.12/30 } rule 120 { action permit prefix 192.168.255.16/30 } rule 130 { action permit prefix 192.168.255.20/30 } rule 140 { action permit prefix 192.168.255.24/30 } rule 150 { action permit prefix 192.168.255.28/30 } }
protocols {
rip { distribute-list { prefix-list { out fromECVs } } interface eth0 redistribute { bgp { } connected { } }
here's the cli debug from vyos 1.3, note 'Outgoing update filter list for all interface is not set'
[email protected]:~$ show ip rip status
Routing Protocol is "rip"
Sending updates every 30 seconds with +/-50%, next due in 11 seconds Timeout after 180 seconds, garbage collect after 120 seconds Outgoing update filter list for all interface is not set Incoming update filter list for all interface is not set Default redistribution metric is 1 Redistributing: connected bgp Default version control: send version 2, receive any version Interface Send Recv Key-chain eth0 2 1 2 Routing for Networks: eth0 Routing Information Sources: Gateway BadPackets BadRoutes Distance Last Update 10.0.0.138 0 0 120 00:00:03 Distance: (default is 120)
i've also confirmed vyos is erroneously leaking out all bgp and connected routes via RIPv2 running on eth0 interface, messing up my network L3 topology.
I upgraded to vyos 1.3 for multicast support, which works great, but RIP prefix filtering broke in vyos 1.3...