{% extends "generic/object.html" %} {% load render_table from django_tables2 %} {% comment %} __author__ = "Andrea Dainese" __contact__ = "andrea@adainese.it" __copyright__ = "Copyright 2022, Andrea Dainese" __license__ = "GPLv3" {% endcomment %} {% block controls %} {% endblock controls %} {% block tabs %} {% endblock tabs %} {% block content %}
MAC address table entry
Device {{ object.interface.device.name }}
Device role {{ object.interface.device.device_role.name }}
Interface {{ object.interface.name }}
IP Address {{ object.ip_address }}
MAC Address {{ object.mac_address }} {% if object.vendor %}({{ object.vendor }}){% endif %}
{% include "inc/panels/custom_fields.html" %}
{% include "inc/panels/tags.html" %} {% include "inc/panels/comments.html" %}
Relevant ARP address table entries
{% render_table arp_table %}
Relevant MAC address table entries
{% render_table macaddress_table %}
{% endblock content %}