FD.io VPP  v21.06-3-gbb25fbf28
Vector Packet Processing
l2_input.c
Go to the documentation of this file.
1 /*
2  * l2_input.c : layer 2 input packet processing
3  *
4  * Copyright (c) 2013 Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #include <vlib/vlib.h>
19 #include <vnet/vnet.h>
20 #include <vnet/ethernet/ethernet.h>
21 #include <vnet/ethernet/packet.h>
22 #include <vnet/ip/ip_packet.h>
23 #include <vnet/ip/ip4_packet.h>
24 #include <vnet/ip/ip6_packet.h>
25 #include <vnet/fib/fib_node.h>
27 #include <vlib/cli.h>
28 #include <vnet/l2/l2_input.h>
29 #include <vnet/l2/l2_output.h>
30 #include <vnet/l2/feat_bitmap.h>
31 #include <vnet/l2/l2_bvi.h>
32 #include <vnet/l2/l2_fib.h>
33 #include <vnet/l2/l2_bd.h>
34 
35 #include <vppinfra/error.h>
36 #include <vppinfra/hash.h>
37 #include <vppinfra/cache.h>
38 
39 /**
40  * @file
41  * @brief Interface Input Mode (Layer 2 Cross-Connect or Bridge / Layer 3).
42  *
43  * This file contains the CLI Commands that modify the input mode of an
44  * interface. For interfaces in a Layer 2 cross-connect, all packets
45  * received on one interface will be transmitted to the other. For
46  * interfaces in a bridge-domain, packets will be forwarded to other
47  * interfaces in the same bridge-domain based on destination mac address.
48  * For interfaces in Layer 3 mode, the packets will be routed.
49  */
50 
51 /* Feature graph node names */
52 static char *l2input_feat_names[] = {
53 #define _(sym,name) name,
55 #undef _
56 };
57 
58 char **
60 {
61  return l2input_feat_names;
62 }
63 
64 u8 *
65 format_l2_input_feature_bitmap (u8 * s, va_list * args)
66 {
67  static char *display_names[] = {
68 #define _(sym,name) #sym,
70 #undef _
71  };
72  u32 feature_bitmap = va_arg (*args, u32);
73  u32 verbose = va_arg (*args, u32);
74 
75  if (feature_bitmap == 0)
76  {
77  s = format (s, " none configured");
78  return s;
79  }
80 
81  feature_bitmap &= ~L2INPUT_FEAT_DROP; /* Not a feature */
82  int i;
83  for (i = L2INPUT_N_FEAT - 1; i >= 0; i--)
84  {
85  if (feature_bitmap & (1 << i))
86  {
87  if (verbose)
88  s = format (s, "%17s (%s)\n",
89  display_names[i], l2input_feat_names[i]);
90  else
91  s = format (s, "%s ", l2input_feat_names[i]);
92  }
93  }
94  return s;
95 }
96 
97 u8 *
98 format_l2_input_features (u8 * s, va_list * args)
99 {
100  u32 sw_if_index = va_arg (*args, u32);
101  u32 verbose = va_arg (*args, u32);
102 
104  u32 fb = l2_input->feature_bitmap;
105 
106  /* intf input features are masked by bridge domain */
107  if (l2_input_is_bridge (l2_input))
108  fb &= l2_input->bd_feature_bitmap;
109 
110  s =
111  format (s, "\nl2-input:\n%U", format_l2_input_feature_bitmap, fb,
112  verbose);
113 
114  return (s);
115 }
116 
117 u8 *
118 format_l2_input (u8 * s, va_list * args)
119 {
120  u32 sw_if_index = va_arg (*args, u32);
122 
123  /* intf input features are masked by bridge domain */
124  if (l2_input_is_bridge (l2_input))
125  {
126  bd_main_t *bdm = &bd_main;
128 
129  s = format (s, " L2 bridge bd-id %d idx %d shg %d %s",
130  bd_id, bd_find_index (bdm, bd_id), l2_input->shg,
131  l2_input_is_bvi (l2_input) ? "bvi" : " ");
132  }
133  else if (l2_input_is_xconnect (l2_input))
134  s = format (s, " L2 xconnect %U",
136  l2_input->output_sw_if_index);
137 
138  return (s);
139 }
140 
141 clib_error_t *
143 {
145 
146  mp->vlib_main = vm;
147  mp->vnet_main = vnet_get_main ();
148 
149  /* Get packets RX'd from L2 interfaces */
151 
152  /* Initialize the feature next-node indexes */
154  l2input_node.index,
158 
159  return 0;
160 }
161 
163 
164 
165 /** Get a pointer to the config for the given interface. */
168 {
170 
172  return vec_elt_at_index (mp->configs, sw_if_index);
173 }
174 
175 /** Enable (or disable) the feature in the bitmap for the given interface. */
176 u32
178  l2input_feat_masks_t feature_bitmap, u32 enable)
179 {
181 
182  if (enable)
183  config->feature_bitmap |= feature_bitmap;
184  else
185  config->feature_bitmap &= ~feature_bitmap;
186 
187  return config->feature_bitmap;
188 }
189 
190 u32
191 l2input_set_bridge_features (u32 bd_index, u32 feat_mask, u32 feat_value)
192 {
193  l2_bridge_domain_t *bd_config = l2input_bd_config (bd_index);;
194  bd_validate (bd_config);
195  bd_config->feature_bitmap =
196  (bd_config->feature_bitmap & ~feat_mask) | feat_value;
197  return bd_config->feature_bitmap;
198 }
199 
200 void
202  const u8 * old_address, const u8 * new_address)
203 {
204  /* check if the sw_if_index passed is a BVI in a BD */
205  l2_input_config_t *intf_config;
206 
207  intf_config = l2input_intf_config (sw_if_index);
208 
209  if (l2_input_is_bridge (intf_config) && l2_input_is_bvi (intf_config))
210  {
211  /* delete and re-add l2fib entry for the bvi interface */
212  l2fib_del_entry (old_address, intf_config->bd_index, sw_if_index);
213  l2fib_add_entry (new_address,
214  intf_config->bd_index,
215  sw_if_index,
216  L2FIB_ENTRY_RESULT_FLAG_BVI |
217  L2FIB_ENTRY_RESULT_FLAG_STATIC);
218  }
219 }
220 
221 walk_rc_t
223 {
224  l2_input_config_t *input;
225  l2_bridge_domain_t *bd;
226 
227  bd = bd_get (bd_index);
229 
230  input->bd_mac_age = bd->mac_age;
231  input->bd_seq_num = bd->seq_num;
232  input->bd_feature_bitmap = bd->feature_bitmap;
233 
234  return (WALK_CONTINUE);
235 }
236 
237 void
239 {
240  l2_input_config_t *input;
241 
243 
244  input->seq_num++;
245 }
246 
247 /**
248  * Set the subinterface to run in l2 or l3 mode.
249  * For L3 mode, just the sw_if_index is specified.
250  * For bridged mode, the bd id and bvi flag are also specified.
251  * For xconnect mode, the peer sw_if_index is also specified.
252  * Return 0 if ok, or non-0 if there was an error.
253  */
254 
255 u32
257  u32 mode, /* One of L2 modes or back to L3 mode */
258  u32 sw_if_index, /* sw interface index */
259  u32 bd_index, /* for bridged interface */
260  l2_bd_port_type_t port_type, /* port_type */
261  u32 shg, /* the bridged interface split horizon group */
262  u32 xc_sw_if_index) /* peer interface for xconnect */
263 {
265  vnet_main_t *vnm = vnet_get_main ();
267  l2_output_config_t *out_config;
268  l2_input_config_t *config;
269  l2_bridge_domain_t *bd_config;
270  i32 l2_if_adjust = 0;
271  vnet_device_class_t *dev_class;
272 
274  config = l2input_intf_config (sw_if_index);
275 
277  l2fib_table_init ();
278 
279  if (l2_input_is_bridge (config))
280  {
281  /* Interface is already in bridge mode. Undo the existing config. */
282  bd_config = bd_get (config->bd_index);
283 
284  /* remove interface from flood vector */
285  bd_remove_member (bd_config, sw_if_index);
286 
287  /* undo any BVI-related config */
288  if (bd_config->bvi_sw_if_index == sw_if_index)
289  {
291 
292  bd_config->bvi_sw_if_index = ~0;
293  config->flags &= ~L2_INPUT_FLAG_BVI;
294 
295  /* delete the l2fib entry for the bvi interface */
296  l2fib_del_entry (hi->hw_address, config->bd_index, sw_if_index);
297 
298  /* since this is a no longer BVI interface do not to flood to it */
301  }
302  if (bd_config->uu_fwd_sw_if_index == sw_if_index)
303  {
304  bd_config->uu_fwd_sw_if_index = ~0;
305  bd_config->feature_bitmap &= ~L2INPUT_FEAT_UU_FWD;
306  }
307 
308  /* Clear MACs learned on the interface */
309  if ((config->feature_bitmap & L2INPUT_FEAT_LEARN) ||
310  (bd_config->feature_bitmap & L2INPUT_FEAT_LEARN))
312 
313  bd_input_walk (config->bd_index, l2input_recache, NULL);
314  l2_if_adjust--;
315  }
316  else if (l2_input_is_xconnect (config))
317  {
318  l2_if_adjust--;
319  }
320 
321  /* Make sure vector is big enough */
324 
325  /* Initialize the l2-input configuration for the interface */
326  if (mode == MODE_L3)
327  {
328  /* Set L2 config to BD index 0 so that if any packet accidentally
329  * came in on L2 path, it will be dropped in BD 0 */
330  config->flags = L2_INPUT_FLAG_NONE;
331  config->shg = 0;
332  config->bd_index = 0;
333  config->feature_bitmap = L2INPUT_FEAT_DROP;
334 
335  /* Clear L2 output config */
336  out_config = l2output_intf_config (sw_if_index);
337  clib_memset (out_config, 0, sizeof (l2_output_config_t));
338 
339  /* Make sure any L2-output packet to this interface now in L3 mode is
340  * dropped. This may happen if L2 FIB MAC entry is stale */
342  }
343  else
344  {
345  /* Add or update l2-output node next-arc and output_node_index_vec table
346  * for the interface */
348 
349  if (mode == MODE_L2_BRIDGE)
350  {
351  u8 member_flags;
352 
353  /*
354  * Remove a check that the interface must be an Ethernet.
355  * Specifically so we can bridge to L3 tunnel interfaces.
356  * Here's the check:
357  * if (hi->hw_class_index != ethernet_hw_interface_class.index)
358  *
359  */
360  if (!hi)
361  return MODE_ERROR_ETH; /* non-ethernet */
362 
363  config->flags = L2_INPUT_FLAG_BRIDGE;
364  config->bd_index = bd_index;
366 
367  /*
368  * Enable forwarding, flooding, learning and ARP termination by default
369  * (note that ARP term is disabled on BD feature bitmap by default)
370  */
371  config->feature_bitmap |= (L2INPUT_FEAT_FWD |
372  L2INPUT_FEAT_UU_FLOOD |
373  L2INPUT_FEAT_UU_FWD |
374  L2INPUT_FEAT_FLOOD |
375  L2INPUT_FEAT_LEARN |
376  L2INPUT_FEAT_ARP_UFWD |
377  L2INPUT_FEAT_ARP_TERM);
378 
379  /* Make sure last-chance drop is configured */
380  config->feature_bitmap |= L2INPUT_FEAT_DROP;
381 
382  /* Make sure xconnect is disabled */
383  config->feature_bitmap &= ~L2INPUT_FEAT_XCONNECT;
384 
385  /* Set up bridge domain */
386  bd_config = l2input_bd_config (bd_index);
387  bd_validate (bd_config);
388 
389  /* TODO: think: add l2fib entry even for non-bvi interface? */
390 
391  /* Do BVI interface initializations */
392  if (L2_BD_PORT_TYPE_BVI == port_type)
393  {
395 
396  /* ensure BD has no bvi interface (or replace that one with this??) */
397  if (bd_config->bvi_sw_if_index != ~0)
398  {
399  return MODE_ERROR_BVI_DEF; /* bd already has a bvi interface */
400  }
401  bd_config->bvi_sw_if_index = sw_if_index;
402  config->flags |= L2_INPUT_FLAG_BVI;
403 
404  /* create the l2fib entry for the bvi interface */
405  l2fib_add_entry (hi->hw_address, bd_index, sw_if_index,
406  L2FIB_ENTRY_RESULT_FLAG_BVI |
407  L2FIB_ENTRY_RESULT_FLAG_STATIC);
408 
409  /* Disable learning by default. no use since l2fib entry is static. */
410  config->feature_bitmap &= ~L2INPUT_FEAT_LEARN;
411 
412  /* since this is a BVI interface we want to flood to it */
415  member_flags = L2_FLOOD_MEMBER_BVI;
416  }
417  else if (L2_BD_PORT_TYPE_UU_FWD == port_type)
418  {
419  bd_config->uu_fwd_sw_if_index = sw_if_index;
420  bd_config->feature_bitmap |= L2INPUT_FEAT_UU_FWD;
421  }
422  else
423  {
424  member_flags = L2_FLOOD_MEMBER_NORMAL;
425  }
426 
427  if (L2_BD_PORT_TYPE_NORMAL == port_type ||
428  L2_BD_PORT_TYPE_BVI == port_type)
429  {
430  /* Add interface to bridge-domain flood vector */
431  l2_flood_member_t member = {
433  .flags = member_flags,
434  .shg = shg,
435  };
436  bd_add_member (bd_config, &member);
437  }
438  }
439  else if (mode == MODE_L2_XC)
440  {
441  config->flags = L2_INPUT_FLAG_XCONNECT;
442  config->output_sw_if_index = xc_sw_if_index;
443 
444  /* Make sure last-chance drop is configured */
445  config->feature_bitmap |= L2INPUT_FEAT_DROP;
446 
447  /* Make sure bridging features are disabled */
448  config->feature_bitmap &=
449  ~(L2INPUT_FEAT_LEARN | L2INPUT_FEAT_FWD | L2INPUT_FEAT_FLOOD);
450 
451  config->feature_bitmap |= L2INPUT_FEAT_XCONNECT;
452  shg = 0; /* not used in xconnect */
453  }
454  else if (mode == MODE_L2_CLASSIFY)
455  {
456  config->flags = L2_INPUT_FLAG_XCONNECT;
457  config->output_sw_if_index = xc_sw_if_index;
458 
459  /* Make sure last-chance drop is configured */
460  config->feature_bitmap |=
461  L2INPUT_FEAT_DROP | L2INPUT_FEAT_INPUT_CLASSIFY;
462 
463  /* Make sure bridging features are disabled */
464  config->feature_bitmap &=
465  ~(L2INPUT_FEAT_LEARN | L2INPUT_FEAT_FWD | L2INPUT_FEAT_FLOOD);
466  shg = 0; /* not used in xconnect */
467  }
468 
469  /* set up split-horizon group and set output feature bit */
470  config->shg = shg;
471  out_config = l2output_intf_config (sw_if_index);
472  out_config->shg = shg;
473  out_config->feature_bitmap |= L2OUTPUT_FEAT_OUTPUT;
474 
475  /*
476  * Test: remove this when non-IP features can be configured.
477  * Enable a non-IP feature to test IP feature masking
478  * config->feature_bitmap |= L2INPUT_FEAT_CTRL_PKT;
479  */
480 
481  l2_if_adjust++;
482 
483  bd_input_walk (bd_index, l2input_recache, NULL);
484  }
485 
486  /* Adjust count of L2 interfaces */
487  hi->l2_if_count += l2_if_adjust;
488 
489  if (hi->hw_class_index == ethernet_hw_interface_class.index)
490  {
491  if ((hi->l2_if_count == 1) && (l2_if_adjust == 1))
492  {
493  /* Just added first L2 interface on this port
494  * Set promiscuous mode on the l2 interface */
495  ethernet_set_flags (vnet_main, hi->hw_if_index,
497  }
498  else if ((hi->l2_if_count == 0) && (l2_if_adjust == -1))
499  {
500  /* Just removed only L2 subinterface on this port
501  * Disable promiscuous mode on the l2 interface */
502  ethernet_set_flags (vnet_main, hi->hw_if_index,
503  /*ETHERNET_INTERFACE_FLAG_DEFAULT_L3 */ 0);
504 
505  }
506  }
507 
508  /* Set up the L2/L3 flag in the interface parsing tables */
510 
511  dev_class = vnet_get_device_class (vnet_main, hi->dev_class_index);
512  if (dev_class->set_l2_mode_function)
513  {
514  dev_class->set_l2_mode_function (vnet_main, hi, l2_if_adjust);
515  }
516 
517  return 0;
518 }
519 
520 static clib_error_t *
522 {
523  if (!is_add)
524  {
526  l2_input_config_t *config;
527 
529  {
531  if (l2_input_is_xconnect (config))
532  set_int_l2_mode (vm, vnm, MODE_L3, config->output_sw_if_index, 0,
533  L2_BD_PORT_TYPE_NORMAL, 0, 0);
534  if (l2_input_is_xconnect (config) || l2_input_is_bridge (config))
536  L2_BD_PORT_TYPE_NORMAL, 0, 0);
537  }
538  }
539 
540  return (NULL);
541 }
542 
544 
545 /**
546  * Set subinterface in bridging mode with a bridge-domain ID.
547  * The CLI format is:
548  * set interface l2 bridge <interface> <bd> [bvi] [split-horizon-group]
549  */
550 static clib_error_t *
552  unformat_input_t * input, vlib_cli_command_t * cmd)
553 {
554  vnet_main_t *vnm = vnet_get_main ();
555  l2_bd_port_type_t port_type;
556  clib_error_t *error = 0;
557  u32 bd_index, bd_id;
559  u32 rc;
560  u32 shg;
561 
563  {
564  error = clib_error_return (0, "unknown interface `%U'",
565  format_unformat_error, input);
566  goto done;
567  }
568 
569  if (!unformat (input, "%d", &bd_id))
570  {
571  error = clib_error_return (0, "expected bridge domain ID `%U'",
572  format_unformat_error, input);
573  goto done;
574  }
575 
576  if (bd_id > L2_BD_ID_MAX)
577  {
578  error = clib_error_return (0, "bridge domain ID exceed 16M limit",
579  format_unformat_error, input);
580  goto done;
581  }
582  bd_index = bd_find_or_add_bd_index (&bd_main, bd_id);
583 
584  /* optional bvi */
585  port_type = L2_BD_PORT_TYPE_NORMAL;
586  if (unformat (input, "bvi"))
587  port_type = L2_BD_PORT_TYPE_BVI;
588  if (unformat (input, "uu-fwd"))
589  port_type = L2_BD_PORT_TYPE_UU_FWD;
590 
591  /* optional split horizon group */
592  shg = 0;
593  (void) unformat (input, "%d", &shg);
594 
595  /* set the interface mode */
596  if ((rc =
597  set_int_l2_mode (vm, vnm, MODE_L2_BRIDGE, sw_if_index, bd_index,
598  port_type, shg, 0)))
599  {
600  if (rc == MODE_ERROR_ETH)
601  {
602  error = clib_error_return (0, "bridged interface must be ethernet",
603  format_unformat_error, input);
604  }
605  else if (rc == MODE_ERROR_BVI_DEF)
606  {
607  error =
608  clib_error_return (0, "bridge-domain already has a bvi interface",
609  format_unformat_error, input);
610  }
611  else
612  {
613  error = clib_error_return (0, "invalid configuration for interface",
614  format_unformat_error, input);
615  }
616  goto done;
617  }
618 
619 done:
620  return error;
621 }
622 
623 /*?
624  * Use this command put an interface into Layer 2 bridge domain. If a
625  * bridge-domain with the provided bridge-domain-id does not exist, it
626  * will be created. Interfaces in a bridge-domain forward packets to
627  * other interfaces in the same bridge-domain based on destination mac
628  * address. To remove an interface from a the Layer 2 bridge domain,
629  * put the interface in a different mode, for example Layer 3 mode.
630  *
631  * Optionally, an interface can be added to a Layer 2 bridge-domain as
632  * a Bridged Virtual Interface (bvi). Only one interface in a Layer 2
633  * bridge-domain can be a bvi.
634  *
635  * Optionally, a split-horizon group can also be specified. This defaults
636  * to 0 if not specified.
637  *
638  * @cliexpar
639  * Example of how to configure a Layer 2 bridge-domain with three
640  * interfaces (where 200 is the bridge-domain-id):
641  * @cliexcmd{set interface l2 bridge GigabitEthernet0/8/0.200 200}
642  * This interface is added a BVI interface:
643  * @cliexcmd{set interface l2 bridge GigabitEthernet0/9/0.200 200 bvi}
644  * This interface also has a split-horizon group of 1 specified:
645  * @cliexcmd{set interface l2 bridge GigabitEthernet0/a/0.200 200 1}
646  * Example of how to remove an interface from a Layer2 bridge-domain:
647  * @cliexcmd{set interface l3 GigabitEthernet0/a/0.200}
648 ?*/
649 /* *INDENT-OFF* */
651  .path = "set interface l2 bridge",
652  .short_help = "set interface l2 bridge <interface> <bridge-domain-id> [bvi|uu-fwd] [shg]",
653  .function = int_l2_bridge,
654 };
655 /* *INDENT-ON* */
656 
657 /**
658  * Set subinterface in xconnect mode with another interface.
659  * The CLI format is:
660  * set interface l2 xconnect <interface> <peer interface>
661  */
662 static clib_error_t *
664  unformat_input_t * input, vlib_cli_command_t * cmd)
665 {
666  vnet_main_t *vnm = vnet_get_main ();
667  clib_error_t *error = 0;
669  u32 xc_sw_if_index;
670 
672  {
673  error = clib_error_return (0, "unknown interface `%U'",
674  format_unformat_error, input);
675  goto done;
676  }
677 
678  if (!unformat_user
679  (input, unformat_vnet_sw_interface, vnm, &xc_sw_if_index))
680  {
681  error = clib_error_return (0, "unknown peer interface `%U'",
682  format_unformat_error, input);
683  goto done;
684  }
685 
686  /* set the interface mode */
687  if (set_int_l2_mode
689  0, xc_sw_if_index))
690  {
691  error = clib_error_return (0, "invalid configuration for interface",
692  format_unformat_error, input);
693  goto done;
694  }
695 
696 done:
697  return error;
698 }
699 
700 /*?
701  * Use this command put an interface into Layer 2 cross-connect mode.
702  * Both interfaces must be in this mode for bi-directional traffic. All
703  * packets received on one interface will be transmitted to the other.
704  * To remove the Layer 2 cross-connect, put the interface in a different
705  * mode, for example Layer 3 mode.
706  *
707  * @cliexpar
708  * Example of how to configure a Layer2 cross-connect between two interfaces:
709  * @cliexcmd{set interface l2 xconnect GigabitEthernet0/8/0.300 GigabitEthernet0/9/0.300}
710  * @cliexcmd{set interface l2 xconnect GigabitEthernet0/9/0.300 GigabitEthernet0/8/0.300}
711  * Example of how to remove a Layer2 cross-connect:
712  * @cliexcmd{set interface l3 GigabitEthernet0/8/0.300}
713  * @cliexcmd{set interface l3 GigabitEthernet0/9/0.300}
714 ?*/
715 /* *INDENT-OFF* */
717  .path = "set interface l2 xconnect",
718  .short_help = "set interface l2 xconnect <interface> <peer interface>",
719  .function = int_l2_xc,
720 };
721 /* *INDENT-ON* */
722 
723 /**
724  * Set subinterface in L3 mode.
725  * The CLI format is:
726  * set interface l3 <interface>
727  */
728 static clib_error_t *
730 {
731  vnet_main_t *vnm = vnet_get_main ();
732  clib_error_t *error = 0;
734 
736  {
737  error = clib_error_return (0, "unknown interface `%U'",
738  format_unformat_error, input);
739  goto done;
740  }
741 
742  /* set the interface mode */
743  if (set_int_l2_mode (vm, vnm, MODE_L3, sw_if_index, 0,
744  L2_BD_PORT_TYPE_NORMAL, 0, 0))
745  {
746  error = clib_error_return (0, "invalid configuration for interface",
747  format_unformat_error, input);
748  goto done;
749  }
750 
751 done:
752  return error;
753 }
754 
755 /*?
756  * Modify the packet processing mode of the interface to Layer 3, which
757  * implies packets will be routed. This is the default mode of an interface.
758  * Use this command to remove an interface from a Layer 2 cross-connect or a
759  * Layer 2 bridge.
760  *
761  * @cliexpar
762  * Example of how to set the mode of an interface to Layer 3:
763  * @cliexcmd{set interface l3 GigabitEthernet0/8/0.200}
764 ?*/
765 /* *INDENT-OFF* */
767  .path = "set interface l3",
768  .short_help = "set interface l3 <interface>",
769  .function = int_l3,
770 };
771 /* *INDENT-ON* */
772 
773 /**
774  * Show interface mode.
775  * The CLI format is:
776  * show mode [<if-name1> <if-name2> ...]
777  */
778 static clib_error_t *
780  unformat_input_t * input, vlib_cli_command_t * cmd)
781 {
782  vnet_main_t *vnm = vnet_get_main ();
783  clib_error_t *error = 0;
784  char *mode;
785  u8 *args;
787 
788  vnet_sw_interface_t *si, *sis = 0;
790  {
792 
793  /* See if user wants to show specific interface */
794  if (unformat
795  (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
796  {
798  vec_add1 (sis, si[0]);
799  }
800  else
801  {
802  error = clib_error_return (0, "unknown input `%U'",
803  format_unformat_error, input);
804  goto done;
805  }
806  }
807 
808  if (vec_len (sis) == 0) /* Get all interfaces */
809  {
810  /* Gather interfaces. */
812  _vec_len (sis) = 0;
813  /* *INDENT-OFF* */
814  pool_foreach (si, im->sw_interfaces) { vec_add1 (sis, si[0]); }
815  /* *INDENT-ON* */
816  }
817 
818  vec_foreach (si, sis)
819  {
821  if (l2_input_is_bridge (config))
822  {
823  u32 bd_id;
824  mode = "l2 bridge";
826 
827  args = format (0, "bd_id %d%s shg %d", bd_id,
828  l2_input_is_bvi (config) ? " bvi" : "", config->shg);
829  }
830  else if (l2_input_is_xconnect (config))
831  {
832  mode = "l2 xconnect";
833  args = format (0, "%U",
835  vnm, config->output_sw_if_index);
836  }
837  else
838  {
839  mode = "l3";
840  args = format (0, " ");
841  }
842  vlib_cli_output (vm, "%s %U %v\n",
843  mode,
845  vnm, si->sw_if_index, args);
846  vec_free (args);
847  }
848 
849 done:
850  vec_free (sis);
851 
852  return error;
853 }
854 
855 /*?
856  * Show the packet processing mode (Layer2 cross-connect, Layer 2 bridge,
857  * Layer 3 routed) of all interfaces and sub-interfaces, or limit the
858  * output to just the provided list of interfaces and sub-interfaces.
859  * The output shows the mode, the interface, and if the interface is
860  * a member of a bridge, the bridge-domain-id and the split horizon group (shg).
861  *
862  * @cliexpar
863  * Example of displaying the mode of all interfaces:
864  * @cliexstart{show mode}
865  * l3 local0
866  * l3 GigabitEthernet0/8/0
867  * l3 GigabitEthernet0/9/0
868  * l3 GigabitEthernet0/a/0
869  * l2 bridge GigabitEthernet0/8/0.200 bd_id 200 shg 0
870  * l2 bridge GigabitEthernet0/9/0.200 bd_id 200 shg 0
871  * l2 bridge GigabitEthernet0/a/0.200 bd_id 200 shg 0
872  * l2 xconnect GigabitEthernet0/8/0.300 GigabitEthernet0/9/0.300
873  * l2 xconnect GigabitEthernet0/9/0.300 GigabitEthernet0/8/0.300
874  * @cliexend
875  * Example of displaying the mode of a selected list of interfaces:
876  * @cliexstart{show mode GigabitEthernet0/8/0 GigabitEthernet0/8/0.200}
877  * l3 GigabitEthernet0/8/0
878  * l2 bridge GigabitEthernet0/8/0.200 bd_id 200 shg 0
879  * @cliexend
880 ?*/
881 /* *INDENT-OFF* */
883  .path = "show mode",
884  .short_help = "show mode [<if-name1> <if-name2> ...]",
885  .function = show_int_mode,
886 };
887 /* *INDENT-ON* */
888 
889 #define foreach_l2_init_function \
890 _(feat_bitmap_drop_init) \
891 _(l2fib_init) \
892 _(l2_input_classify_init) \
893 _(l2bd_init) \
894 _(l2fwd_init) \
895 _(l2_in_out_acl_init) \
896 _(l2input_init) \
897 _(l2_vtr_init) \
898 _(l2_invtr_init) \
899 _(l2_efp_filter_init) \
900 _(l2learn_init) \
901 _(l2flood_init) \
902 _(l2output_init) \
903 _(l2_patch_init) \
904 _(l2_xcrw_init)
905 
906 clib_error_t *
908 {
910 
911 #define _(a) do { \
912  if ((error = vlib_call_init_function (vm, a))) return error; } \
913 while (0);
915 #undef _
916  return 0;
917 }
918 
920 
921 /*
922  * fd.io coding-style-patch-verification: ON
923  *
924  * Local Variables:
925  * eval: (c-set-style "gnu")
926  * End:
927  */
vlib.h
l2fib_flush_int_mac
void l2fib_flush_int_mac(vlib_main_t *vm, u32 sw_if_index)
Flush all non static MACs from an interface.
Definition: l2_fib.c:905
ethernet_register_l2_input
void ethernet_register_l2_input(vlib_main_t *vm, u32 node_index)
Definition: node.c:2299
im
vnet_interface_main_t * im
Definition: interface_output.c:395
l2_bridge_domain_t
Definition: l2_bd.h:63
unformat_user
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:989
vnet_sw_interface_t
Definition: interface.h:868
int_l2_bridge
static clib_error_t * int_l2_bridge(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Set subinterface in bridging mode with a bridge-domain ID.
Definition: l2_input.c:551
WALK_CONTINUE
@ WALK_CONTINUE
Definition: interface_funcs.h:174
l2_input_config_t
Definition: l2_input.h:42
vnet_device_class_t
struct _vnet_device_class vnet_device_class_t
l2output_create_output_node_mapping
void l2output_create_output_node_mapping(vlib_main_t *vlib_main, vnet_main_t *vnet_main, u32 sw_if_index)
Create a mapping in the next node mapping table for the given sw_if_index.
Definition: l2_output.c:601
vec_new
#define vec_new(T, N)
Create new vector of given type and length (unspecified alignment, no header).
Definition: vec.h:365
l2input_main
l2input_main_t l2input_main
Definition: l2_input_node.c:78
l2input_bd_config
static_always_inline l2_bridge_domain_t * l2input_bd_config(u32 bd_index)
Definition: l2_input.h:114
l2input_main_t
Definition: l2_input.h:83
l2_input_config_t::bd_index
u16 bd_index
Definition: l2_input.h:51
l2_output_config_t::feature_bitmap
u32 feature_bitmap
Definition: l2_output.h:41
ethernet_set_flags
u32 ethernet_set_flags(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: interface.c:441
ethernet_sw_interface_set_l2_mode
void ethernet_sw_interface_set_l2_mode(vnet_main_t *vnm, u32 sw_if_index, u32 l2)
Definition: node.c:1960
l2_flood_member_t::sw_if_index
u32 sw_if_index
Definition: l2_bd.h:55
pool_elt_at_index
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:553
int_l3
static clib_error_t * int_l3(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Set subinterface in L3 mode.
Definition: l2_input.c:729
l2_input_interface_add_del
static clib_error_t * l2_input_interface_add_del(vnet_main_t *vnm, u32 sw_if_index, u32 is_add)
Definition: l2_input.c:521
l2input_main_t::vlib_main
vlib_main_t * vlib_main
Definition: l2_input.h:96
l2input_intf_config
l2_input_config_t * l2input_intf_config(u32 sw_if_index)
Get a pointer to the config for the given interface.
Definition: l2_input.c:167
bd_main_t
Definition: l2_bd.h:33
format_l2_input_feature_bitmap
u8 * format_l2_input_feature_bitmap(u8 *s, va_list *args)
Definition: l2_input.c:65
l2_input_is_xconnect
static bool l2_input_is_xconnect(const l2_input_config_t *input)
Definition: l2_input.h:240
clib_error_return
#define clib_error_return(e, args...)
Definition: error.h:99
vlib_cli_command_t::path
char * path
Definition: cli.h:96
vnet_interface_main_t
Definition: interface.h:989
foreach_l2_init_function
#define foreach_l2_init_function
Definition: l2_input.c:889
l2input_interface_mac_change
void l2input_interface_mac_change(u32 sw_if_index, const u8 *old_address, const u8 *new_address)
Definition: l2_input.c:201
L2_FLOOD_MEMBER_BVI
#define L2_FLOOD_MEMBER_BVI
Definition: l2_bd.h:51
bd_remove_member
u32 bd_remove_member(l2_bridge_domain_t *bd_config, u32 sw_if_index)
Definition: l2_bd.c:198
l2_input_config_t::flags
l2_input_flags_t flags
Definition: l2_input.h:73
l2input_set_bridge_features
u32 l2input_set_bridge_features(u32 bd_index, u32 feat_mask, u32 feat_value)
Definition: l2_input.c:191
mode
vl_api_tunnel_mode_t mode
Definition: gre.api:48
L2_INPUT_FLAG_BVI
@ L2_INPUT_FLAG_BVI
Definition: l2_input.h:38
l2_input_config_t::output_sw_if_index
u32 output_sw_if_index
Definition: l2_input.h:56
ethernet_hw_interface_class
vnet_hw_interface_class_t ethernet_hw_interface_class
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
vnet_get_sw_interface
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface_funcs.h:58
MODE_ERROR_ETH
#define MODE_ERROR_ETH
Definition: l2_input.h:287
ip_packet.h
hi
vl_api_ip4_address_t hi
Definition: arp.api:37
VNET_SW_INTERFACE_ADD_DEL_FUNCTION
VNET_SW_INTERFACE_ADD_DEL_FUNCTION(l2_input_interface_add_del)
vnet_get_device_class
static vnet_device_class_t * vnet_get_device_class(vnet_main_t *vnm, u32 dev_class_index)
Definition: interface_funcs.h:124
l2input_init
clib_error_t * l2input_init(vlib_main_t *vm)
Definition: l2_input.c:142
unformat_input_t
struct _unformat_input_t unformat_input_t
fib_node.h
l2_bridge_domain_t::mac_age
u8 mac_age
Definition: l2_bd.h:105
L2_BD_PORT_TYPE_UU_FWD
@ L2_BD_PORT_TYPE_UU_FWD
Definition: l2_bd.h:30
ethernet.h
error
Definition: cJSON.c:88
l2fib_add_entry
void l2fib_add_entry(const u8 *mac, u32 bd_index, u32 sw_if_index, l2fib_entry_result_flags_t flags)
Add an entry to the l2fib.
Definition: l2_fib.c:445
bd_get
l2_bridge_domain_t * bd_get(u32 bd_index)
Definition: l2_bd.c:252
l2_fib.h
i32
signed int i32
Definition: types.h:77
ip6_packet.h
MODE_L2_BRIDGE
#define MODE_L2_BRIDGE
Definition: l2_input.h:283
unformat
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
MODE_L2_CLASSIFY
#define MODE_L2_CLASSIFY
Definition: l2_input.h:285
int_l3_cli
static vlib_cli_command_t int_l3_cli
(constructor) VLIB_CLI_COMMAND (int_l3_cli)
Definition: l2_input.c:766
vnet_sw_interface_t::sw_if_index
u32 sw_if_index
Definition: interface.h:875
bd_input_walk
u32 bd_input_walk(u32 bd_index, bd_input_walk_fn_t fn, void *data)
Definition: l2_bd.c:260
l2input_feat_names
static char * l2input_feat_names[]
Definition: l2_input.c:52
l2_input_is_bvi
static bool l2_input_is_bvi(const l2_input_config_t *input)
Definition: l2_input.h:246
pool_foreach
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:534
L2_INPUT_FLAG_BRIDGE
@ L2_INPUT_FLAG_BRIDGE
Definition: l2_input.h:37
l2_input_config_t::bd_seq_num
u8 bd_seq_num
Definition: l2_input.h:52
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
packet.h
l2output_main_t::output_node_index_vec
u32 * output_node_index_vec
Definition: l2_output.h:58
error.h
bd_id
u32 bd_id
Definition: gbp.api:188
vec_add1
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:606
VNET_FLOOD_CLASS_BVI
@ VNET_FLOOD_CLASS_BVI
Definition: interface.h:816
l2_bridge_domain_t::uu_fwd_sw_if_index
u32 uu_fwd_sw_if_index
Definition: l2_bd.h:80
l2_output.h
l2input_main_t::vnet_main
vnet_main_t * vnet_main
Definition: l2_input.h:97
shg
u8 shg
Definition: l2.api:360
vec_elt_at_index
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
Definition: vec_bootstrap.h:203
vnet_get_main
vnet_main_t * vnet_get_main(void)
Definition: pnat_test_stubs.h:56
unformat_check_input
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:163
show_l2_mode
static vlib_cli_command_t show_l2_mode
(constructor) VLIB_CLI_COMMAND (show_l2_mode)
Definition: l2_input.c:882
bd_add_member
void bd_add_member(l2_bridge_domain_t *bd_config, l2_flood_member_t *member)
Definition: l2_bd.c:153
l2_bvi.h
vnet_sw_interface_t::flood_class
vnet_flood_class_t flood_class
Definition: interface.h:897
MODE_L3
#define MODE_L3
Definition: l2_input.h:282
l2input_intf_bitmap_enable
u32 l2input_intf_bitmap_enable(u32 sw_if_index, l2input_feat_masks_t feature_bitmap, u32 enable)
Enable (or disable) the feature in the bitmap for the given interface.
Definition: l2_input.c:177
l2input_get_feat_names
char ** l2input_get_feat_names(void)
Return an array of strings containing graph node names of each feature.
Definition: l2_input.c:59
foreach_l2input_feat
#define foreach_l2input_feat
Definition: l2_input.h:130
MODE_ERROR_BVI_DEF
#define MODE_ERROR_BVI_DEF
Definition: l2_input.h:288
i
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:261
l2_input_config_t::bd_mac_age
u8 bd_mac_age
Definition: l2_input.h:53
l2_input_config_t::seq_num
u8 seq_num
Definition: l2_input.h:70
l2_input_config_t::shg
u8 shg
Definition: l2_input.h:67
format_unformat_error
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
vec_validate
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment)
Definition: vec.h:523
VLIB_CLI_COMMAND
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:163
l2_input_is_bridge
static bool l2_input_is_bridge(const l2_input_config_t *input)
Definition: l2_input.h:234
bd_find_or_add_bd_index
static u32 bd_find_or_add_bd_index(bd_main_t *bdm, u32 bd_id)
Get or create a bridge domain.
Definition: l2_bd.h:202
show_int_mode
static clib_error_t * show_int_mode(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Show interface mode.
Definition: l2_input.c:779
l2_init
clib_error_t * l2_init(vlib_main_t *vm)
Definition: l2_input.c:907
L2INPUT_N_FEAT
@ L2INPUT_N_FEAT
Definition: l2_input.h:163
l2_bridge_domain_t::feature_bitmap
u32 feature_bitmap
Definition: l2_bd.h:69
vlib_cli_output
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:716
vnet_interface_main_t::sw_interfaces
vnet_sw_interface_t * sw_interfaces
Definition: interface.h:1014
l2input_main_t::feat_next_node_index
u32 feat_next_node_index[32]
Definition: l2_input.h:87
format_l2_input_features
u8 * format_l2_input_features(u8 *s, va_list *args)
Definition: l2_input.c:98
l2_bridge_domain_t::seq_num
u8 seq_num
Definition: l2_bd.h:108
l2input_node
vlib_node_registration_t l2input_node
(constructor) VLIB_REGISTER_NODE (l2input_node)
Definition: l2_input_node.c:370
l2_input.h
l2output_intf_config
l2_output_config_t * l2output_intf_config(u32 sw_if_index)
Get a pointer to the config for the given interface.
Definition: l2_output.c:615
ip4_packet.h
set_int_l2_mode
u32 set_int_l2_mode(vlib_main_t *vm, vnet_main_t *vnet_main, u32 mode, u32 sw_if_index, u32 bd_index, l2_bd_port_type_t port_type, u32 shg, u32 xc_sw_if_index)
Set the subinterface to run in l2 or l3 mode.
Definition: l2_input.c:256
vnet_hw_interface_t
Definition: interface.h:638
vnet_main_t
Definition: vnet.h:76
vec_free
#define vec_free(V)
Free vector's memory (no header).
Definition: vec.h:395
l2_input_seq_num_inc
void l2_input_seq_num_inc(u32 sw_if_index)
Definition: l2_input.c:238
l2_bridge_domain_t::bd_id
u32 bd_id
Definition: l2_bd.h:83
l2_bridge_domain_t::bvi_sw_if_index
u32 bvi_sw_if_index
Definition: l2_bd.h:74
bd_find_index
u32 bd_find_index(bd_main_t *bdm, u32 bd_id)
Get a bridge domain.
Definition: l2_bd.c:70
L2_BD_PORT_TYPE_NORMAL
@ L2_BD_PORT_TYPE_NORMAL
Definition: l2_bd.h:28
format_vnet_sw_if_index_name
format_function_t format_vnet_sw_if_index_name
Definition: interface_funcs.h:455
unformat_vnet_sw_interface
unformat_function_t unformat_vnet_sw_interface
Definition: interface_funcs.h:459
format
description fragment has unexpected format
Definition: map.api:433
cache.h
l2fib_main
l2fib_main_t l2fib_main
Definition: l2_fib.c:54
vec_validate_init_empty
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header,...
Definition: vec.h:570
VNET_FLOOD_CLASS_NO_FLOOD
@ VNET_FLOOD_CLASS_NO_FLOOD
Definition: interface.h:823
u32
unsigned int u32
Definition: types.h:88
VLIB_INIT_FUNCTION
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:172
vnet_get_sup_hw_interface
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface_funcs.h:92
l2output_main
l2output_main_t l2output_main
Definition: l2_output.c:77
l2_input_config_t::feature_bitmap
u32 feature_bitmap
Definition: l2_input.h:60
l2fib_del_entry
u32 l2fib_del_entry(const u8 *mac, u32 bd_index, u32 sw_if_index)
Delete an entry from the l2fib.
Definition: l2_fib.c:746
cli.h
si
vnet_sw_interface_t * si
Definition: interface_output.c:398
l2fib_main_t::mac_table_initialized
u8 mac_table_initialized
Definition: l2_fib.h:55
vec_foreach
#define vec_foreach(var, vec)
Vector iterator.
Definition: vec_bootstrap.h:213
L2_INPUT_FLAG_NONE
@ L2_INPUT_FLAG_NONE
Definition: l2_input.h:35
pool_elts
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:127
bd_validate
void bd_validate(l2_bridge_domain_t *bd_config)
Init bridge domain if not done already.
Definition: l2_bd.c:51
L2OUTPUT_NEXT_BAD_INTF
@ L2OUTPUT_NEXT_BAD_INTF
Definition: l2_output.h:130
l2_flood_member_t
Definition: l2_bd.h:53
l2_output_config_t
Definition: l2_output.h:28
int_l2_bridge_cli
static vlib_cli_command_t int_l2_bridge_cli
(constructor) VLIB_CLI_COMMAND (int_l2_bridge_cli)
Definition: l2_input.c:650
vnet_main
vnet_main_t vnet_main
Definition: misc.c:43
clib_memset
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
vlib_main_t
Definition: main.h:102
L2_INPUT_FLAG_XCONNECT
@ L2_INPUT_FLAG_XCONNECT
Definition: l2_input.h:36
L2_BD_ID_MAX
#define L2_BD_ID_MAX
Definition: l2_bd.h:122
bd_main
bd_main_t bd_main
Definition: l2_bd.c:44
hash.h
l2_output_config_t::shg
u8 shg
Definition: l2_output.h:44
vlib_get_main
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:38
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
feat_bitmap.h
vlib_init_function_t
clib_error_t *() vlib_init_function_t(struct vlib_main_t *vm)
Definition: init.h:51
arp_packet.h
ETHERNET_INTERFACE_FLAG_ACCEPT_ALL
#define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL
Definition: ethernet.h:163
format_l2_input
u8 * format_l2_input(u8 *s, va_list *args)
Definition: l2_input.c:118
l2_bd_port_type_t
enum l2_bd_port_type_t_ l2_bd_port_type_t
vnet.h
l2input_feat_masks_t
l2input_feat_masks_t
Definition: l2_input.h:169
l2input_main_t::configs
l2_input_config_t * configs
Definition: l2_input.h:90
MODE_L2_XC
#define MODE_L2_XC
Definition: l2_input.h:284
vlib_cli_command_t
Definition: cli.h:92
int_l2_xc_cli
static vlib_cli_command_t int_l2_xc_cli
(constructor) VLIB_CLI_COMMAND (int_l2_xc_cli)
Definition: l2_input.c:716
sw_if_index
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
L2_FLOOD_MEMBER_NORMAL
#define L2_FLOOD_MEMBER_NORMAL
Definition: l2_bd.h:50
l2_bd.h
walk_rc_t
enum walk_rc_t_ walk_rc_t
Walk return code.
L2_BD_PORT_TYPE_BVI
@ L2_BD_PORT_TYPE_BVI
Definition: l2_bd.h:29
l2_input_config_t::bd_feature_bitmap
u32 bd_feature_bitmap
Definition: l2_input.h:64
feat_bitmap_init_next_nodes
static void feat_bitmap_init_next_nodes(vlib_main_t *vm, u32 node_index, u32 num_features, char **feat_names, u32 *next_nodes)
Initialize the feature next-node indexes of a graph node.
Definition: feat_bitmap.h:43
int_l2_xc
static clib_error_t * int_l2_xc(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Set subinterface in xconnect mode with another interface.
Definition: l2_input.c:663
vnet_main_t::interface_main
vnet_interface_main_t interface_main
Definition: vnet.h:81
l2input_recache
walk_rc_t l2input_recache(u32 bd_index, u32 sw_if_index)
Definition: l2_input.c:222
UNFORMAT_END_OF_INPUT
#define UNFORMAT_END_OF_INPUT
Definition: format.h:137
L2OUTPUT_NEXT_DROP
@ L2OUTPUT_NEXT_DROP
Definition: l2_output.h:129
l2fib_table_init
void l2fib_table_init(void)
Definition: l2_fib.c:369
l2input_main_t::bd_configs
l2_bridge_domain_t * bd_configs
Definition: l2_input.h:93
l2output_main_t
Definition: l2_output.h:51