diff --git a/netbox/templates/circuits/circuit.html b/netbox/templates/circuits/circuit.html
index 46f37c44f..5b9f8381f 100644
--- a/netbox/templates/circuits/circuit.html
+++ b/netbox/templates/circuits/circuit.html
@@ -131,6 +131,21 @@
{% endif %}
+
+ IP Addressing |
+
+ {% if circuit.interface %}
+ {% for ip in circuit.interface.ip_addresses.all %}
+ {% if not forloop.first %} {% endif %}
+ {{ ip }} ({{ ip.vrf|default:"Global" }})
+ {% empty %}
+ None
+ {% endfor %}
+ {% else %}
+ N/A
+ {% endif %}
+ |
+
Cross-Connect |
|