67 u32 hw_if_index, *hw_if_indices = 0;
68 int i, verbose = -1, is_show, show_bond = 0;
70 is_show = strstr (cmd->
path,
"show") != 0;
76 vec_add1 (hw_if_indices, hw_if_index);
79 else if (
unformat (input,
"%u", &hw_if_index))
80 vec_add1 (hw_if_indices, hw_if_index);
82 else if (
unformat (input,
"verbose"))
107 if (
vec_len (hw_if_indices) == 0)
120 for (i = 0; i <
vec_len (hw_if_indices); i++)
137 shi = vnet_get_hw_interface(vnm, hw_idx);
138 vlib_cli_output (vm,
"%U\n",
139 format_vnet_hw_interface, vnm, shi, verbose);
147 for (i = 0; i <
vec_len (hw_if_indices); i++)
154 if (dc->clear_counters)
194 .path =
"show hardware-interfaces",
195 .short_help =
"show hardware-interfaces [brief|verbose|detail] [bond] [<if-name1> <if-name2> ...]",
202 .path =
"clear hardware-interfaces",
203 .short_help =
"Clear hardware interfaces statistics",
226 u8 show_addresses = 0;
257 _vec_len (sorted_sis) = 0;
260 vec_add1 (sorted_sis, si[0]);
280 u32 fib_index4 = 0, fib_index6 = 0;
298 (vm,
"%U (%s): \n unnumbered, use %U",
320 config->
bvi ?
" bvi shg " :
" shg ",
335 r4 = ip_interface_address_get_address (lm4, ia);
338 vlib_cli_output (vm,
" %U/%d table %d",
339 format_ip4_address, r4,
345 vlib_cli_output (vm,
" %U/%d",
346 format_ip4_address, r4,
357 r6 = ip_interface_address_get_address (lm6, ia);
360 vlib_cli_output (vm,
" %U/%d table %d",
361 format_ip6_address, r6,
367 vlib_cli_output (vm,
" %U/%d",
368 format_ip6_address, r6,
390 .path =
"show interfaces",
391 .short_help =
"show interfaces [address|addr] [<if-name1> <if-name2> ...]",
400 .short_help =
"Interface commands",
406 .path =
"set interface",
407 .short_help =
"Interface commands",
420 int i, j, n_counters;
435 for (j = 0; j < n_counters; j++)
437 for (i = 0; i <
vec_len (my_vnet_mains); i++)
447 for (j = 0; j < n_counters; j++)
449 for (i = 0; i <
vec_len (my_vnet_mains); i++)
462 .path =
"clear interfaces",
463 .short_help =
"Clear interfaces statistics",
535 u32 inner_vlan, outer_vlan;
537 if (
unformat (input,
"any inner-dot1q any"))
539 template->sub.eth.
flags.two_tags = 1;
540 template->sub.eth.flags.outer_vlan_id_any = 1;
541 template->sub.eth.flags.inner_vlan_id_any = 1;
545 template->sub.eth.flags.one_tag = 1;
546 template->sub.eth.flags.outer_vlan_id_any = 1;
548 else if (
unformat (input,
"%d inner-dot1q any", &outer_vlan))
550 template->sub.eth.flags.two_tags = 1;
551 template->sub.eth.flags.inner_vlan_id_any = 1;
552 template->sub.eth.outer_vlan_id = outer_vlan;
554 else if (
unformat (input,
"%d inner-dot1q %d", &outer_vlan, &inner_vlan))
556 template->sub.eth.flags.two_tags = 1;
557 template->sub.eth.outer_vlan_id = outer_vlan;
558 template->sub.eth.inner_vlan_id = inner_vlan;
560 else if (
unformat (input,
"%d", &outer_vlan))
562 template->sub.eth.flags.one_tag = 1;
563 template->sub.eth.outer_vlan_id = outer_vlan;
574 if (
unformat (input,
"exact-match"))
576 template->sub.eth.flags.exact_match = 1;
590 u32 hw_if_index, sw_if_index;
592 u32 id, id_min, id_max;
603 memset (&
template, 0,
sizeof (
template));
604 template.sub.eth.raw_flags = 0;
606 if (
unformat (input,
"%d default", &id_min))
609 template.sub.eth.flags.default_sub = 1;
611 else if (
unformat (input,
"%d untagged", &id_min))
614 template.sub.eth.flags.no_tags = 1;
615 template.sub.eth.flags.exact_match = 1;
617 else if (
unformat (input,
"%d dot1q", &id_min))
625 else if (
unformat (input,
"%d dot1ad", &id_min))
629 template.sub.eth.flags.dot1ad = 1;
634 else if (
unformat (input,
"%d-%d", &id_min, &id_max))
636 template.sub.eth.flags.one_tag = 1;
637 template.sub.eth.outer_vlan_id = id_min;
638 template.sub.eth.flags.exact_match = 1;
642 else if (
unformat (input,
"%d", &id_min))
645 template.sub.eth.flags.one_tag = 1;
646 template.sub.eth.outer_vlan_id = id_min;
647 template.sub.eth.flags.exact_match = 1;
663 "not allowed as %v belong to a BondEthernet interface",
668 for (
id = id_min;
id <= id_max;
id++)
679 clib_warning (
"sup sw_if_index %d, sub id %d already exists\n",
685 *kp = sup_and_sub_key;
689 template.sub.id = id;
750 .path =
"create sub-interfaces",
751 .short_help =
"create sub-interfaces <nn>[-<nn>] [dot1q|dot1ad|default|untagged]",
799 .path =
"set interface state",
800 .short_help =
"Set interface state",
810 u32 unnumbered_sw_if_index;
811 u32 inherit_from_sw_if_index;
822 &inherit_from_sw_if_index))
826 vnm, &unnumbered_sw_if_index))
830 if (is_set || is_del)
855 .path =
"set interface unnumbered",
856 .short_help =
"set interface unnumbered [<intfc> use <intfc>][del <intfc>]",
870 u32 hw_if_index, hw_class_index;
898 .path =
"set interface hw-class",
899 .short_help =
"Set interface hardware class",
918 u32 new_dev_instance;
926 if (!
unformat (input,
"%d", &new_dev_instance))
948 .path =
"renumber interface",
949 .short_help =
"renumber interface <if-name> <new-dev-instance>",
984 .path =
"set interface promiscuous",
985 .short_help =
"set interface promiscuous [on | off] <intfc>",
994 u32 hw_if_index, mtu;
1007 if (mtu < hi->min_supported_packet_bytes)
1009 "must be >= min pkt bytes (%d)", mtu,
1030 .path =
"set interface mtu",
1031 .short_help =
"set interface mtu <value> <intfc>",
unformat_function_t unformat_vnet_hw_interface
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
#define foreach_ip_interface_address(lm, a, sw_if_index, loop, body)
static clib_error_t * clear_interface_counters(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define VNET_SW_INTERFACE_FLAG_UNNUMBERED
format_function_t format_vnet_sw_interface
static clib_error_t * create_sub_interfaces(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define hash_set(h, key, value)
l2_input_config_t * configs
sll srl srl sll sra u16x4 i
static clib_error_t * promiscuous_cmd(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
static clib_error_t * set_hw_class(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
static int sw_interface_name_compare(void *a1, void *a2)
static clib_error_t * set_state(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
unformat_function_t unformat_hash_string
vnet_interface_main_t interface_main
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
vnet_main_t ** vnet_mains
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
word vnet_sw_interface_compare(vnet_main_t *vnm, uword sw_if_index0, uword sw_if_index1)
int vnet_interface_name_renumber(u32 sw_if_index, u32 new_show_dev_instance)
static clib_error_t * renumber_interface_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define hash_set_mem(h, key, value)
ip_lookup_main_t lookup_main
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
uword * sub_interface_sw_if_index_by_id
u32 * fib_index_by_sw_if_index
Table index indexed by software interface.
unformat_function_t unformat_vnet_sw_interface
struct _vnet_device_class vnet_device_class_t
format_function_t format_vnet_sw_if_index_name
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
ethernet_main_t ethernet_main
vnet_main_t * vnet_get_main(void)
format_function_t format_vnet_hw_interface
void vlib_clear_combined_counters(vlib_combined_counter_main_t *cm)
Clear a collection of combined counters.
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
#define VLIB_INIT_FUNCTION(x)
#define vec_new(T, N)
Create new vector of given type and length (unspecified alignment, no header).
vlib_combined_counter_main_t * combined_sw_if_counters
static clib_error_t * parse_vlan_sub_interfaces(unformat_input_t *input, vnet_sw_interface_t *template)
Parse subinterface names.
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
#define clib_warning(format, args...)
static clib_error_t * set_unnumbered(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
A collection of simple counters.
static clib_error_t * mtu_cmd(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
u32 max_supported_packet_bytes
vnet_hw_interface_t * hw_interfaces
#define clib_bitmap_foreach(i, ai, body)
Macro to iterate across set bits in a bitmap.
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
uword * sw_if_index_by_sup_and_sub
static clib_error_t * show_sw_interfaces(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
vlib_simple_counter_main_t * sw_if_counters
word vnet_hw_interface_compare(vnet_main_t *vnm, uword hw_if_index0, uword hw_if_index1)
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
static int compare_interface_names(void *a1, void *a2)
uword * hw_interface_class_by_name
#define VNET_HW_INTERFACE_BOND_INFO_SLAVE
#define vec_free(V)
Free vector's memory (no header).
#define ETHERNET_INTERFACE_FLAG_MTU
#define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL
static clib_error_t * show_or_clear_hw_interfaces(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
u32 unnumbered_sw_if_index
#define VNET_SW_INTERFACE_FLAG_ADMIN_UP
ip4_fib_t * fibs
Vector of FIBs.
ip_lookup_main_t lookup_main
Bitmaps built as vectors of machine words.
static void * clib_mem_alloc(uword size)
uword unformat_ethernet_interface(unformat_input_t *input, va_list *args)
#define vec_elt(v, i)
Get vector value at index i.
VLIB_CLI_COMMAND(set_interface_ip_source_and_port_range_check_command, static)
ethernet_interface_t * ethernet_get_interface(ethernet_main_t *em, u32 hw_if_index)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unformat_function_t unformat_vnet_sw_interface_flags
static clib_error_t * vnet_interface_cli_init(vlib_main_t *vm)
#define vec_sort_with_function(vec, f)
Sort a vector using the supplied element comparison function.
vnet_sw_interface_t * sw_interfaces
l2_bridge_domain_t * bd_configs
A collection of combined counters.
#define hash_get_mem(h, key)
u32 min_supported_packet_bytes
void vlib_clear_simple_counters(vlib_simple_counter_main_t *cm)
Clear a collection of simple counters.
ip4_main_t ip4_main
Global ip4 main structure.
#define vec_foreach(var, vec)
Vector iterator.
clib_error_t * vnet_sw_interface_set_flags(vnet_main_t *vnm, u32 sw_if_index, u32 flags)
vnet_device_class_t * device_classes
#define clib_error_return(e, args...)
clib_error_t * vnet_create_sw_interface(vnet_main_t *vnm, vnet_sw_interface_t *template, u32 *sw_if_index)
u32 * fib_index_by_sw_if_index
u32 ethernet_set_flags(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
clib_error_t * vnet_hw_interface_set_class(vnet_main_t *vnm, u32 hw_if_index, u32 hw_class_index)
static uword pool_elts(void *v)
Number of active elements in a pool.