40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
// Copyright (c) 2007-2010, Intel Corporation. All rights reserved.
|
|
[Version ( "7.0.0" ),
|
|
Description (
|
|
"The IPS_HostIpSettings class represents "
|
|
"the IP settings of the host computer."
|
|
"It will use to synchronize IP between "
|
|
"host and ME if needed." )]
|
|
class IPS_HostIPSettings : CIM_SettingData {
|
|
|
|
|
|
[Description ( "Indicates whether DHCP is in use." )]
|
|
boolean DHCPEnabled;
|
|
|
|
[Description (
|
|
"String representation of IP address. Represents "
|
|
"static IP of host." )]
|
|
string IpAddress;
|
|
|
|
[Description (
|
|
"Subnet mask in a string format.For example: 255.255.0.0."
|
|
"Represents mask of host IP." )]
|
|
string SubnetMask;
|
|
|
|
[Description (
|
|
"Default Gateway in a string format. For example: 10.12.232.1"
|
|
"Represents Default Gateway of host IP.")]
|
|
string DefaultGateway;
|
|
|
|
[Description (
|
|
"Primary DNS in a string format. For example: 10.12.232.1."
|
|
"Represents Primary DNS of host IP." )]
|
|
string PrimaryDNS;
|
|
|
|
[Description (
|
|
"Secondary DNS in a string format. For example: 10.12.232.1."
|
|
"Represents Secondary DNS of host IP." )]
|
|
string SecondaryDNS;
|
|
|
|
};
|