Skip to content
Snippets Groups Projects
Commit ec966a59 authored by jabertwo's avatar jabertwo
Browse files

wz uplinks as services on wz-router

parent b863e7be
No related branches found
No related tags found
No related merge requests found
......@@ -81,27 +81,3 @@ object Host "homematic-ccu2" {
groups = [ "network" ]
}
object Host "wz-uplink-globe" {
import "generic-host"
address = "212.124.34.242"
groups = [ "network" ]
}
object Host "wz-uplink-webdiscount-1" {
import "generic-host"
address = "212.3.65.45"
groups = [ "network" ]
}
object Host "wz-uplink-webdiscount-2" {
import "generic-host"
address = "212.3.80.222"
groups = [ "network" ]
}
......@@ -9,4 +9,47 @@ apply Service "warpfire-admin" {
vars.http_port = 80
assign where host.name == "warpfire"
}
\ No newline at end of file
}
apply Service "wz-uplink-globe" {
import "generic-service"
check_command = "ping4"
vars.ping_address = "212.124.34.242"
vars.ping_wrta = "100"
vars.ping_crta = "300"
vars.ping_wpl = "20"
vars.ping_cpl = "50"
assign where host.name == "wz-router"
}
apply Service "wz-uplink-webdiscount-1" {
import "generic-service"
check_command = "ping4"
vars.ping_address = "212.3.64.45"
vars.ping_wrta = "100"
vars.ping_crta = "300"
vars.ping_wpl = "20"
vars.ping_cpl = "50"
assign where host.name == "wz-router"
}
apply Service "wz-uplink-webdiscount-2" {
import "generic-service"
vars.ping_address = "212.3.80.222"
vars.ping_wrta = "100"
vars.ping_crta = "300"
vars.ping_wpl= "20"
vars.ping_cpl = "50"
assign where host.name == "wz-router"
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment