{% extends "base.html" %} {% block title %}Tools - MCP Network Diagnostics{% endblock %} {% block content %}

Run tools

Run any diagnostic tool below. Use the form when a tool needs input (e.g. destination or device ID). Output appears under each button.

Tip: Run Check my connection first; when your connection is good, run Record baseline. Later, Compare to baseline helps spot when something changes.

{% for cat in categories %}

{{ cat.label }}

{% for tool in cat.tools %}
{{ tool.label }}

{{ tool.description }}

{% for param in tool.params %}
{% endfor %}
Output will appear here.
{% endfor %}
{% endfor %}
{% endblock %}