aboutsummaryrefslogtreecommitdiffstats
path: root/vnet/vnet/l2/l2_input_acl.c
diff options
context:
space:
mode:
Diffstat (limited to 'vnet/vnet/l2/l2_input_acl.c')
-rw-r--r--vnet/vnet/l2/l2_input_acl.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/vnet/vnet/l2/l2_input_acl.c b/vnet/vnet/l2/l2_input_acl.c
index 49df0f65ce4..68823e77594 100644
--- a/vnet/vnet/l2/l2_input_acl.c
+++ b/vnet/vnet/l2/l2_input_acl.c
@@ -389,42 +389,3 @@ clib_error_t *l2_inacl_init (vlib_main_t *vm)
}
VLIB_INIT_FUNCTION (l2_inacl_init);
-
-
-// set subinterface inacl enable/disable
-// The CLI format is:
-// set interface acl input <interface> [disable]
-static clib_error_t *
-int_l2_inacl (vlib_main_t * vm,
- unformat_input_t * input,
- vlib_cli_command_t * cmd)
-{
- vnet_main_t * vnm = vnet_get_main();
- clib_error_t * error = 0;
- u32 sw_if_index;
- u32 enable;
-
- if (! unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
- {
- error = clib_error_return (0, "unknown interface `%U'",
- format_unformat_error, input);
- goto done;
- }
-
- enable = 1;
- if (unformat (input, "disable")) {
- enable = 0;
- }
-
- // set the interface flag
- l2input_intf_bitmap_enable(sw_if_index, L2INPUT_FEAT_ACL, enable);
-
- done:
- return error;
-}
-
-VLIB_CLI_COMMAND (int_l2_inacl_cli, static) = {
- .path = "set interface acl input",
- .short_help = "set interface acl input <interface> [disable]",
- .function = int_l2_inacl,
-};