OBJECT

Network

Logical networks in Triton model core network configurations to enable Triton to define Virtual Network Interfaces and IP addresses for instances

link GraphQL Schema definition

  • type Network {
  • # Unique id for this network
  • id: ID
  • # The network name
  • name: String
  • # Whether this a public or private (rfc1918) network'
  • public: Boolean
  • # Whether this network is created on a fabric'
  • fabric: Boolean
  • # Description of this network
  • description: String
  • # A CIDR formatted string that describes the network'
  • subnet: String
  • # The first IP on the network that may be assigned'
  • provision_start_ip: String
  • # The last IP on the network that may be assigned'
  • provision_end_ip: String
  • # Optional Gateway IP address'
  • gateway: String
  • # Optional Resolver IP addresses'
  • resolvers: [String]
  • # Optional Static routes for hosts on this network'
  • routes: [KeyValue]
  • # Provision internet NAT zone on gateway address',
  • internet_nat: Boolean
  • # machines that are attached in this network
  • machines: [Machine]
  • }