Hi everyone
I have a little problem with satellites checks
I’m running a ping and it seems it is working properly, I triedo to disconnect the pinged machine and it works, the only problem is that the host is showed as UP but the service is in pending state, that’s strange, the ping is working properly
My network is the following:
- Network A → Master
-Network B → Satellite and other devices i want to ping ( also switches and routers so i can’t install agents in every device, niccolo.blueday.it in this case )
Master can not reach devices into network B
The objective is having satellites that performs checkes and give results to the master
Here are my configurations:
zones.conf master:
object Endpoint "monitor-master" {
}
object Endpoint "satellite-bd.blueday.it"{
host = "195.39.202.134"
log_duration = 0
}
object Zone "master" {
endpoints = [ "monitor-master" ]
}
object Zone "satellite-bd"{
parent = "master"
endpoints = [ "satellite-bd.blueday.it" ]
}
object Zone "global-templates" {
global = true
}
object Zone "director-global" {
global = true
}
zones.conf satellite-bd:
object Endpoint "monitor-master" {
}
object Zone "master" {
endpoints = [ "monitor-master" ]
}
object Endpoint "satellite-bd.blueday.it" {
}
object Zone "satellite-bd" {
endpoints = [ "satellite-bd.blueday.it" ]
parent = "master"
}
object Zone "global-templates" {
global = true
}
object Zone "director-global" {
global = true
}
then i created in the master two directories: one named master and one named satellite-bd
inside master i created a file named hosts.conf that contains:
object Host "satellite-bd.blueday.it" {
check_command = "hostalive"
address = "195.39.202.134"
}
Just to check that the satellite is reachable
inside satellite-bd i created a file named satellite-bd.conf that contains:
object Host "niccolo-bd.blueday.it" {
import "generic-host"
address = "192.168.0.69"
}
Here i where I perform my checkes on the devices.
I see the host is up but the service is stucked in pending
If someone could help me i would be very grateful
Best regards, Niccolò