]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/Application/VConfig/VConfigStrings.uni
641e26e0f9966c49ff97c7bbecca4c16916afceb
[mirror_edk2.git] / NetworkPkg / Application / VConfig / VConfigStrings.uni
1 /** @file
2 String definitions for VLAN configuration Shell application.
3
4 Copyright (c) 2009 - 2013, Intel Corporation. All rights reserved.<BR>
5
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php.
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #langdef en-US "English"
17
18 #string STR_VCONFIG_LOCATE_FAIL #language en-US "Failed to locate EFI_VLAN_CONFIG_PROTOCOL - %r.\n"
19 #string STR_VCONFIG_MAC_FAIL #language en-US "Failed to get MAC address - %r.\n"
20 #string STR_VCONFIG_FIND_FAIL #language en-US "Failed to find VLAN configuration - %r.\n"
21 #string STR_VCONFIG_SET_FAIL #language en-US "Failed to set VLAN configuration - %r.\n"
22 #string STR_VCONFIG_REMOVE_FAIL #language en-US "Failed to remove VLAN - %r.\n"
23 #string STR_VCONFIG_NO_IF #language en-US "Network interface not specified.\n"
24 #string STR_VCONFIG_NO_VID #language en-US "VLAN ID not specified.\n"
25 #string STR_VCONFIG_INVALID_IF #language en-US "Invalid network interface - %s.\n"
26 #string STR_VCONFIG_INVALID_VID #language en-US "Invalid VLAN ID - %s.\n"
27 #string STR_VCONFIG_INVALID_PRIORITY #language en-US "Invalid VLAN Priority - %s.\n"
28 #string STR_VCONFIG_NOT_FOUND #language en-US "Cannot find the VLAN device specified.\n"
29 #string STR_VCONFIG_VLAN_DISPLAY #language en-US " VLAN ID: %4d Priority: %d\n"
30 #string STR_VCONFIG_NO_VLAN #language en-US " VLAN is not configured.\n"
31 #string STR_VCONFIG_ETH_MAC #language en-US "eth%d MAC:%s\n"
32 #string STR_VCONFIG_SET_SUCCESS #language en-US "VLAN device added.\n"
33 #string STR_VCONFIG_REMOVE_SUCCESS #language en-US "VLAN device removed.\n"
34 #string STR_VCONFIG_NO_ARG #language en-US "Invalid argument, try "-?" for help.\n"
35 #string STR_VCONFIG_HELP #language en-US "Display or modify VLAN configuration for network interface.\n\n"
36 "VCONFIG [-?] [-l [IfName]] [-a IfName VlanId [Priority]] [-d IfName.VlanId]\n"
37 "\n"
38 " -l Display VLAN configuration for all or specified interface.\n"
39 " -a Add a VLAN device for the network interface.\n"
40 " -d Delete a VLAN device.\n"
41 " IfName Name of network interface, e.g. eth0, eth1.\n"
42 " VlanId Unique VLAN identifier (0~4094).\n"
43 " Priority 802.1Q priority level (0~7), default 0.\n"
44 "\n"
45 "Examples:\n"
46 " * To display VLAN configuration:\n"
47 " fs0:\> vconfig -l\n"
48 " fs0:\> vconfig -l eth0\n"
49 "\n"
50 " * To add VLAN device:\n"
51 " fs0:\> vconfig -a eth0 1000\n"
52 " fs0:\> vconfig -a eth0 2000 7\n"
53 "\n"
54 " * To delete VLAN device:\n"
55 " fs0:\> vconfig -d eth0.1000\n"