diff options
author | Pierre Pfister <ppfister@cisco.com> | 2016-02-19 13:52:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2016-02-19 15:58:07 +0000 |
commit | ef65cb0696b3ee42834a72a35c1eb08da75eed99 (patch) | |
tree | f949c0aea6b0d3ffd9059287c94bb9e20522338a /vpp/api/vpe.api | |
parent | b44e9bc90b634b07d5f93a731a95028adc73bcbc (diff) |
Add custom mac address option to vhost interfaces.
Generating a new MAC address everytime vpp reboots can quickly
become cumbersome (e.g. in test scenarios).
This commit allows vhost mac addresses to be configured
manually.
Change-Id: Ic6d16a2d14cdf8e49dc29041bbafde39d9fc8370
Signed-off-by: Pierre Pfister <ppfister@cisco.com>
Diffstat (limited to 'vpp/api/vpe.api')
-rw-r--r-- | vpp/api/vpe.api | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vpp/api/vpe.api b/vpp/api/vpe.api index d76a5c8e..05ba5567 100644 --- a/vpp/api/vpe.api +++ b/vpp/api/vpe.api @@ -1903,6 +1903,8 @@ define l2_interface_vlan_tag_rewrite_reply { @param client_index - opaque cookie to identify the sender @param is_server - our side is socket server @param sock_filename - unix socket filename, used to speak with frontend + @param use_custom_mac - enable or disable the use of the provided hardware address + @param mac_address - hardware address to use if 'use_custom_mac' is set */ define create_vhost_user_if { u32 client_index; @@ -1911,6 +1913,8 @@ define create_vhost_user_if { u8 sock_filename[256]; u8 renumber; u32 custom_dev_instance; + u8 use_custom_mac; + u8 mac_address[6]; }; /** \brief vhost-user interface create response |