diff options
| author | Patrick Ruddy <pat@voltanet.io> | 2021-06-23 09:23:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-23 09:23:54 +0100 |
| commit | fa855f8fa3b3bafa53968b5cae3718180c88c92e (patch) | |
| tree | 94c9d3e32c9acb101d3e5d1884d18834b38465e3 /lib/routemap_cli.c | |
| parent | 4cc0f752ddf8c60918801b5931a0e5cd870ab45c (diff) | |
| parent | eb3859f2f4e47a2e0f6100211c6ef9de79fdd259 (diff) | |
Merge pull request #6695 from adharkar/frr-master-gateway_ip
EVPN route type-5 gateway IP overlay Index
Diffstat (limited to 'lib/routemap_cli.c')
| -rw-r--r-- | lib/routemap_cli.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/routemap_cli.c b/lib/routemap_cli.c index e11b9eea74..bf982cfa2b 100644 --- a/lib/routemap_cli.c +++ b/lib/routemap_cli.c @@ -1248,6 +1248,16 @@ void route_map_action_show(struct vty *vty, struct lyd_node *dnode, yang_dnode_get_string( dnode, "./rmap-set-action/frr-bgp-route-map:ipv4-nexthop")); + } else if (IS_SET_BGP_EVPN_GATEWAY_IP_IPV4(action)) { + vty_out(vty, " set evpn gateway-ip ipv4 %s\n", + yang_dnode_get_string( + dnode, + "./rmap-set-action/frr-bgp-route-map:evpn-gateway-ip-ipv4")); + } else if (IS_SET_BGP_EVPN_GATEWAY_IP_IPV6(action)) { + vty_out(vty, " set evpn gateway-ip ipv6 %s\n", + yang_dnode_get_string( + dnode, + "./rmap-set-action/frr-bgp-route-map:evpn-gateway-ip-ipv6")); } } |
