aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/l2/l2.api
diff options
context:
space:
mode:
authorJohn Lo <loj@cisco.com>2019-01-07 15:16:33 -0500
committerFlorin Coras <florin.coras@gmail.com>2019-01-07 21:55:28 +0000
commite26c81fc80d1ce9a8746ebf4009149849b04f60f (patch)
tree12157a3247ed9169951e1083f8b50e240eec30c7 /src/vnet/l2/l2.api
parent2500c79423c7d8d35b4e7b8f50060c09f2f857be (diff)
L2 BD API to flush all IP-MAC entries in the specified BD
Implement API/CLI to clear IP-MAC tables used for ARP-termination in the specified bridge domain. The CLI to flush MAC IP tables for a BD is: set bridge-domain arp entry <bd-id> del-all The API added is bd_ip_mac_flush. Change-Id: I34ceb87c0f480c7102f6559312c24081ed485af8 Signed-off-by: John Lo <loj@cisco.com>
Diffstat (limited to 'src/vnet/l2/l2.api')
-rw-r--r--src/vnet/l2/l2.api13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/vnet/l2/l2.api b/src/vnet/l2/l2.api
index ea24a71feb5..f16a8ad05a3 100644
--- a/src/vnet/l2/l2.api
+++ b/src/vnet/l2/l2.api
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-option version = "2.1.1";
+option version = "2.1.2";
import "vnet/ip/ip_types.api";
import "vnet/ethernet/ethernet_types.api";
@@ -487,6 +487,17 @@ autoreply define bd_ip_mac_add_del
vl_api_mac_address_t mac;
};
+/** \brief Flush bridge domain IP to MAC entries
+ @param client_index - opaque cookie to identify the sender
+ @param bd_id - bridge domain identifier
+*/
+autoreply define bd_ip_mac_flush
+{
+ u32 client_index;
+ u32 context;
+ u32 bd_id;
+};
+
/** \brief bridge domain IP to MAC entry details structure
@param bd_id - bridge domain table id
@param is_ipv6 - if non-zero, ipv6 address, else ipv4 address