{% extends "networking/base.html" %} {% block pagehead %}

Ethernet Range: {{range.name}}

{% endblock pagehead %} {% block head %} {% endblock %} {% block content %}
{% if errors %}
{{ errors }}
{% endif %}

Range information

Range name: {{range.name}}
Is global: {{range.isGlobal}}
Start Ip4 address: {{range.startIp}}Gateway: {{range.gw}}
End Ip4 address: {{range.endIp}}Dns1: {{range.dns1}}
Netmask: {{range.netMask}}Dns2: {{range.dns2}}
Status: Next available Ip4 address: {{range.nextAvailableIp}}



Excluded IPs

{% if range.getExcludedIps.count > 0 %} {% for ip in range.getExcludedIps %} {% csrf_token %} {%endfor%} {% else %} {% endif %} {% csrf_token %}
Excluded AddressCommentActions
{{ip.ip}}{{ip.comment}}
There are no excluded IPs at the moment...

Assigned IPs

{% if range.getAllocatedIps.count > 0 %} {% for ip in range.getAllocatedIps %} {%endfor%} {% else %} {% endif %}
Allocated Address Server VM VM Iface Project Slice
{{ip.ip}} {{ip.Interface.all.0.vm.all.0.getChildObject.Server.all.0.name}} {{ip.Interface.all.0.vm.all.0.name}} {{ip.Interface.all.0.name}} {{ip.Interface.all.0.vm.all.0.projectName}} {{ip.Interface.all.0.vm.all.0.sliceName}}
There are no IPs assigned at the moment...
Create range |
{% csrf_token %} Delete |
Back
{% endblock content %}