mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-02-09 14:30:15 +01:00
27 lines
922 B
Plaintext
27 lines
922 B
Plaintext
|
##### Passive checks related
|
||
|
|
||
|
### Option: Server
|
||
|
# List of comma delimited IP addresses, optionally in CIDR notation, or DNS names of Zabbix servers and Zabbix proxies.
|
||
|
# Incoming connections will be accepted only from the hosts listed here.
|
||
|
# If IPv6 support is enabled then '127.0.0.1', '::127.0.0.1', '::ffff:127.0.0.1' are treated equally
|
||
|
# and '::/0' will allow any IPv4 or IPv6 address.
|
||
|
# '0.0.0.0/0' can be used to allow any IPv4 address.
|
||
|
# Example: Server=127.0.0.1,192.168.1.0/24,::1,2001:db8::/32,zabbix.example.com
|
||
|
#
|
||
|
# Mandatory: yes, if StartAgents is not explicitly set to 0
|
||
|
# Default:
|
||
|
# Server=
|
||
|
|
||
|
Server=${ZBX_PASSIVESERVERS}
|
||
|
|
||
|
### Option: StartAgents
|
||
|
# Number of pre-forked instances of zabbix_agentd that process passive checks.
|
||
|
# If set to 0, disables passive checks and the agent will not listen on any TCP port.
|
||
|
#
|
||
|
# Mandatory: no
|
||
|
# Range: 0-100
|
||
|
# Default:
|
||
|
# StartAgents=10
|
||
|
|
||
|
StartAgents=${ZBX_STARTAGENTS}
|