Hi list,
I am trying to configure different interval and timeout values in
relayd.conf.
But relayd ignores the table interval and timeout options.
Here is my relayd.conf
host1="10.0.0.1"
host2="10.0.0.2"
host_ext="192.168.0.1"
interval 5
timeout 3000
table <host_table> { $host1 $host2 }
relay smtp_relay {
listen on $host_ext port smtp
forward to <host_table> port smtp interval 15 timeout 14000
check script "/tmp/chk_test.sh"
}
With this configuration I would expect that the script /tmp/chk_test.sh
is started every 15 seconds and killed after 14 seconds if needed.
But relayd starts the script every 5 seconds and kills it after 3 seconds.
What's wrong with my configuration?
Thanks in advance,
Frank