blob: b54861a7005f78632bd71467d3e258d6ff1b6546 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# comments are prefixed with #
# global options. Those can bi overidden in the host definition
interval 30
retry 5
required 3
timeout 1.0
# interface definitions
interface eth1 {
# define a route table to use. If unset it will be picked auto.
# Setting this to 0 means do not manage routes for this interface
# route-table 1
}
interface dummy0 {
}
# host to ping
host 10.65.0.1 {
label ISP1
bind-interface eth1
}
host 192.168.1.5 {
label Dummy Local
bind-interface dummy0
}
|