{% extends "base.html" %} {% block title %}IP Locator - Network Management{% endblock %} {% block content %}
Find where an IP is advertised in the routing tables
| Device | Prefix | Next Hop | Protocol | Interface |
|---|---|---|---|---|
| {% if route.device_id %} {{ route.device_name }} {% else %} {{ route.device_name }} {% endif %} | {{ route.prefix }} |
{% if route.next_hop == 'directly connected' %}
directly connected
{% else %}
{{ route.next_hop }}
{% endif %}
|
{{ route.protocol }} |
{% if route.interface %}
{{ route.interface }}
{% else %}
-
{% endif %}
|
No matching routes found
Search routing tables to find where an IP is advertised across your network.