{% 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
Name |
ID |
Status |
Compute |
Console |
{% for node in project.nodes.values() %}
{{node.name}} |
{{node.id}} |
{{node.status}} |
{{node.compute.id}} |
Console
|
{% endfor %}
Links
ID |
Data |
Capture |
PCAP |
{% for link in project.links.values() %}
{{link.id}} |
{% if link.debug_link_data|length == 2 %}
{{link.debug_link_data[0]}}
{{link.debug_link_data[1]}}
{% endif %}
|
{{link.capturing}} |
Download |
{% endfor %}
Drawings
ID |
Position |
Content |
{% for drawing in project.drawings.values() %}
{{drawing.id}} |
{{drawing.x}}, {{drawing.y}}, {{drawing.z}} |
{{drawing.svg}} |
{% endfor %}
Notifications
{%endblock%}