diff options
author | Matthew Smith <mgsmith@netgate.com> | 2019-07-12 11:48:24 -0500 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-10-09 10:30:05 +0000 |
commit | e0792fdff6a9cc141f1cb4c6c1d2ac478cf44ee2 (patch) | |
tree | ba4d3e098043531cc5957f34e793dd29b0ee851d /src/vnet/interface_funcs.h | |
parent | 6a6af6ea1a77b5818e717047b5d01251ef6d024a (diff) |
interface: callback to manage extra MAC addresses
Type: feature
New callback vnet_hw_interface_add_del_mac_address().
Add or delete secondary MAC addresses on a hardware interface.
This will allow packets to be processed which have a destination
MAC address other than the primary programmed MAC address without
needing to put the device into promiscuous mode.
Change-Id: I6beecbcb8932fc1fe45b567f76fa3706feefae2c
Signed-off-by: Matthew Smith <mgsmith@netgate.com>
Diffstat (limited to 'src/vnet/interface_funcs.h')
-rw-r--r-- | src/vnet/interface_funcs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vnet/interface_funcs.h b/src/vnet/interface_funcs.h index c0ad81c6d87..9241b34d59d 100644 --- a/src/vnet/interface_funcs.h +++ b/src/vnet/interface_funcs.h @@ -390,6 +390,12 @@ void vnet_hw_interface_init_for_class (vnet_main_t * vnm, u32 hw_if_index, clib_error_t *vnet_rename_interface (vnet_main_t * vnm, u32 hw_if_index, char *new_name); +/* Add/delete secondary interface mac address*/ +clib_error_t *vnet_hw_interface_add_del_mac_address (vnet_main_t * vnm, + u32 hw_if_index, + const u8 * mac_address, + u8 is_add); + /* Change interface mac address*/ clib_error_t *vnet_hw_interface_change_mac_address (vnet_main_t * vnm, u32 hw_if_index, |