2016-03-15 12:32:10 +02:00
|
|
|
{% extends "layout.html" %}
|
2016-03-17 18:32:37 +02:00
|
|
|
|
|
|
|
{% block head %}
|
|
|
|
<script>
|
|
|
|
var socket = new WebSocket("ws://" + location.host + "/v2/projects/{{project.id}}/notifications/ws");
|
|
|
|
socket.onopen = function (event) {
|
|
|
|
document.getElementById("notifications").innerText = "Connected";
|
|
|
|
};
|
|
|
|
|
|
|
|
socket.onmessage = function (event) {
|
|
|
|
document.getElementById("notifications").innerText = event.data + "\n" + document.getElementById("notifications").innerText;
|
|
|
|
};
|
|
|
|
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
2016-03-15 12:32:10 +02:00
|
|
|
{% block body %}
|
|
|
|
<h1>
|
|
|
|
{{project.name}}
|
|
|
|
</h1>
|
|
|
|
The purpose of this page is to help for GNS3 debug. This can be dropped
|
|
|
|
in futur GNS3 versions.
|
|
|
|
|
2016-05-11 20:35:36 +03:00
|
|
|
<h2>Nodes</h2>
|
2016-03-15 12:32:10 +02:00
|
|
|
<table border="1">
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>ID</td>
|
2016-04-21 17:18:15 +03:00
|
|
|
<th>Compute</th>
|
2016-03-15 12:32:10 +02:00
|
|
|
<th>Console</th>
|
|
|
|
</tr>
|
2016-05-11 20:35:36 +03:00
|
|
|
{% for node in project.nodes.values() %}
|
2016-03-15 12:32:10 +02:00
|
|
|
<tr>
|
2016-05-11 20:35:36 +03:00
|
|
|
<td>{{node.name}}</td>
|
|
|
|
<td>{{node.id}}</td>
|
|
|
|
<td>{{node.compute.id}}</td>
|
|
|
|
<td><a href="{{node.console_type}}://{{node.host}}:{{node.console}}">Console</a>
|
2016-03-15 12:32:10 +02:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h2>Links</h2>
|
|
|
|
<table border="1">
|
|
|
|
<tr>
|
|
|
|
<th>ID</td>
|
2016-04-21 17:11:42 +03:00
|
|
|
<th>Capture</td>
|
2016-04-22 17:22:03 +03:00
|
|
|
<th>PCAP</td>
|
2016-03-15 12:32:10 +02:00
|
|
|
</tr>
|
|
|
|
{% for link in project.links.values() %}
|
|
|
|
<tr>
|
2016-04-21 17:11:42 +03:00
|
|
|
<td>{{link.id}}</td>
|
|
|
|
<td>{{link.capturing}}</td>
|
2016-04-22 17:22:03 +03:00
|
|
|
<td><a href="/v2/projects/{{project.id}}/links/{{link.id}}/pcap">Download</a></td>
|
2016-03-15 12:32:10 +02:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
2016-03-17 18:32:37 +02:00
|
|
|
<h2>Notifications</h2>
|
|
|
|
<div id="notifications">
|
|
|
|
</div>
|
2016-03-15 12:32:10 +02:00
|
|
|
{%endblock%}
|
|
|
|
|