OBJECT

Config

Configuration settings

link GraphQL Schema definition

  • type Config {
  • CharacteristicsInterval: Duration
  • ManagementInterface: IPConf
  • # Answer PING requests
  • PingEnabled: Boolean
  • NameQueryInterval: Duration
  • PortScanEnabled: Boolean
  • RunStatusInterval: Duration
  • SnapshotInterval: Duration
  • CaptureEnabled: Boolean
  • # Monitor own traffic (self sniff)
  • SelfSniffEnabled: Boolean
  • # Auto approve sensors
  • SensorsAutoApprove: Boolean
  • # Auto approve ICPs on the EM
  • EmIcpAutoApprove: Boolean
  • # Nessus user scans are available
  • NessusUserScansAvailable: Boolean
  • # Private networks. Conversations (L2 or L3) in those subnets will create assets.
  • # Returns an array of CIDRs
  • #
  • # Arguments
  • # after: Returns the items in the list that come after the
  • # specified cursor.
  • # first: Returns the first n items from the list.
  • # before: Returns the items in the list that come before the
  • # specified cursor.
  • # last: Returns the last n items from the list.
  • privateNetworks(after: String, first: Int, before: String, last: Int): StringConnection!
  • # Lists of Hosts (urls) to serve and allow login for the UI. Host can be IPv4,
  • # IPv6, FQDN, ip:port. An empty list will imply access via the configured Network
  • # interfaces only.
  • #
  • # Arguments
  • # after: Returns the items in the list that come after the
  • # specified cursor.
  • # first: Returns the first n items from the list.
  • # before: Returns the items in the list that come before the
  • # specified cursor.
  • # last: Returns the last n items from the list.
  • UIHosts(after: String, first: Int, before: String, last: Int): StringConnection!
  • # Client side auto logout in seconds
  • AutoLogoutDurationInSeconds: Int
  • # Enable classification banner in the UI
  • EnableClassificationBanner: Boolean
  • # Text to display in classification banner
  • UiClassificationBannerText: String
  • # The color of the classification banner
  • UiClassificationBannerColor: ClassificationBannerColor
  • }