Monitoring Windows Memory

Hi,

zones.conf is included in icinga2.conf which is the config file read by the icinga2 service on startup, as such this should be read. You can also verify this by doing a more verbose config validation to see which files are actually parsed: icinga2.exe daemon -C -x notice.

To me, it seems that you’ve emptied the zones.conf and just added the global zone in there. The configuration generated by the setup wizard must stay intact in order to trust the parent node on connections.

object Endpoint "FGARCIAD-PORT.axpenet.local" {
}
object Zone "FGARCIAD-PORT.axpenet.local" {
  endpoints = [ "FGARCIAD-PORT.axpenet.local" ]
  parent = "master"
}

object Endpoint "FQDN of the master" {
  host = "IP address of the master"
}

object Zone "master" {
  endpoints = [ "FQDN of the master" ]
}

object Zone "global-templates" {
  global = true
}

Cheers,
Michael

PS; Please look into code block formatting to make your posts more readabile: Create topics and master Markdown formatting

1 Like