{% extends "network/base.html" %} {% block title %}Auto-Discovery — Network Canvas{% endblock %} {% block content %}
SNMP
{{ 'Available' if has_pysnmp else 'Not Installed' }}
SSH (Netmiko)
{{ 'Available' if has_netmiko else 'Not Installed' }}
Ping Sweep
Available
Scans
{{ scans|length }}

Scan History

{% for s in scans %} {% endfor %} {% if not scans %} {% endif %}
Name Method Status Devices Nodes Edges Date Actions
{{ s.name }} {{ s.method|upper }} {% if s.status == 'completed' %} Completed {% elif s.status == 'running' %} Running {% elif s.status == 'failed' %} Failed {% else %} {{ s.status }} {% endif %} {{ s.created_at[:16] if s.created_at else '' }}
No scans yet. Click "+ New Scan" to discover your network.
{% endblock %}