{% extends "base.html" %} {% block title %}IP Locator - Network Management{% endblock %} {% block content %}
{% if error %}
{{ error }}
{% endif %} {% if result %}

Routing Table Entries {{ result.route_entries|length }}

{% if result.route_entries %}
{% for route in result.route_entries %} {% endfor %}
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 %}
{% else %}

No matching routes found

{% endif %}
{% endif %} {% if not result and not error and not ip_address %}

Enter an IP Address

Search routing tables to find where an IP is advertised across your network.

{% endif %} {% endblock %}