{% extends "base.html" %} {% block title %}Subir Circuito{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Asignaciones de IPs

Red: 10.6.122.0/24 Gateway: 10.6.122.1 DNS: 10.6.100.66, 10.6.100.67
{% for row in range(16) %}
{% for col in range(16) -%} {% set ip = row*16 + col %} {% set unusable = ip == 0 or ip == 255 %} {% set usable = not unusable %}
{% if ipmap[ip].dhcp_pool %} DHCP {% else %} {{ ipmap[ip].reserved_by }} {% endif %}
{% if usable %} {% if ipmap[ip].locked %} {% endif %} {% if not ipmap[ip].locked and ip in leases %} {% endif %} .{{ row*16 + col }} {% endif %}
{%- endfor %}
{% endfor %}
Regresar
{% endblock %}