diff options
author | Neale Ranns <nranns@cisco.com> | 2019-03-15 02:16:20 -0700 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2019-03-21 20:33:30 +0000 |
commit | 192b13f96d6b4d1b4cbbb64a3d447329bf2ba900 (patch) | |
tree | 44681e508ad2dc06af4518e6f4d0ead6ff35ab77 /src/vnet/l2/l2_bvi.h | |
parent | 1ea74b5df5acfc827ee53fd5cb6bdb40140da0f0 (diff) |
BVI Interface
a new dedicated BVI interface as opposed to [re]using a loopback.
benefits:
- removes ambiguity over the purpose of a loopback interface
- TX node dedicated to BVI only functions.
Change-Id: I749d6b38440d450ac5b909a28053c75ec9df946a
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/l2/l2_bvi.h')
-rw-r--r-- | src/vnet/l2/l2_bvi.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vnet/l2/l2_bvi.h b/src/vnet/l2/l2_bvi.h index 51c8dac23e4..d7d410b06ab 100644 --- a/src/vnet/l2/l2_bvi.h +++ b/src/vnet/l2/l2_bvi.h @@ -97,6 +97,11 @@ l2_to_bvi (vlib_main_t * vlib_main, void l2bvi_register_input_type (vlib_main_t * vm, ethernet_type_t type, u32 node_index); + +extern int l2_bvi_create (u32 instance, const mac_address_t * mac, + u32 * sw_if_index); +extern int l2_bvi_delete (u32 sw_if_index); + #endif /* |