NetworkingInterfacesInterfaceInfo

Interfaces.InterfaceInfo structure Structure that defines properties and status of a network interface.


Properties

string
mac Required

MAC address. For example 00:0C:29:94:BB:5A.


string
name Required

Interface name, for example, “nic0”, “nic1”.


status Required

Interfaces.InterfaceStatus enumerated type Defines interface status
down : The interface is down.
up : The interface is up.

Possible values are: downup


ipv4 Optional

IPv4 Address information. ipv4 This field will be unset if IPv4 is not enabled.


ipv6 Optional

IPv6 Address information. ipv6 This field will be unset if IPv6 is not enabled.

JSON Example

{
	"mac": "string",
	"name": "string",
	"status": "down"
}

Feedback

Was this page helpful?