“no Endpoint object found for identity”

Hi.

Additionally, an example.
Important: global zones have been omitted for better readability

In the following example:
The zone of the master is: master
the zone of the satellite is: satellite-zone (yes, I’m creative :wink: )

Parts of zones.conf from master, satellite and agent
####################################################
# [master-zone] <-> [satellite-zone] <-> [agent-in-satellite-zone]  #
####################################################

######################
# The Icinga2-Master
######################

object Endpoint "name.of.master"  {
}

object Zone "master"  {
  endpoints = [ "name.of.master", ]
}

object Endpoint "your.satellite.host" {
        host = "your.satellite.host"
}

object Zone "satellite-zone" {
        endpoints = [ "your.satellite.host" ]
        parent = "master"
}

# ---------------------------------

######################
# The satellite
######################

object Endpoint "name.of.master" {
        host = "name.of.master"
        port = "5665"
}

object Zone "master" {
        endpoints = [ "name.of.master" ]
}

object Endpoint "your.satellite.host" {
}

object Zone "satellite-zone" {
        endpoints = [ "your.satellite.host" ]
        parent = "master"
}

# ---------------------------------

# An agent in the "satellite-zone"
# Note: The agent knows nothing about the master-host or the master zone
# and both are not part of the zones.conf

object Endpoint "your.satellite.host" {
        host = "your.satellite.host";
        port = "5665";
}

object Zone "satellite-zone" {
        endpoints = [ "your.satellite.host" ]
}

object Endpoint "<Name>" {
}

object Zone "<Name>" {
        endpoints = [ "<Name>" ]
        parent = "satellite-zone"
}

Hope this helps.

Greetings