{% extends 'generic/object.html' %} {% load render_table from django_tables2 %} {% load helpers %} {% load i18n %} {% block breadcrumbs %} {{ block.super }}
| {% trans "ACI Fabric" %} | {{ object.aci_fabric|linkify }} |
|---|---|
| {% trans "ACI Tenant" %} | {{ object.aci_tenant|linkify }} |
| {% trans "ACI VRF" %} | {{ object.aci_vrf|linkify }} |
| {% trans "Name Alias" %} | {{ object.name_alias|placeholder }} |
| {% trans "Description" %} | {{ object.description|placeholder }} |
| {% trans "NetBox Tenant" %} | {% if object.nb_tenant.group %} {{ object.nb_tenant.group|linkify }} / {% endif %} {{ object.nb_tenant|linkify|placeholder }} |
| {% trans "Unicast Routing enabled" %} | {% checkmark object.unicast_routing_enabled %} |
|---|---|
| {% trans "Advertise Host Routes enabled" %} | {% checkmark object.advertise_host_routes_enabled %} |
| {% trans "Endpoint Move Detection enabled" %} | {% checkmark object.ep_move_detection_enabled %} |
| {% trans "MAC Address" %} | {{ object.mac_address|placeholder }} |
| {% trans "Virtual MAC Address" %} | {{ object.virtual_mac_address|placeholder }} |
| {% trans "ARP Flooding enabled" %} | {% checkmark object.arp_flooding_enabled %} |
|---|---|
| {% trans "Unknown Unicast" %} | {% badge object.get_unknown_unicast_display bg_color=object.get_unknown_unicast_color %} |
| {% trans "Unknown IPv4 Multicast" %} | {% badge object.get_unknown_ipv4_multicast_display bg_color=object.get_unknown_ipv4_multicast_color %} |
| {% trans "Unknown IPv6 Multicast" %} | {% badge object.get_unknown_ipv6_multicast_display bg_color=object.get_unknown_ipv6_multicast_color %} |
| {% trans "Multi Destination Flooding" %} | {% badge object.get_multi_destination_flooding_display bg_color=object.get_multi_destination_flooding_color %} |
| {% trans "IP Data Plane Learning enabled" %} | {% checkmark object.ip_data_plane_learning_enabled %} |
|---|---|
| {% trans "Limit IP Learn to Subnet enabled" %} | {% checkmark object.limit_ip_learn_enabled %} |
| {% trans "Clear Remote MAC Entries enabled" %} | {% checkmark object.clear_remote_mac_enabled %} |
| {% trans "PIM (Multicast) IPv4" %} | {% checkmark object.pim_ipv4_enabled %} |
|---|---|
| {% trans "PIM (Multicast) IPv6" %} | {% checkmark object.pim_ipv6_enabled %} |
| {% trans "IGMP Interface Policy" %} | {{ object.igmp_interface_policy_name|placeholder }} |
| {% trans "IGMP Snooping Policy" %} | {{ object.igmp_snooping_policy_name|placeholder }} |
| {% trans "PIM IPv4 Source Filter" %} | {{ object.pim_ipv4_source_filter|placeholder }} |
| {% trans "PIM IPv4 Destination Filter" %} | {{ object.pim_ipv4_destination_filter|placeholder }} |
| {% trans "DHCP Labels" %} | {{ object.dhcp_labels|join:", "|placeholder }} |
|---|