{% 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 address: {{range.startMac}}
Start address: {{range.endMac}}
Status:
Next available MAC address: {{range.nextAvailableMac}}



Excluded MACs

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

Allocated MACs

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