mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
471 lines
25 KiB
HTML
471 lines
25 KiB
HTML
{% extends 'dcim/device_component.html' %}
|
|
{% load helpers %}
|
|
{% load plugins %}
|
|
{% load render_table from django_tables2 %}
|
|
|
|
{% block extra_controls %}
|
|
{% if perms.dcim.add_interface and not object.is_virtual %}
|
|
<a href="{% url 'dcim:interface_add' %}?device={{ object.device.pk }}&parent={{ object.pk }}&return_url={{ object.get_absolute_url }}" class="btn btn-sm btn-success">
|
|
<span class="mdi mdi-plus-thick" aria-hidden="true"></span> Add Child Interface
|
|
</a>
|
|
{% endif %}
|
|
{{ block.super }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row mb-3">
|
|
<div class="col col-md-6">
|
|
<div class="card">
|
|
<h5 class="card-header">
|
|
Interface
|
|
</h5>
|
|
<div class="card-body">
|
|
<table class="table table-hover">
|
|
<tr>
|
|
<th scope="row">Device</th>
|
|
<td>
|
|
<a href="{{ object.device.get_absolute_url }}">{{ object.device }}</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Name</th>
|
|
<td>{{ object.name }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Label</th>
|
|
<td>{{ object.label|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Type</th>
|
|
<td>{{ object.get_type_display }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Enabled</th>
|
|
<td>
|
|
{% if object.enabled %}
|
|
<i class="mdi mdi-check-bold text-success" title="Yes"></i>
|
|
{% else %}
|
|
<i class="mdi mdi-close-thick text-danger" title="No"></i>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Management Only</th>
|
|
<td>
|
|
{% if object.mgmt_only %}
|
|
<i class="mdi mdi-check-bold text-success" title="Yes"></i>
|
|
{% else %}
|
|
<i class="mdi mdi-close-thick text-danger" title="No"></i>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Parent</th>
|
|
<td>
|
|
{% if object.parent %}
|
|
<a href="{{ object.parent.get_absolute_url }}">{{ object.parent }}</a>
|
|
{% else %}
|
|
<span class="text-muted">None</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">LAG</th>
|
|
<td>
|
|
{% if object.lag%}
|
|
<a href="{{ object.lag.get_absolute_url }}">{{ object.lag }}</a>
|
|
{% else %}
|
|
<span class="text-muted">None</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Description</th>
|
|
<td>{{ object.description|placeholder }} </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">MTU</th>
|
|
<td>{{ object.mtu|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">MAC Address</th>
|
|
<td><span class="text-monospace">{{ object.mac_address|placeholder }}</span></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">WWN</th>
|
|
<td><span class="text-monospace">{{ object.wwn|placeholder }}</span></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">802.1Q Mode</th>
|
|
<td>{{ object.get_mode_display|placeholder }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% include 'inc/panels/custom_fields.html' %}
|
|
{% include 'inc/panels/tags.html' %}
|
|
{% plugin_left_page object %}
|
|
</div>
|
|
<div class="col col-md-6">
|
|
{% if not object.is_virtual %}
|
|
<div class="card">
|
|
<h5 class="card-header">
|
|
Connection
|
|
</h5>
|
|
<div class="card-body">
|
|
{% if object.mark_connected %}
|
|
<div class="text-muted">
|
|
<span class="text-success"><i class="mdi mdi-check-bold"></i></span> Marked as Connected
|
|
</div>
|
|
{% elif object.cable %}
|
|
<table class="table table-hover">
|
|
{% if object.connected_endpoint.device %}
|
|
<tr>
|
|
<td colspan="2">
|
|
{% if object.connected_endpoint.enabled %}
|
|
<span class="badge bg-success">Enabled</span>
|
|
{% else %}
|
|
<span class="badge bg-danger">Disabled</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
<tr>
|
|
<th scope="row">Cable</th>
|
|
<td>
|
|
<a href="{{ object.cable.get_absolute_url }}">{{ object.cable }}</a>
|
|
<a href="{% url 'dcim:interface_trace' pk=object.pk %}" class="btn btn-primary btn-sm lh-1" title="Trace">
|
|
<i class="mdi mdi-transit-connection-variant" aria-hidden="true"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% if object.connected_endpoint.device %}
|
|
{% with iface=object.connected_endpoint %}
|
|
<tr>
|
|
<th scope="row">Device</th>
|
|
<td>
|
|
<a href="{{ iface.device.get_absolute_url }}">{{ iface.device }}</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Name</th>
|
|
<td>
|
|
<a href="{{ iface.get_absolute_url }}">{{ iface.name }}</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Type</th>
|
|
<td>{{ iface.get_type_display }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">LAG</th>
|
|
<td>
|
|
{% if iface.lag%}
|
|
<a href="{{ iface.lag.get_absolute_url }}">{{ iface.lag }}</a>
|
|
{% else %}
|
|
<span class="text-muted">None</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Description</th>
|
|
<td>{{ iface.description|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">MTU</th>
|
|
<td>{{ iface.mtu|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">MAC Address</th>
|
|
<td>{{ iface.mac_address|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">802.1Q Mode</th>
|
|
<td>{{ iface.get_mode_display }}</td>
|
|
</tr>
|
|
{% endwith %}
|
|
{% elif object.connected_endpoint.circuit %}
|
|
{% with ct=object.connected_endpoint %}
|
|
<tr>
|
|
<th scope="row">Provider</th>
|
|
<td><a href="{{ ct.circuit.provider.get_absolute_url }}">{{ ct.circuit.provider }}</a></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Circuit</th>
|
|
<td><a href="{{ ct.circuit.get_absolute_url }}">{{ ct.circuit }}</a></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Side</th>
|
|
<td>{{ ct.term_side }}</td>
|
|
</tr>
|
|
{% endwith %}
|
|
{% endif %}
|
|
<tr>
|
|
<th scope="row">Path Status</th>
|
|
<td>
|
|
{% if object.path.is_active %}
|
|
<span class="badge bg-success">Reachable</span>
|
|
{% else %}
|
|
<span class="badge bg-danger">Not Reachable</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% elif object.wireless_link %}
|
|
<table class="table table-hover">
|
|
<tr>
|
|
<th scope="row">Wireless Link</th>
|
|
<td>
|
|
<a href="{{ object.wireless_link.get_absolute_url }}">{{ object.wireless_link }}</a>
|
|
<a href="{% url 'dcim:interface_trace' pk=object.pk %}" class="btn btn-primary btn-sm lh-1" title="Trace">
|
|
<i class="mdi mdi-transit-connection-variant" aria-hidden="true"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% with peer_interface=object.connected_endpoint %}
|
|
<tr>
|
|
<th scope="row">Device</th>
|
|
<td>
|
|
<a href="{{ peer_interface.device.get_absolute_url }}">{{ peer_interface.device }}</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Name</th>
|
|
<td>
|
|
<a href="{{ peer_interface.get_absolute_url }}">{{ peer_interface }}</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Type</th>
|
|
<td>{{ peer_interface.get_type_display }}</td>
|
|
</tr>
|
|
{% endwith %}
|
|
</table>
|
|
{% else %}
|
|
<div class="text-muted">
|
|
Not Connected
|
|
{% if object.is_wired and perms.dcim.add_cable %}
|
|
<div class="dropdown float-end">
|
|
<button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
<span class="mdi mdi-ethernet-cable" aria-hidden="true"></span> Connect
|
|
</button>
|
|
<ul class="dropdown-menu dropdown-menu-end">
|
|
<li>
|
|
<a class="dropdown-item" href="{% url 'dcim:interface_connect' termination_a_id=object.pk termination_b_type='interface' %}?return_url={{ object.get_absolute_url }}">
|
|
Interface
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="dropdown-item" href="{% url 'dcim:interface_connect' termination_a_id=object.pk termination_b_type='front-port' %}?return_url={{ object.get_absolute_url }}">
|
|
Front Port
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="dropdown-item" href="{% url 'dcim:interface_connect' termination_a_id=object.pk termination_b_type='rear-port' %}?return_url={{ object.get_absolute_url }}">
|
|
Rear Port
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="dropdown-item" href="{% url 'dcim:interface_connect' termination_a_id=object.pk termination_b_type='circuit-termination' %}?return_url={{ object.get_absolute_url }}">
|
|
Circuit Termination
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
{% elif object.is_wireless and perms.wireless.add_wirelesslink %}
|
|
<div class="dropdown float-end">
|
|
<a href="{% url 'wireless:wirelesslink_add' %}?interface_a={{ object.pk }}&return_url={{ object.get_absolute_url }}" class="btn btn-primary btn-sm">
|
|
<span class="mdi mdi-wifi-plus" aria-hidden="true"></span> Connect
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% if object.is_wireless %}
|
|
<div class="card">
|
|
<h5 class="card-header">Wireless</h5>
|
|
<div class="card-body">
|
|
{% with peer=object.connected_endpoint %}
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>Local</th>
|
|
{% if peer %}
|
|
<th>Peer</th>
|
|
{% endif %}
|
|
</tr>
|
|
</thead>
|
|
<tr>
|
|
<th scope="row">Role</th>
|
|
<td>{{ object.get_rf_role_display|placeholder }}</td>
|
|
{% if peer %}
|
|
<td>{{ peer.get_rf_role_display|placeholder }}</td>
|
|
{% endif %}
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Channel</th>
|
|
<td>{{ object.get_rf_channel_display|placeholder }}</td>
|
|
{% if peer %}
|
|
<td{% if peer.rf_channel != object.rf_channel %} class="text-danger"{% endif %}>
|
|
{{ peer.get_rf_channel_display|placeholder }}
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Channel Frequency</th>
|
|
<td>
|
|
{% if object.rf_channel_frequency %}
|
|
{{ object.rf_channel_frequency|simplify_decimal }} MHz
|
|
{% else %}
|
|
<span class="text-muted">—</span>
|
|
{% endif %}
|
|
</td>
|
|
{% if peer %}
|
|
<td{% if peer.rf_channel_frequency != object.rf_channel_frequency %} class="text-danger"{% endif %}>
|
|
{% if peer.rf_channel_frequency %}
|
|
{{ peer.rf_channel_frequency|simplify_decimal }} MHz
|
|
{% else %}
|
|
<span class="text-muted">—</span>
|
|
{% endif %}
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Channel Width</th>
|
|
<td>
|
|
{% if object.rf_channel_width %}
|
|
{{ object.rf_channel_width|simplify_decimal }} MHz
|
|
{% else %}
|
|
<span class="text-muted">—</span>
|
|
{% endif %}
|
|
</td>
|
|
{% if peer %}
|
|
<td{% if peer.rf_channel_width != object.rf_channel_width %} class="text-danger"{% endif %}>
|
|
{% if peer.rf_channel_width %}
|
|
{{ peer.rf_channel_width|simplify_decimal }} MHz
|
|
{% else %}
|
|
<span class="text-muted">—</span>
|
|
{% endif %}
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
</table>
|
|
{% endwith %}
|
|
</div>
|
|
</div>
|
|
<div class="card">
|
|
<h5 class="card-header">Wireless LANs</h5>
|
|
<div class="card-body">
|
|
<table class="table table-hover table-headings">
|
|
<thead>
|
|
<tr>
|
|
<th>Group</th>
|
|
<th>SSID</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for wlan in object.wireless_lans.all %}
|
|
<tr>
|
|
<td>
|
|
{% if wlan.group %}
|
|
<a href="{{ wlan.group.get_absolute_url }}">{{ wlan.group }}</a>
|
|
{% else %}
|
|
—
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
<a href="{{ wlan.get_absolute_url }}">{{ wlan.ssid }}</a>
|
|
</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="3" class="text-muted">None</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% if object.is_lag %}
|
|
<div class="card">
|
|
<h5 class="card-header">LAG Members</h5>
|
|
<div class="card-body">
|
|
<table class="table table-hover table-headings">
|
|
<thead>
|
|
<tr>
|
|
<th>Parent</th>
|
|
<th>Interface</th>
|
|
<th>Type</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for member in object.member_interfaces.all %}
|
|
<tr>
|
|
<td>
|
|
<a href="{{ member.device.get_absolute_url }}">{{ member.device }}</a>
|
|
</td>
|
|
<td>
|
|
<a href="{{ member.get_absolute_url }}">{{ member }}</a>
|
|
</td>
|
|
<td>
|
|
{{ member.get_type_display }}
|
|
</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="3" class="text-muted">No member interfaces</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% plugin_right_page object %}
|
|
</div>
|
|
</div>
|
|
<div class="row mb-3">
|
|
<div class="col col-md-12">
|
|
<div class="card">
|
|
<h5 class="card-header">
|
|
IP Addresses
|
|
</h5>
|
|
<div class="card-body">
|
|
{% if ipaddress_table.rows %}
|
|
{% render_table ipaddress_table 'inc/table.html' %}
|
|
{% else %}
|
|
<div class="text-muted">None</div>
|
|
{% endif %}
|
|
</div>
|
|
{% if perms.ipam.add_ipaddress %}
|
|
<div class="card-footer text-end noprint">
|
|
<a href="{% url 'ipam:ipaddress_add' %}?device={{ object.device.pk }}&interface={{ object.pk }}" class="btn btn-sm btn-primary">
|
|
<span class="mdi mdi-plus-thick" aria-hidden="true"></span> Add IP Address
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row mb-3">
|
|
<div class="col col-md-12">
|
|
{% include 'inc/panel_table.html' with table=vlan_table heading="VLANs" %}
|
|
</div>
|
|
</div>
|
|
<div class="row mb-3">
|
|
<div class="col col-md-12">
|
|
{% include 'inc/panel_table.html' with table=child_interfaces_table heading="Child Interfaces" %}
|
|
</div>
|
|
</div>
|
|
<div class="row mb-3">
|
|
<div class="col col-md-12">
|
|
{% plugin_full_width_page object %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|