{% extends "layout.html" %} {% block head %} {% endblock %} {% block body %}

{{project.name}}

The purpose of this page is to help for GNS3 debug. This can be dropped in futur GNS3 versions.

Nodes

{% for node in project.nodes.values() %} {% endfor %}
Name ID Status Compute Console
{{node.name}} {{node.id}} {{node.status}} {{node.compute.id}} Console

Links

{% for link in project.links.values() %} {% endfor %}
ID Data Capture PCAP
{{link.id}} {% if link.debug_link_data|length == 2 %} {{link.debug_link_data[0]}}
{{link.debug_link_data[1]}} {% endif %}
{{link.capturing}} Download

Drawings

{% for drawing in project.drawings.values() %} {% endfor %}
ID Position Content
{{drawing.id}} {{drawing.x}}, {{drawing.y}}, {{drawing.z}} {{drawing.svg}}

Notifications

{%endblock%}