VmGuestNetworkingInterfacesInfo

The Interfaces.Info structure describes a virtual network adapter configured in the guest operating system.


Properties

dns Optional

DNS configuration of the adapter. See Networking.Info.dns for system wide settings. If unset then not assigned by the Guest OS.


dns_values Optional

Client DNS values. Data assigned by DNS. If unset no DNS assigned value exists.


ip Optional

IP configuration settings of the adapter If unset then not supported by the Guest OS.


string
mac_address Optional

MAC address of the adapter. If unset then not supported by the Guest OS.


string
nic Optional

Link to the corresponding virtual device. If unset then the interface is not backed by a virtual device. When clients pass a value of this structure as a parameter, the field must be an identifier for the resource type: com.vmware.vcenter.vm.hardware.Ethernet. When operations return a value of this structure as a result, the field will be an identifier for the resource type: com.vmware.vcenter.vm.hardware.Ethernet.


array of string
wins_servers Optional

The IP addresses of any WINS name servers for the adapter. If unset then not supported by the Guest OS.

JSON Example

{
	"dns": {
		"ip_addresses": [
			"string"
		],
		"search_domains": [
			"string"
		]
	},
	"dns_values": {
		"domain_name": "string",
		"host_name": "string"
	},
	"ip": {
		"dhcp": {
			"ipv4_enabled": false,
			"ipv6_enabled": false
		},
		"ip_addresses": [
			{
				"ip_address": "string",
				"origin": "OTHER",
				"prefix_length": 0,
				"state": "PREFERRED"
			}
		]
	},
	"mac_address": "string",
	"nic": "string",
	"wins_servers": [
		"string"
	]
}

Feedback

Was this page helpful?