X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fdevices%2Faf_packet%2Fcli.c;fp=src%2Fvnet%2Fdevices%2Faf_packet%2Fcli.c;h=d20ef61a09d43bbe428bf1faeeebdc7d16cf4361;hb=8b90d89b05322ceaaf57e0eda403c4f92546f7b3;hp=e730659bfcd821bc71fdf9afed88bf4f73445a82;hpb=65bff88c3671ec6ee561e70f17c60ea9784a39dd;p=vpp.git diff --git a/src/vnet/devices/af_packet/cli.c b/src/vnet/devices/af_packet/cli.c index e730659bfcd..d20ef61a09d 100644 --- a/src/vnet/devices/af_packet/cli.c +++ b/src/vnet/devices/af_packet/cli.c @@ -89,6 +89,8 @@ af_packet_create_command_fn (vlib_main_t * vm, unformat_input_t * input, arg->flags &= ~AF_PACKET_IF_FLAGS_CKSUM_GSO; else if (unformat (line_input, "mode ip")) arg->mode = AF_PACKET_IF_MODE_IP; + else if (unformat (line_input, "v2")) + arg->is_v2 = 1; else if (unformat (line_input, "hw-addr %U", unformat_ethernet_address, hwaddr)) arg->hw_addr = hwaddr; @@ -160,7 +162,7 @@ done: ?*/ VLIB_CLI_COMMAND (af_packet_create_command, static) = { .path = "create host-interface", - .short_help = "create host-interface name [num-rx-queues ] " + .short_help = "create host-interface [v2] name [num-rx-queues ] " "[num-tx-queues ] [hw-addr ] [mode ip] " "[qdisc-bypass-disable] [cksum-gso-disable]", .function = af_packet_create_command_fn,