]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/Application/VConfig/VConfigStrings.uni
NetworkPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / NetworkPkg / Application / VConfig / VConfigStrings.uni
1 /** @file
2 String definitions for VLAN configuration Shell application.
3
4 Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR>
5
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #langdef en-US "English"
11
12 #string STR_VCONFIG_LOCATE_FAIL #language en-US "Failed to locate EFI_VLAN_CONFIG_PROTOCOL - %r.\n"
13 #string STR_VCONFIG_MAC_FAIL #language en-US "Failed to get MAC address - %r.\n"
14 #string STR_VCONFIG_FIND_FAIL #language en-US "Failed to find VLAN configuration - %r.\n"
15 #string STR_VCONFIG_SET_FAIL #language en-US "Failed to set VLAN configuration - %r.\n"
16 #string STR_VCONFIG_REMOVE_FAIL #language en-US "Failed to remove VLAN - %r.\n"
17 #string STR_VCONFIG_NO_IF #language en-US "Network interface not specified.\n"
18 #string STR_VCONFIG_NO_VID #language en-US "VLAN ID not specified.\n"
19 #string STR_VCONFIG_INVALID_IF #language en-US "Invalid network interface - %s.\n"
20 #string STR_VCONFIG_INVALID_VID #language en-US "Invalid VLAN ID - %s.\n"
21 #string STR_VCONFIG_INVALID_PRIORITY #language en-US "Invalid VLAN Priority - %s.\n"
22 #string STR_VCONFIG_NOT_FOUND #language en-US "Cannot find the VLAN device specified.\n"
23 #string STR_VCONFIG_VLAN_DISPLAY #language en-US " VLAN ID: %4d Priority: %d\n"
24 #string STR_VCONFIG_NO_VLAN #language en-US " VLAN is not configured.\n"
25 #string STR_VCONFIG_ETH_MAC #language en-US "eth%d MAC:%s\n"
26 #string STR_VCONFIG_SET_SUCCESS #language en-US "VLAN device added.\n"
27 #string STR_VCONFIG_REMOVE_SUCCESS #language en-US "VLAN device removed.\n"
28 #string STR_VCONFIG_NO_ARG #language en-US "Invalid argument, try "-?" for help.\n"
29
30 #string STR_VCONFIG_HELP #language en-US ""
31 ".TH VConfig 0 "Display or modify VLAN configuration for network interface."\r\n"
32 ".SH NAME\r\n"
33 "Display or modify VLAN configuration for network interface.\r\n"
34 ".SH SYNOPSIS\r\n"
35 " \r\n"
36 "VCONFIG [-?] [-l [IfName]] [-a IfName VlanId [Priority]] [-d IfName.VlanId]\r\n"
37 ".SH OPTIONS\r\n"
38 " \r\n"
39 " -l Display VLAN configuration for all or specified interface.\r\n"
40 " -a Add a VLAN device for the network interface.\r\n"
41 " -d Delete a VLAN device.\r\n"
42 " IfName Name of network interface, e.g. eth0, eth1.\r\n"
43 " VlanId Unique VLAN identifier (0~4094).\r\n"
44 " Priority 802.1Q priority level (0~7), default 0.\r\n"
45 ".SH EXAMPLES\r\n"
46 " \r\n"
47 "Examples:\r\n"
48 " * To display VLAN configuration:\r\n"
49 " fs0:\> vconfig -l\r\n"
50 " fs0:\> vconfig -l eth0\r\n"
51 "\r\n"
52 " * To add VLAN device:\r\n"
53 " fs0:\> vconfig -a eth0 1000\r\n"
54 " fs0:\> vconfig -a eth0 2000 7\r\n"
55 "\r\n"
56 " * To delete VLAN device:\r\n"
57 " fs0:\> vconfig -d eth0.1000\r\n"