You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BIRD represents BGP communities as a tuple of integers, for example the community 64511:1 is represented as (64511, 1). To fetch all routes matching this a query such as show route where (65517, 1) ~ bgp_community all. It would be nice to be able to translate colon notation for BGP communities into these bird queries.
AS Path
Similarly, to find all routes where the specified ASN is present in the AS-Path, the bird query looks like sh ro where 15169 ~ bgp_path all. Translation from syntax such as _15169$, _15169_, $15169_ and so on would be a nice feature to have.
Environment & Use Case
This feature request only applies to having BIRD as a NOS.
The text was updated successfully, but these errors were encountered:
Feature Description
Communities
BIRD represents BGP communities as a tuple of integers, for example the community
64511:1
is represented as(64511, 1)
. To fetch all routes matching this a query such asshow route where (65517, 1) ~ bgp_community all
. It would be nice to be able to translate colon notation for BGP communities into these bird queries.AS Path
Similarly, to find all routes where the specified ASN is present in the AS-Path, the bird query looks like
sh ro where 15169 ~ bgp_path all
. Translation from syntax such as_15169$
,_15169_
,$15169_
and so on would be a nice feature to have.Environment & Use Case
This feature request only applies to having BIRD as a NOS.
The text was updated successfully, but these errors were encountered: