OBJECT

NIC

Logical networks are used both on head nodes and compute nodes, and are associated with physical interfaces by using a system called NIC Tags

link GraphQL Schema definition

  • type NIC {
  • # NIC's IPv4 address
  • ip: String
  • # NIC's MAC address
  • mac: String
  • # Whether this is the instance's primary NIC
  • primary: Boolean
  • # IPv4 netmask
  • netmask: String
  • # IPv4 gateway
  • gateway: String
  • # Describes the state of the NIC (e.g. provisioning, running, or stopped)
  • state: NicState
  • # The NIC's network id
  • network: Network
  • }