Another Question about Routing Filters...

When multiple conditions are defined on the match side of a single line in the filters, are these conditions (AND) or are the (OR)

e.g

/routing filter add chain=tnn-out bgp-communities=11280:661 invert-match=no action=accept set-bgp-prepend=1
/routing filter add chain=tnn-out bgp-communities=11280:662 invert-match=no action=accept set-bgp-prepend=1

can this be combined into one line ? would it be more efficient / less taxing on the system ?

Thanks.

In your code they are OR. In the following they are AND.

/routing filter add chain=tnn-out bgp-communities=11280:661,11280:662 invert-match=no action=accept set-bgp-prepend=1

As far as I know there is not a more efficient way to write those rules.

Cool. Thanks..

:slight_smile: