{% extends "exodus-template.html" %} {% block content %} Node List

{{ node.name }}

Location

Description: {{ node.location.description }}
Longitude: {{ node.location.longitude }}
Latitude: {{ node.location.latitude }}
Master ip: {{ node.masterip }}
EDIT DELETE

Interfaces

Add new interface

{% for nic in node.interface_set.all %}

iface: {{ nic.iface }}

Add new public access point

Description: {{ nic.shortdesc }}
IP: {{ nic.ip }}/{{ nic.netmask }}
Type: {% ifequal nic nic.link %}Master{% else %}Slave {% endifequal %}
{% ifnotequal nic.type "eth" %} SSID: {{ nic.ssid }}
Channel: {{ nic.channel }}
Antenna: {{ nic.antenna }}
Polar: {{ nic.polar }}
Mode: {{ nic.mode }}
{% endifnotequal %} EDIT DELETE

{% for interlink in nic.link.interface_set.all %} {% ifnotequal interlink nic %} {% endifnotequal %} {% endfor %}
    {% for accessPoint in nic.ap.all %}

  1. Public Access Point: {{ accessPoint.ip}}/{{accessPoint.netmask }} EDIT DELETE {% for dhcp in accessPoint.dhcpstatic.all %}
    • Hostname: {{ dhcp.hostname }}
    • MacAddress: {{ dhcp.macaddress }}
    {% endfor %}
  2. {% endfor %}

{% endfor %} {% endblock %}