diff options
| author | Russ White <russ@riw.us> | 2023-04-25 11:06:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-25 11:06:23 -0400 |
| commit | 4855ca5e5673927cd3525cf8eddf4328c0017918 (patch) | |
| tree | 9547c262234b875c06592fc82dba322532d01fe4 /lib/routemap_cli.c | |
| parent | 3ba6373eefee165b309652c9cba78a68e5d4e8ca (diff) | |
| parent | 8f2a51b7b76eccac7511acb9116cab4c492831bc (diff) | |
Merge pull request #13310 from opensourcerouting/feature/bgpd_node_target_extended_community
bgpd: Add Node Target Extended Communities support
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 75d1175886..419086c4c6 100644 --- a/lib/routemap_cli.c +++ b/lib/routemap_cli.c @@ -1218,6 +1218,11 @@ void route_map_action_show(struct vty *vty, const struct lyd_node *dnode, yang_dnode_get_string( dnode, "./rmap-set-action/frr-bgp-route-map:extcommunity-rt")); + } else if (IS_SET_EXTCOMMUNITY_NT(action)) { + vty_out(vty, " set extcommunity nt %s\n", + yang_dnode_get_string( + dnode, + "./rmap-set-action/frr-bgp-route-map:extcommunity-nt")); } else if (IS_SET_EXTCOMMUNITY_SOO(action)) { vty_out(vty, " set extcommunity soo %s\n", yang_dnode_get_string( |
