{% extends "admin_base.html" %} {% block title %}Viewing 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 FTP or the node FQDN 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 == '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. Whats this?


Sample GSD Configuration File
{
	"daemon": {
		"listenport": {{ node.gsd_listen }},
		"consoleport": {{ node.gsd_console }}
	},
	"tokens": ["{{ node.gsd_secret }}"],
	"interfaces":{
		"rest":{
			"authurl": "{% if settings.https == 1 %}https:{% else %}http:{% endif %}{{ settings.master_url }}ajax/validate_download.php"
		},
		"console":{},
		"ftp":{
			"authurl": "{% if settings.https == 1 %}https:{% else %}http:{% endif %}{{ settings.master_url }}ajax/validate_ftp.php",
			"port": 21,
			"host": "{{ node.ip }}",
			"use_ssl": true
		}
	},
	"servers": []
}

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)

FTP Settings


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