GuestIPSettings

The IPSettings structure specifies the IP settings for a virtual network adapter.


Properties

ipv4 Optional

Specification to configure IPv4 address, subnet mask and gateway info for this virtual network adapter. If unset, no IPv4 addresses are set.


ipv6 Optional

Specification to configure IPv6 address, subnet mask and gateway info for this virtual network adapter. If unset, no IPv6 addresses are set.


windows Optional

Windows settings to be configured for this specific virtual Network adapter. This is valid only for Windows guest operating systems. If unset, no specific Windows settings are set.

JSON Example

{
	"ipv4": {
		"gateways": [
			"string"
		],
		"ip_address": "string",
		"prefix": 0,
		"type": "DHCP"
	},
	"ipv6": {
		"gateways": [
			"string"
		],
		"ipv6": [
			{
				"ip_address": "string",
				"prefix": 0
			}
		],
		"type": "DHCP"
	},
	"windows": {
		"dns_domain": "string",
		"dns_servers": [
			"string"
		],
		"net_BIOS_mode": "USE_DHCP",
		"wins_servers": [
			"string"
		]
	}
}

Feedback

Was this page helpful?