{% 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 directory you entered was not valid. Must end with a trailing slash. {% elseif get.disp == 'ip_port_space' %} Unable to allocate the ports you inputted. {% elseif get.disp == 'port_fail' %} The ports you entered were not in a valid format. {% endif %}
{% endif %}

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

Please enter the FQDN for this node. If you do not have one please enter its IP address. (Do not include the http:// or www)

Please enter the IP address of the node here. This IP should be publicly accessable. Using a private IP address will make servers inaccessable from an outside network.

Please enter the amount of avaliable memory on this server.

Please enter the amount of avaliable disk space on this server in megabytes.

Include a trailing slash. Please make sure that this directory exists on the server.

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

This is a reserved node, please do not automatically allocate new servers to it.
I have read and understand how to set up this node. (docs)
{% endblock %} {% block javascript %} {% endblock %}