Terug

Device Info

Type
Model<%= device.model || '-' %>
Manufacturer<%= device.manufacturer || '-' %>
IP Adres<%= device.ip_address || '-' %>
Mgmt IP<%= device.mgmt_ip || '-' %>
Poorten<%= device.ports_count %>
OS<%= device.os_version || '-' %>
Status<%= device.status %>

Connecties (<%= connections.length %>)

<% if (connections.length === 0) { %>

Geen connecties

<% } else { %>
<% connections.forEach(function(c) { %>
<%= c.name || 'Connectie' %> <% if (c.from_type === 'network_device' && c.from_id == device.id) { %> Poort <%= c.from_port || '?' %> → <%= c.to_type %> <%= c.to_id || '?' %> poort <%= c.to_port || '?' %> <% } else { %> <%= c.from_type %> <%= c.from_id || '?' %> poort <%= c.from_port || '?' %> → Poort <%= c.to_port || '?' %> <% } %> <%= c.speed %> · <%= c.media_type %>
<% }) %>
<% } %>
<% if (device.notes) { %>

Notities

<%= device.notes %>

<% } %>