{% extends template_extends|default:'generic/object.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load perms %} {% load static %} {% load plugins %} {% load render_table from django_tables2 %} {% block content %}
Zabbix Proxy
{% if object.operating_mode == ZabbixProxyTypeChoices.ACTIVE %} {% endif %} {% if object.operating_mode == ZabbixProxyTypeChoices.PASSIVE %} {% endif %}
Name {{ object.name }}
Proxy Group {{ object.proxygroup|linkify }}
Operating mode {{ object.get_operating_mode_display }}
Server {{ object.zabbixserver|linkify }}
Local Address {{ object.local_address }}
Local Port {{ object.local_port }}
Allowed Address
    {% for address in object.allowed_addresses %}
  • {{ address }}
  • {% endfor %}
Address {{ object.address }}
Port {{ object.port }}
{% plugin_left_page object %} {% include 'inc/panels/tags.html' %}
Encryption
{% if object.operating_mode == ZabbixProxyTypeChoices.ACTIVE %} {% endif %} {% if object.operating_mode == ZabbixProxyTypeChoices.PASSIVE %} {% endif %} {% if ZabbixTLSChoices.PSK in object.tls_accept or object.tls_connect == ZabbixTLSChoices.PSK %} {% endif %} {% if ZabbixTLSChoices.CERT in object.tls_accept or object.tls_connect == ZabbixTLSChoices.CERT %} {% endif %}
Connections from proxy {{ object.get_tls_accept_display|join:", " }}
Connections to proxy {{ object.get_tls_connect_display }}
PSK Identity {{ object.tls_psk_identity }}
Certificate Issuer {{ object.tls_issuer }}
Certificate Subject {{ object.tls_subject }}
{% if object.custom_timeouts == 1 %}
Custom Timeouts
Zabbix agent {{ object.timeout_zabbix_agent }}
Simple check {{ object.timeout_simple_check }}
SNMP agent {{ object.timeout_snmp_agent }}
External check {{ object.timeout_external_check }}
Database monitor {{ object.timeout_db_monitor }}
HTTP agent {{ object.timeout_http_agent }}
SSH agent {{ object.timeout_ssh_agent }}
TELNET agent {{ object.timeout_telnet_agent }}
Script {{ object.timeout_script }}
Browser {{ object.timeout_browser }}
{% endif %} {% plugin_right_page object %}
{% endblock %}