{% extends "admin/base_site.html" %}
  • {% block title %}Requested string - {{ block.super }}{% endblock %} {% block content %} {{form.media}}

    MAC/IPv6/IPv4 addresses utilization and correlation

    {{form.search_string.label }}{{form.search_string }} {{form.search_string.help_text }}
    Searching period {{form.from_date.label }} {{form.from_date }}
    {{form.from_date.help_text }}
    {{form.end_date.label }} {{form.end_date }}
    {{form.end_date.help_text }}

    The correlation function extracts entries containing the searched string from the IPv4 Watch ARP, IPv6 NS and Radius Acc applications. It is based on the following fields:

    • IPv4 Watch ARP: Mac src, IP src, Hostname
    • IPv6 NS: Mac src, IPv6 src, ICMPv6ND NS tgt
    • Radius Acc: UserName, CallingStationId, FramedIPAddress
    {% if form.from_date.value > form.end_date.value %} {% endif %}
    {% if latest_poll_list %}
    {% regroup latest_poll_list|dictsortreversed:"LastSeen" by LastSeen as latest_poll_list_ordered %} {% for poll1 in latest_poll_list_ordered %} {% for poll in poll1.list %} {% endfor %} {% endfor %}
    Last Seen Creation Date MAC Source VLAN IP Source IPv6 Dest ICMPv6ND NS target Username Hostname NAS IP Address NAS Port Id Counter
    {{ poll.LastSeen }} {{ poll.CreationDate }} {{ poll.MACSource }} {{ poll.VLAN }} {{ poll.IPSource }} {{ poll.IPv6Dest }} {{ poll.ICMPv6NDNStarget }} {{ poll.Username }} {{ poll.Hostname }} {{ poll.NASIPAddress }} {{ poll.NASPortId }} {{ poll.Counter }}
    {% endif %}
    {% endblock %}