{% extends "admin_base.html" %} {% block title %}Add a New Node{% endblock %} {% block content %}

Add New Node


{% if get.disp is defined and get.disp != 1 %}
{% if get.disp == 'agree_warn' %} You must agree to the node warning before we can create the node. {% elseif get.disp == 'missing_args' %} Not all arguments were passed by the script. {% elseif get.disp == 'n_fail' %} The node name does not meet the requirements (1-15 characters, a-zA-Z0-9_.-). {% elseif get.disp == 'url_fail' %} The node URL provided is not valid. URLs must end with a trailing slash and must be a subdomain without any additional folders. (e.g. http://node.example.com/) {% elseif get.disp == 'ip_fail' %} The IP addresses provided were not valid. {% elseif get.disp == 'dir_fail' %} The directories you entered were not valid. They must end with a trailing slash. {% elseif get.disp == 'user_fail' %} SSH users must not be blank, and may not be \'root\'. {% elseif get.disp == 'ip_port_space' %} Unable to allocate the ports you inputted. {% endif %}
{% endif %}

15 character maximum (a-zA-Z0-9_-.).

In most cases this is the same as the Node IP Address.

Enter one IP address per line, followed by a pipe (|) and then a list of each available port separated with commas.

By checking this box you are confirming that you have correctly set up your node to handle servers created from this system. Do not add this node until you have correctly done so. Please consult the documentation for how to do this if you are unsure.
{% endblock %} {% block javascript %} {% endblock %}