CN108121569B - Interface configuration method and device - Google Patents

Interface configuration method and device Download PDF

Info

Publication number
CN108121569B
CN108121569B CN201711366007.5A CN201711366007A CN108121569B CN 108121569 B CN108121569 B CN 108121569B CN 201711366007 A CN201711366007 A CN 201711366007A CN 108121569 B CN108121569 B CN 108121569B
Authority
CN
China
Prior art keywords
interface
attribute
command
attribute command
target
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201711366007.5A
Other languages
Chinese (zh)
Other versions
CN108121569A (en
Inventor
谢春平
符志清
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Hangzhou DPTech Technologies Co Ltd
Original Assignee
Hangzhou DPTech Technologies Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Hangzhou DPTech Technologies Co Ltd filed Critical Hangzhou DPTech Technologies Co Ltd
Priority to CN201711366007.5A priority Critical patent/CN108121569B/en
Publication of CN108121569A publication Critical patent/CN108121569A/en
Application granted granted Critical
Publication of CN108121569B publication Critical patent/CN108121569B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/4401Bootstrapping
    • G06F9/4411Configuring for operating with peripheral devices; Loading of device drivers
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F13/00Interconnection of, or transfer of information or other signals between, memories, input/output devices or central processing units
    • G06F13/38Information transfer, e.g. on bus
    • G06F13/40Bus structure
    • G06F13/4063Device-to-bus coupling
    • G06F13/4068Electrical coupling

Abstract

The application provides an interface configuration method and device, firstly receiving an interface designation command input by a user, wherein the interface designation command is used for designating a target interface to be configured; according to the pre-configured definition parameters, determining an attribute command set supported and configured by a target interface in an interface command tree, receiving an attribute command input by a user, traversing the attribute command set, and judging whether the received attribute command can be successfully matched in the attribute command set; and if the matching is successful, executing the attribute command to configure the target interface. Compared with the prior art, the method and the device have higher analysis efficiency when the interface is configured.

Description

Interface configuration method and device
Technical Field
The present application relates to the field of network technologies, and in particular, to a method and an apparatus for interface configuration.
Background
The physical interface is a key component of the network device, and can be set to different types according to actual needs to complete different division of labor, for example, a certain physical interface is set to a two-layer port, a three-layer port, a METH port, a WAN port, and the like. Different types of ports can support commands for configuring different attributes, for example, a three-layer interface can configure an IP address attribute, a WAN port supports a LAN/WAN mode switching attribute, and the setting type of a physical interface can be changed.
In the prior art, referring to fig. 1, an interface command tree is constructed by a developer according to interface type classification and attribute support, and all attribute commands configured for each interface type and the interface type support are registered in the command tree. When the user configures the interface, the interface to be configured is firstly appointed and enters the node of the interface, and then the attribute command is input, because all the attribute commands supporting the configuration are registered under the node of the interface, the attribute command set supported by the interface can be determined, traversal is performed in the attribute command set, whether the attribute command input by the user can be successfully matched in the attribute command set or not is determined, and if the matching is successful, the interface configuration is completed.
When an attribute command needs to be newly added, whether the current type of the existing interface supports the configuration of the attribute command needs to be analyzed, and the newly added command is registered under all supported interface nodes; when an interface needs to be added, it needs to analyze whether all the existing attribute commands support the current type of the added interface, and register all the supported attribute commands under the node of the added interface. In the prior art, an interface command tree structure is complex, multiple repeated nodes may exist, the code change amount is large, omission is easy, repeated analysis may be needed during interface configuration, and the efficiency is low.
Disclosure of Invention
In order to solve the above technical problem, the present application provides an interface configuration method and apparatus, and the technical scheme is as follows:
a method of interface configuration, the method comprising:
receiving an interface specification command input by a user, wherein the interface specification command is used for specifying a target interface to be configured;
determining an attribute command set of a target interface in an interface command tree according to a pre-configured definition parameter, wherein the attribute command set is a set of all attribute commands supported and configured by the target interface, and the attribute commands are used for configuring the attributes of the interface;
receiving an attribute command input by a user, traversing the attribute command set, and judging whether the received attribute command can be successfully matched in the attribute command set;
and if the matching is successful, executing the attribute command to configure the target interface.
A method for setting attribute command definition parameters, the method comprising:
selecting an interface type, and determining whether the interface type supports a configuration target attribute command;
if the interface type supports the configuration of the target attribute command, the flag bit corresponding to the interface type is set as the support in the definition parameter of the target attribute command, and so on, all the interface types supported by the attribute command are correspondingly set in the definition parameter, wherein the definition parameter is the unique parameter of each attribute command, a plurality of flag bits exist in the definition parameter, and each flag bit corresponds to one interface type.
An interface configuration apparatus, the apparatus comprising:
an interface specification module: receiving an interface specification command input by a user, wherein the interface specification command is used for specifying a target interface to be configured;
a command determination module: determining an attribute command set of a target interface in an interface command tree according to a pre-configured definition parameter, wherein the attribute command set is a set of all attribute commands supported and configured by the target interface, and the attribute commands are used for configuring the attributes of the interface;
a command matching module: receiving an attribute command input by a user, traversing the attribute command set, and judging whether the received attribute command can be successfully matched in the attribute command set;
an interface configuration module: and if the matching is successful, executing the attribute command to configure the target interface.
An apparatus for setting attribute command definition parameters, the apparatus comprising:
a type judgment module: selecting an interface type, and determining whether the interface type supports a configuration target attribute command;
a parameter configuration module: if the interface type supports the configuration of the target attribute command, the flag bit corresponding to the interface type is set as the support in the definition parameter of the target attribute command, and so on, all the interface types supported by the attribute command are correspondingly set in the definition parameter, wherein the definition parameter is the unique parameter of each attribute command, a plurality of flag bits exist in the definition parameter, and each flag bit corresponds to one interface type.
The method comprises the steps that a definition parameter is configured for each attribute command, the definition parameter comprises a plurality of zone bits, each zone bit corresponds to one interface type, and if one interface type supports the attribute command, the zone bits corresponding to the interface type of the definition parameter are set to be supported. And by analogy, all interface types supported by each attribute command are set in the corresponding zone bits in the respective definition parameters. On the premise of presetting definition parameters, when a user configures an interface, the interface to be configured is firstly appointed, an attribute command set supported by the interface is determined according to the definition parameters of each attribute command, then the attribute command is input, traversal is performed in the attribute command set, whether the attribute command input by the user can be successfully matched in the attribute command set is determined, and if the attribute command input by the user is successfully matched, the interface configuration is completed. When an attribute command is newly added, only the definition parameters of the attribute command need to be configured, and when an interface is newly added, whether the existing interface attribute command supports the current type of the interface needs to be analyzed, and the result is transmitted to the newly added corresponding zone bit of each definition parameter. Referring to fig. 2, the interface command tree of the present application has a simple structure, no duplicate nodes, a small code change amount, and a high resolution efficiency when interface configuration is performed.
Drawings
In order to more clearly illustrate the embodiments of the present application or the technical solutions in the prior art, the drawings needed to be used in the description of the embodiments or the prior art will be briefly described below, it is obvious that the drawings in the following description are only some embodiments described in the present application, and other drawings can be obtained by those skilled in the art according to the drawings.
FIG. 1 is a diagram of an interface command tree in the prior art of the present application;
FIG. 2 is a schematic diagram of an interface command tree according to an embodiment of the present application;
FIG. 3 is a flowchart of an interface configuration method according to an embodiment of the present application;
FIG. 4 is a flowchart illustrating a method for setting attribute parameters according to an embodiment of the present disclosure;
FIG. 5 is a schematic diagram of an interface configuration apparatus according to an embodiment of the present application;
fig. 6 is a schematic diagram of an attribute parameter setting apparatus according to an embodiment of the present application.
Detailed Description
Interfaces, which are key components of network devices, exist in many types. For example, the interface can be divided into a management port, a wireless port, a POS port, a 10G service Ethernet port and the like according to the interface name; the interface can be divided into a two-layer interface and a three-layer interface according to a forwarding mode; according to the type of service, the device can be divided into a NORMAL port, a LAN port, a WAN port, a METH port and the like. Interface classifications sometimes intersect, e.g., a management port is both a three-tier interface and a METH port.
Meanwhile, in an actual network device, not all interfaces support various attributes of the interfaces. Referring to the interface command tree of fig. 1, a developer constructs a command tree according to the interface type classification and the attribute support condition, and registers all the attribute commands of each interface type and the interface type support configuration in the command tree. When a user configures an interface, firstly appointing the interface to be configured and entering a node of the interface, and then inputting an attribute command, because all attribute commands supporting the configuration are registered under the node of the interface, an attribute command set supported by the interface can be determined, traversal is performed in the attribute command set, whether the attribute command input by the user can be successfully matched in the attribute command set is determined, if the matching is successful, the interface configuration is completed, when an attribute command needs to be newly added, whether the current type of the existing interface supports the configuration of the attribute command is analyzed, and the newly added command is registered under all the supported interface nodes; when an interface needs to be added, it needs to analyze whether all the existing attribute commands support the current type of the added interface, and register all the supported attribute commands under the node of the added interface. In the prior art, an interface command tree structure is complex, multiple repeated nodes may exist, the code change amount is large, omission is easy, repeated analysis may be needed during interface configuration, and the efficiency is low.
In view of this, embodiments of the present application provide an interface configuration method and apparatus, and in order to enable those skilled in the art to better understand the technical solutions in the present application, the technical solutions in the embodiments of the present application will be described in detail below with reference to the drawings in the embodiments of the present application.
Referring to fig. 3, a flowchart of an interface configuration method according to an embodiment of the present application may include the following basic steps:
s301, receiving an interface designation command input by a user, wherein the interface designation command is used for designating a target interface to be configured;
s302, according to the pre-configured definition parameters, determining an attribute command set of the target interface in the interface command tree, wherein the attribute command set is a set of all attribute commands supported and configured by the target interface, and the attribute commands are used for configuring the attributes of the interface.
S303, receiving an attribute command input by a user, traversing the attribute command set, judging whether the received attribute command can be successfully matched in the attribute command set, if so, executing the step S304, and if not, ending the process;
s303, executing the attribute command to configure a target interface;
as an embodiment, before traversing the attribute command set and determining whether the received attribute command can be successfully matched in the attribute command set in step S303, the method further includes:
and judging whether the current service type of the target interface and the received attribute command are supported to be configured according to the pre-configured definition parameters, and if the received attribute command is supported to be configured, continuing the process.
As an embodiment, traversing the attribute command set in step S303, determining whether the received attribute command can be successfully matched in the attribute command set, and if the matching is successful, executing the attribute command to configure the target interface, where the method includes:
a1, obtaining a first attribute command in the attribute command set, and judging whether the received attribute command matches with the first attribute command;
step a2, if the received attribute command matches with the first attribute command, executing the attribute command to configure the target interface;
step a3, if the received attribute command does not match the first attribute command, continuing to acquire a second attribute command in the attribute command set until the received attribute command matches one of the attribute commands in the attribute command set, executing the attribute command to configure the target interface, or,
if the received attribute command does not match any of the attribute commands in the attribute command set, the interface configuration is finished.
The flow shown in fig. 3 is completed.
Referring to fig. 4, a flowchart of a setting method for defining parameters for an attribute command according to an embodiment of the present application may include the following basic steps:
s401, selecting an interface type;
s402, determine whether the interface type supports the configure target attribute command? If the command of the configuration target attribute is supported, executing step S404, and if the command of the configuration target attribute is not supported, executing step S405;
s403, in the definition parameters of the target attribute command, setting the flag position corresponding to the interface type as unsupported;
s404, in the definition parameters of the target attribute command, the flag position corresponding to the interface type is set as support;
s405, determine whether all interface types supported by the target attribute command are configured to the flag bit of the definition parameter? If all the flag bits of the defined parameters are configured, ending the process, and if all the flag bits of the defined parameters are not configured, re-executing the step S401;
as an embodiment, after steps S401 to S405 are finished, the method further includes:
when the type of the interface changes, according to the current type of the interface and the zone bit corresponding to the interface in each attribute command definition parameter, dynamically updating an attribute command set supported by the interface, wherein the attribute command set is a set of all attribute commands supported by the current interface.
The flow shown in fig. 4 is completed.
Referring to fig. 2, an interface command tree constructed based on the above attribute command definition parameters according to the embodiment of the present application is provided with only one interface node under which each attribute command is registered. The interface node may be regarded as an interface node that dynamically switches its type according to the interface type specified by the user. After receiving an interface designation command input by a user, acquiring the current type of the interface, judging whether a zone bit corresponding to the interface type in each attribute command definition parameter is supported, and further acquiring an attribute command set supported by the interface.
Referring to fig. 1, in contrast to the prior art, the command tree of the present embodiment does not need to distinguish between multiple interface node types and register the attribute command set supported by each interface node type.
Referring to fig. 5, a schematic diagram of an interface configuration apparatus according to an embodiment of the present application is shown. The method comprises the following steps: an interface specification module 510, a command determination module 520, a command matching module 530, and an interface configuration module 540.
The interface specification module 510: the interface specification command is used for receiving user input and is used for specifying a target interface to be configured;
the command determination module 520: the interface command tree is used for determining an attribute command set of a target interface according to a preset definition parameter, wherein the attribute command set is a set of all attribute commands supported by the target interface and used for configuring the attribute of the interface;
the command matching module 530: the attribute command set is used for receiving an attribute command input by a user, traversing the attribute command set and judging whether the received attribute command can be successfully matched in the attribute command set or not;
the interface configuration module 540: and when the matching can be successfully carried out, executing the attribute command to configure the target interface.
In a specific embodiment of the present application, the interface configuration module 540 is further configured to:
and judging whether the current service type of the target interface and the received attribute command are supported to be configured according to the pre-configured definition parameters, and if the received attribute command is supported to be configured, continuing the process.
In a specific embodiment of the present application, the interface configuration module 540 is further configured to:
acquiring a first attribute command in an attribute command set, and judging whether the received attribute command is matched with the first attribute command;
if the received attribute command is matched with the first attribute command, executing the attribute command to configure a target interface;
if the received attribute command is not matched with the first attribute command, continuously acquiring a second attribute command in the attribute command set until the received attribute command is matched with one of the attribute commands in the attribute command set, executing the attribute command to configure a target interface, or,
the received attribute command does not match any of the attribute commands in the attribute command set, and the interface configuration ends.
Thus, the description of the device structure shown in fig. 5 is completed.
Referring to fig. 5, a schematic diagram of an apparatus for setting parameters defined by an attribute command according to an embodiment of the present application is shown. The method comprises the following steps: a type judging module 610 and a parameter configuring module 620.
The type judging module 610: the interface type is selected, and whether the interface type supports a configuration target attribute command or not is determined;
the parameter configuration module 620: and when the interface type supports the configuration of the target attribute command, the flag bit corresponding to the interface type is set as support in the definition parameter of the target attribute command, and so on, and all the interface types supported by the attribute command are set in the definition parameter correspondingly, wherein the definition parameter is a unique parameter of each attribute command, a plurality of flag bits exist in the definition parameter, and each flag bit corresponds to one interface type.
In a specific embodiment of the present application, the parameter configuration module 620 is further configured to:
when the type of the interface changes, according to the current type of the interface and the zone bit corresponding to the interface in each attribute command definition parameter, dynamically updating an attribute command set supported by the interface, wherein the attribute command set is a set of all attribute commands supported by the current interface.
Thus, the description of the device structure shown in fig. 6 is completed.
Embodiments of the present application also provide a computer-readable storage medium, on which a computer program is stored, and when the computer program is executed by a processor, the computer program implements the foregoing interface configuration method. The method comprises the following steps:
receiving an interface specification command input by a user, wherein the interface specification command is used for specifying a target interface to be configured;
determining an attribute command set of a target interface in an interface command tree according to a pre-configured definition parameter, wherein the attribute command set is a set of all attribute commands supported and configured by the target interface, the attribute commands are used for configuring attributes of the interface, and the interface command tree is a data structure for storing the attribute commands;
receiving an attribute command input by a user, traversing the attribute command set, and judging whether the received attribute command can be successfully matched in the attribute command set;
and if the matching is successful, executing the attribute command to configure the target interface.
Examples of computer storage media include, but are not limited to, phase change memory (PRAM), Static Random Access Memory (SRAM), Dynamic Random Access Memory (DRAM), other types of Random Access Memory (RAM), Read Only Memory (ROM), Electrically Erasable Programmable Read Only Memory (EEPROM), flash memory or other memory technology, compact disc read only memory (CD-ROM), Digital Versatile Discs (DVD) or other optical storage, magnetic cassettes, magnetic tape magnetic disk storage or other magnetic storage devices, or any other non-transmission medium that can be used to store information that can be accessed by a computing device. As defined herein, a computer readable medium does not include a transitory computer readable medium such as a modulated data signal and a carrier wave.
The embodiments in the present application are described in a progressive manner, and the same and similar parts among the embodiments can be referred to each other, and each embodiment focuses on the differences from the other embodiments. In particular, for the apparatus embodiment, since it is substantially similar to the method embodiment, it is relatively simple to describe, and reference may be made to some descriptions of the method embodiment for relevant points. The above-described embodiments of the apparatus are merely illustrative, wherein the modules described as separate parts may or may not be physically separate, and the parts displayed as modules may or may not be physical units, may be located in one place, or may be distributed on a plurality of network units. Some or all of the modules may be selected according to actual needs to achieve the purpose of the solution of the present embodiment. One of ordinary skill in the art can understand and implement it without inventive effort.
The above description is only exemplary of the present application and should not be taken as limiting the present application, as any modification, equivalent replacement, or improvement made within the spirit and principle of the present application should be included in the scope of protection of the present application.

Claims (10)

1. A method for configuring an interface, the method comprising:
receiving an interface specification command input by a user, wherein the interface specification command is used for specifying a target interface to be configured;
determining an attribute command set of a target interface in an interface command tree according to a pre-configured definition parameter, wherein the attribute command set is a set of all attribute commands supported and configured by the target interface, the attribute commands are used for configuring attributes of the interface, and the interface command tree is a data structure for storing the attribute commands;
receiving an attribute command input by a user, traversing the attribute command set, and judging whether the received attribute command can be successfully matched in the attribute command set;
and if the matching is successful, executing the attribute command to configure the target interface.
2. The method of claim 1, wherein traversing the set of attribute commands and before determining whether the received attribute commands can be successfully matched within the set of attribute commands, further comprises:
and judging whether the current type of the target interface supports the configuration of the received attribute command or not according to the pre-configured definition parameters, and if the configuration of the received attribute command is supported, continuing the process.
3. The method of claim 1, wherein traversing the attribute command set, determining whether the received attribute command can be successfully matched within the attribute command set, and if the matching is successful, executing the attribute command to configure a target interface comprises:
acquiring a first attribute command in an attribute command set, and judging whether the received attribute command is matched with the first attribute command;
if the received attribute command is matched with the first attribute command, executing the attribute command to configure a target interface;
if the received attribute command is not matched with the first attribute command, continuously acquiring a second attribute command in the attribute command set until the received attribute command is matched with one of the attribute commands in the attribute command set, executing the attribute command to configure a target interface, or,
the received attribute command does not match any of the attribute commands in the attribute command set, and the interface configuration ends.
4. A method for setting attribute command definition parameters is characterized by comprising the following steps:
selecting an interface type, and determining whether the interface type supports a configuration target attribute command;
if the interface type supports the configuration of the target attribute command, the flag bit corresponding to the interface type is set as the support in the definition parameter of the target attribute command, and so on, all the interface types supported by the attribute command are correspondingly set in the definition parameter, wherein the definition parameter is the unique parameter of each attribute command, a plurality of flag bits exist in the definition parameter, and each flag bit corresponds to one interface type.
5. The method according to claim 4, wherein after setting all interfaces supported by the attribute command in the definition parameters, further comprising:
when the type of the interface changes, according to the current type of the interface and the zone bit corresponding to the interface in each attribute command definition parameter, dynamically updating an attribute command set supported by the interface, wherein the attribute command set is a set of all attribute commands supported by the current interface.
6. An interface configuration apparatus, the apparatus comprising:
an interface specification module: the interface specification command is used for receiving user input and is used for specifying a target interface to be configured;
a command determination module: the interface command tree is used for determining an attribute command set of a target interface according to a preset definition parameter, wherein the attribute command set is a set of all attribute commands supported by the target interface and used for configuring the attribute of the interface;
a command matching module: the attribute command set is used for receiving an attribute command input by a user, traversing the attribute command set and judging whether the received attribute command can be successfully matched in the attribute command set or not;
an interface configuration module: and when the matching can be successfully carried out, executing the attribute command to configure the target interface.
7. The apparatus of claim 6, wherein the interface configuration module is further configured to:
and judging whether the current service type of the target interface and the received attribute command are supported to be configured according to the pre-configured definition parameters, and if the received attribute command is supported to be configured, continuing the process.
8. The apparatus of claim 6, wherein the interface configuration module is further configured to:
acquiring a first attribute command in an attribute command set, and judging whether the received attribute command is matched with the first attribute command;
if the received attribute command is matched with the first attribute command, executing the attribute command to configure a target interface;
if the received attribute command is not matched with the first attribute command, continuously acquiring a second attribute command in the attribute command set until the received attribute command is matched with one of the attribute commands in the attribute command set, executing the attribute command to configure a target interface, or,
the received attribute command does not match any of the attribute commands in the attribute command set, and the interface configuration ends.
9. An apparatus for setting attribute command definition parameters, the apparatus comprising:
a type judgment module: the interface type is selected, and whether the interface type supports a configuration target attribute command or not is determined;
a parameter configuration module: and when the interface type supports the configuration of the target attribute command, the flag bit corresponding to the interface type is set as support in the definition parameter of the target attribute command, and so on, and all the interface types supported by the attribute command are set in the definition parameter correspondingly, wherein the definition parameter is a unique parameter of each attribute command, a plurality of flag bits exist in the definition parameter, and each flag bit corresponds to one interface type.
10. The apparatus of claim 9, wherein the parameter configuration module is further configured to:
when the type of the interface changes, according to the current type of the interface and the zone bit corresponding to the interface in each attribute command definition parameter, dynamically updating an attribute command set supported by the interface, wherein the attribute command set is a set of all attribute commands supported by the current interface.
CN201711366007.5A 2017-12-18 2017-12-18 Interface configuration method and device Active CN108121569B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201711366007.5A CN108121569B (en) 2017-12-18 2017-12-18 Interface configuration method and device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201711366007.5A CN108121569B (en) 2017-12-18 2017-12-18 Interface configuration method and device

Publications (2)

Publication Number Publication Date
CN108121569A CN108121569A (en) 2018-06-05
CN108121569B true CN108121569B (en) 2020-12-04

Family

ID=62229302

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201711366007.5A Active CN108121569B (en) 2017-12-18 2017-12-18 Interface configuration method and device

Country Status (1)

Country Link
CN (1) CN108121569B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112350947B (en) * 2020-10-23 2022-07-29 杭州迪普信息技术有限公司 Message matching decision tree updating method and device

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1808408A (en) * 2005-01-19 2006-07-26 三星电子株式会社 Method and device for confirming sort of USB apparatus
CN101924656A (en) * 2010-08-26 2010-12-22 北京天融信科技有限公司 Method and device for realizing network equipment CLI (Command Line Interface for batch scripti) based on dynamic configuration
CN103902298A (en) * 2012-12-24 2014-07-02 联想(北京)有限公司 Instruction set firmware recovery state information setting method and device

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8239749B2 (en) * 2004-06-25 2012-08-07 Apple Inc. Procedurally expressing graphic objects for web pages

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1808408A (en) * 2005-01-19 2006-07-26 三星电子株式会社 Method and device for confirming sort of USB apparatus
CN101924656A (en) * 2010-08-26 2010-12-22 北京天融信科技有限公司 Method and device for realizing network equipment CLI (Command Line Interface for batch scripti) based on dynamic configuration
CN103902298A (en) * 2012-12-24 2014-07-02 联想(北京)有限公司 Instruction set firmware recovery state information setting method and device

Also Published As

Publication number Publication date
CN108121569A (en) 2018-06-05

Similar Documents

Publication Publication Date Title
EP3353672B1 (en) Method and apparatus for transferring data between databases
US20200242013A1 (en) Champion test case generation
CN107579900B (en) Method, device and system for accessing VX L AN network from V L AN network
CN109714188B (en) Configuration data management method, device and storage medium based on Zookeeper
CN109145055B (en) Data synchronization method and system based on Flink
JP2016164775A (en) Field device commissioning system and method
CN107911249A (en) Order line sending method, device and the equipment of a kind of network equipment
CN107181636B (en) Health check method and device in load balancing system
US11050661B2 (en) Creating an aggregation group
CN104657435A (en) Storage management method for application data and network management system
US20140286339A1 (en) Hardware Acceleration for Routing Programs
CN106294468B (en) Method and device for processing service data
CN108121569B (en) Interface configuration method and device
AU2016201530A1 (en) Test paths generation for a physical system
CN105681199A (en) Method and device for processing message data in vehicular bus
WO2017198087A1 (en) Feature-set augmentation using knowledge engine
CN107040423B (en) Method and system for discovering network topology
US9648103B2 (en) Non-uniform file access in a distributed file system
CN108241620B (en) Query script generation method and device
CN106100953B (en) PCIe device shares the generation method of network, apparatus and system
US10693731B2 (en) Flow entry management method and device
US10505820B2 (en) User interface with an expandable navigation tree
CN106708445A (en) Link selection method and device
CN105144073A (en) Removable storage device identity and configuration information
US9537941B2 (en) Method and system for verifying quality of server

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant