{% extends "admin_base.html" %} {% block title %}Add a New Node{% endblock %} {% block content %}
{% if get.disp is defined and get.disp != 1 %}
{% if get.disp == 'missing_warn' %} You must agree to the warning before updating the information. {% elseif get.disp == 'missing_args' %} Not all arguments were passed by the script. {% elseif get.disp == 'ip_fail' %} The IP address provided for SFTP was invalid. {% elseif get.disp == 'n_fail' %} The node name does not meet the requirements (1-15 characters, a-zA-Z0-9_.-). {% elseif get.disp == 'key_fail' %} The SSH keys you entered were not in a valid format. {% elseif get.disp == 'add_port_fail' %} The port list entered was invalid. {% endif %}
{% endif %}

Basic Information


Please update your GSD configuration file and add this as a token that can connect and use it. You do not need to click the button below once you've done this.

IP & Port Allocation


{% for ip, ports in portlisting %} {% endfor %}
IP Address Ports
{{ ip }}
Add Port(s)
{% for port, avaliable in ports %} {% if loop.index is odd %} {% if avaliable == 1 %} {% else %} {% endif %}   {{ port }}
{% endif %} {% endfor %}
{% for port, avaliable in ports %} {% if loop.index is even %} {% if avaliable == 1 %} {% else %} {% endif %}   {{ port }}
{% endif %} {% endfor %}
Add New IP Address
Key

(Port Available; Click to Delete Port)

(Port Used; Cannot Delete)

SFTP Settings


{% endblock %} {% block javascript %} {% endblock %}