cim_outboundvlan.mof

来自「Pegasus is an open-source implementation」· MOF 代码 · 共 38 行

MOF
38
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_OutboundVLAN// ==================================================================   [Association, Deprecated { "No Value" },       UMLPackagePath ( "CIM::Network::VLAN" ), Version ( "2.8.0" ),     Description (       "This class is deprecated in lieu or not being necessary to "       "indicate whether the VLAN is inbound/outbound This association "       "makes explicit the operational dependencies of a SwitchPort "       "when operating in a VLAN. If there is no instance of "       "OutboundVLAN between a given SwitchPort and VLAN, then any "       "packet that has been assigned to the VLAN and whose "       "destination address is associated with the port will be "       "dropped by the switch without being transmitted. Otherwise, "       "the packet will be transmitted.")]class CIM_OutboundVLAN : CIM_SAPSAPDependency {      [Deprecated { "No Value" }, Override ( "Antecedent" ),        Description (          "The VLAN to which the SwitchPort is assigned.")]   CIM_VLAN REF Antecedent;      [Deprecated { "No Value" }, Override ( "Dependent" ),        Description (          "The SwitchPort on the VLAN.")]   CIM_SwitchPort REF Dependent;      [Deprecated { "No Value" }, Description (          "If Tagged is TRUE, then the packet will be transmitted in "          "encapsulated form, tagged with the associated VLAN tag. If "          "Tagged is FALSE, the packet will be trasmitted without any "          "VLAN tag.")]   boolean Tagged;};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?