{% extends 'base.html' %} {% load i18n sizeformat breadcrumb_nav %} {% block title %}{% trans "LLDP Neighbor Detail"%}{% endblock %} {% block main %}

{% trans "LLDP Neighbor Overview" %}

{% trans "Local Port Name" %}
{{ localportname }}
{% trans "Neighbor Identifier" %}
{{ neighbour.port_identifier }}
{% if neighbour.chassis_id %}
{% trans "Chassis" %}
{{ neighbour.chassis_id }}
{% endif %} {% if neighbour.port_description %}
{% trans "Description" %}
{{ neighbour.port_description }}
{% endif %} {% if neighbour.ttl %}
{% trans "Time To Live (Rx):" %}
{{ neighbour.ttl }}
{% endif %} {% if neighbour.msap %}
{% trans "MAC Service Access Point" %}
{{ neighbour.msap }}
{% endif %} {% if neighbour.system_name %}
{% trans "System Name" %}
{{ neighbour.system_name }}
{% endif %} {% if neighbour.system_description %}
{% trans "System Description" %}
{{ neighbour.system_description }}
{% endif %} {% if systemcaps %}
{% trans "System Capabilities" %}
{{ systemcaps|linebreaksbr }}
{% endif %} {% if neighbour.management_address %}
{% trans "Management Address" %}
{{ neighbour.management_address }}
{% endif %}
{% if dot1lag %}
{% trans "Dot1 Link Aggregation" %}
{{ dot1lag|linebreaksbr }}
{% endif %} {% if neighbour.dot_port_vid %}
{% trans "Dot1 Port VID" %}
{{ neighbour.dot1_port_vid }}
{% endif %} {% if dot1provids %}
{% trans "Dot1 Protocol VIDs" %}
{{ dot1provids|linebreaksbr }}
{% endif %} {% if vlannames %}
{% trans "Dot1 VLANs" %}
{{ vlannames|linebreaksbr }}
{% endif %} {% if dot1protoids %}
{% trans "Dot1 Protocol IDs" %}
{{ dot1protoids|linebreaksbr }}
{% endif %} {% if neighbour.dot1_vid_digest %}
{% trans "Dot1 VID Digest" %}
{{ neighbour.dot1_vid_digest }}
{% endif %} {% if neighbour.dot1_management_vid %}
{% trans "Dot1 Management VID" %}
{{ neighbour.dot1_management_vid }}
{% endif %}
{% if dot3macstatus %}
{% trans "Dot3 MAC Status" %}
{{ dot3macstatus|linebreaksbr }}
{% endif %} {% if dot3powermdi %}
{% trans "Dot3 Power MDI" %}
{{ dot3powermdi|linebreaksbr }}
{% endif %} {% if neighbour.dot3_max_frame %}
{% trans "Dot3 Max Frame Size" %}
{{ neighbour.dot3_max_frame }}
{% endif %}
{% endblock %}