diff options
| author | Russ White <russ@riw.us> | 2022-09-13 11:30:54 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-13 11:30:54 -0400 | 
| commit | 7fa5e07b1cbf045f22547db11686eb82d5323079 (patch) | |
| tree | 4d22271eb7469e4e3bfab32f51b6c75950fc2cb6 /lib/routemap_cli.c | |
| parent | c3c5f18c2b8a96dd9ce7a42ddaee4ce19e9d288e (diff) | |
| parent | 324e8b1f79ccd00f75cdb8ba95ba0c0ee5e82b4d (diff) | |
Merge pull request #11899 from opensourcerouting/feature/route_validation_extended_community
bgpd: Implement Origin Validation State via extended communities
Diffstat (limited to 'lib/routemap_cli.c')
| -rw-r--r-- | lib/routemap_cli.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/routemap_cli.c b/lib/routemap_cli.c index 42c7a05d18..6be5d15ec4 100644 --- a/lib/routemap_cli.c +++ b/lib/routemap_cli.c @@ -650,6 +650,11 @@ void route_map_condition_show(struct vty *vty, const struct lyd_node *dnode,  			yang_dnode_get_string(  				dnode,  				"./rmap-match-condition/frr-bgp-route-map:rpki")); +	} else if (IS_MATCH_RPKI_EXTCOMMUNITY(condition)) { +		vty_out(vty, " match rpki-extcommunity %s\n", +			yang_dnode_get_string( +				dnode, +				"./rmap-match-condition/frr-bgp-route-map:rpki-extcommunity"));  	} else if (IS_MATCH_PROBABILITY(condition)) {  		vty_out(vty, " match probability %s\n",  			yang_dnode_get_string(  | 
