(file) Return to CIM_VirtualEthernetSwitchSettingData.mof CVS log (file) (dir) Up to [OMI] / omi / share / networkschema

 1 krisbash 1.1 // Copyright (c) 2011 DMTF.  All rights reserved.
 2                 [Version ( "2.29.0" ), 
 3                  UMLPackagePath ( "CIM::Core::Virtualization" ), 
 4                  Description ( 
 5                     "CIM_VirtualEthernetSwitchSettingData specializes "
 6                     "CIM_VirtualSystemSettingDatato add the specific properties "
 7                     "required to define a virtual Ethernet bridge." )]
 8              class CIM_VirtualEthernetSwitchSettingData : CIM_VirtualSystemSettingData {
 9              
10                    [Description ( 
11                        "A list of VLANs identified by these VIDs that this "
12                        "bridge can access" )]
13                 string VLANConnection[];
14              
15                    [Description ( 
16                        "A list of host resource pools to be associated or that "
17                        "are currently associated with the Ethernet bridge for "
18                        "the purpose of the allocation of Ethernet connections "
19                        "between a virtual system and an Ethernet bridge Each "
20                        "non-Null value of the AssoicatedResourcePool property "
21                        "shall conform to the production "
22 krisbash 1.1           "WBEM_URI_UntypedInstancePath as defined in DSP0207" )]
23                 string AssociatedResourcePool[];
24              
25                    [Description ( 
26                        "This property specifies the number of unique MAC "
27                        "addresses that can be learned by the bridge to support "
28                        "MAC Address Learning, as defined in the IEEE 802.1D "
29                        "standard or in a VLAN-aware bridge this property "
30                        "specifies the number of MAC,VID pairs learned by the "
31                        "bridge to support learning as definded in the IEEE "
32                        "802.1Q standard." )]
33                 uint32 MaxNumMACAddress;
34              
35                    [Description ( 
36                        "Describes the Ethernet virtual bridge mode that this "
37                        "bridge is operating in. The value 2(VEB) indicates that "
38                        "the associated port on the adjacent bridge is not "
39                        "configured for Reflective Relay and 3 (VEPA) indicates "
40                        "that the associated port on the adjacent bridge is "
41                        "configured for Reflective Relay as defined in IEEE "
42                        "802.1Qbg. The value 4 (Direct) indicates that a bridge "
43 krisbash 1.1           "is directly connected to or is part of a hardware "
44                        "Ethernet NIC." ), 
45                     ValueMap { "0", "1", "2", "3", "4", "..", "0x8000..0xFFFF" }, 
46                     Values { "Unknown", "Other", "VEB", "VEPA", "Direct", 
47                        "DMTF Reserved", "Vendor Reserved" }, 
48                     ModelCorrespondence { 
49                        "CIM_VirtualEthernetSwitchSettingData.OtherEVBMode" }]
50                 uint16 EVBMode;
51              
52                    [Description ( 
53                        "A string that shall describe the EVBMode when a well "
54                        "defined value is not available and EVBMode matches 1 "
55                        "(Other). This property should be set to null when the "
56                        "EVBMode is set to any other value than 1." ), 
57                     ModelCorrespondence { 
58                        "CIM_VirtualEthernetSwitchSettingData.EVBMode" }]
59                 string OtherEVBMode;
60              
61              
62              };

ViewCVS 0.9.2