added watchdog option
This commit is contained in:
parent
3dbc14a726
commit
abcf906d8c
|
|
@ -10,6 +10,7 @@ init_scripts_dir: /etc/init.d
|
||||||
clients_log_file_path: '{{ stcp_instance_dir }}/logc'
|
clients_log_file_path: '{{ stcp_instance_dir }}/logc'
|
||||||
users_file_path: '{{ stcp_instance_dir }}/users.ini'
|
users_file_path: '{{ stcp_instance_dir }}/users.ini'
|
||||||
internal_links_name: stcp_
|
internal_links_name: stcp_
|
||||||
|
server_arch: x86
|
||||||
|
|
||||||
# default stcp conf settings
|
# default stcp conf settings
|
||||||
stcp_mtu_size: 1500
|
stcp_mtu_size: 1500
|
||||||
|
|
@ -22,4 +23,5 @@ min_sessions_threshold: 4
|
||||||
flush_sort_delay_max: 600000
|
flush_sort_delay_max: 600000
|
||||||
flush_sort_delay_min: 200000
|
flush_sort_delay_min: 200000
|
||||||
flush_sort_add_time: 100000
|
flush_sort_add_time: 100000
|
||||||
split_tcp_sessions: 2
|
split_tcp_sessions: 2
|
||||||
|
watchdog_timer: 180
|
||||||
|
|
@ -55,6 +55,9 @@ print_info 1
|
||||||
{% if stcp_mtu_size is defined %}
|
{% if stcp_mtu_size is defined %}
|
||||||
INTERFACE_MTU {{ stcp_mtu_size }}
|
INTERFACE_MTU {{ stcp_mtu_size }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if watchdog_timer is defined %}
|
||||||
|
WATCHDOG_TIMER {{ watchdog_timer }}
|
||||||
|
{% endif %}
|
||||||
{% if use_auth == true %}
|
{% if use_auth == true %}
|
||||||
users {{ users_file_path }}
|
users {{ users_file_path }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue