Hello,
I try to configure my first satellite but it’s not working when I follow the documentation, I probably do something wrong…
I have two master node (master A and master B)
Here the zone.conf of one of them :
object Endpoint "masterA.fqdn" {
}
object Endpoint "masterB.fqdn" {
}
object Endpoint "satellite.fqdn" {
}
object Zone "master" {
endpoints = [ "masterA.fqdn", "masterB.fqdn" ]
}
object Zone "satellite-service" {
endpoints = [ "satellite.fqdn" ]
parent = "master"
}
object Zone "global-templates" {
global = true
}
object Zone "director-global" {
global = true
}
Now the zone.conf of the satellite
object Endpoint "masterA.fqdn" {
host = "masterA.fqdn"
port = "5665"
}
object Endpoint "masterB.fqdn" {
host = "masterB.fqdn"
port = "5665"
}
object Zone "master" {
endpoints = [ "masterA.fqdn", "masterB.fqdn" ]
}
object Endpoint "satellite.fqdn" {
}
object Zone "satellite.fqdn" {
endpoints = [ "satellite.fqdn" ]
parent = "master"
}
object Zone "satellite-service" {
parent = "master"
}
object Zone "global-templates" {
global = true
}
object Zone "director-global" {
global = true
}
the zone.conf of a host :
object Endpoint "satellite.fqdn" {
host = "satellite.fqdn"
port = "5665"
}
object Zone "satellite-service" {
endpoints = [ "satellite.fqdn" ]
}
object Endpoint "host.fqdn" {
}
object Zone "host.fqdn" {
endpoints = [ "host.fqdn" ]
parent = "satellite-service"
}
object Zone "global-templates" {
global = true
}
object Zone "director-global" {
global = true
}
And finaly the director setting for one host
What is wrong with my configuration ?
How can see easyly wich endpoint si doing the check ?
Thanks