cim_nexthopiproute.mof

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

MOF
44
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_NextHopIPRoute// ==================================================================   [UMLPackagePath ( "CIM::Network::Routes" ), Version ( "2.7.0" ),     Description (       "NextHopIPRoute specifies routing in an IP network.")]class CIM_NextHopIPRoute : CIM_NextHopRoute {      [Description (          "An enumerated integer indicating how the route was derived. "          "This is useful for display and query purposes."),        ValueMap { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",          "10", "11" },        Values { "Unknown", "Other", "Connected", "User-Defined",          "IGRP", "EIGRP", "RIP", "Hello", "EGP", "BGP", "ISIS",       "OSPF" },        ModelCorrespondence { "CIM_NextHopIPRoute.OtherDerivation" }]   uint16 RouteDerivation;      [Description (          "A string describing how the route was derived when the "          "RouteDerivation property is 1 (\"Other\")."),        ModelCorrespondence { "CIM_NextHopIPRoute.RouteDerivation" }]   string OtherDerivation;      [Description (          "The mask for the Ipv4 destination address.")]   string DestinationMask;      [Description (          "The prefix length for the IPv6 destination address.")]   uint8 PrefixLength;      [Description (          "An enumeration that describes the format of the address "          "properties."),        ValueMap { "0", "1", "2" },        Values { "Unknown", "IPv4", "IPv6" }]   uint16 AddressType;};

⌨️ 快捷键说明

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