summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js
blob: b72c2fac2d0144d272d8bfa0d17ee8001f21ba17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
'use strict';
'require form';

return L.view.extend({
	render: function() {
		var m, s, o;

		m = new form.Map('yggdrasil', 'Yggdrasil');

		s = m.section(form.TypedSection, 'yggdrasil', _('General settings'));
		s.anonymous = true;

		s.option(form.Value, "IfName", _("Yggdrasil's network interface name"));
		s.option(form.Value, "LinkLocalTCPPort", _("Link-local TCP port"),
			_("The port number to be used for the link-local TCP listeners for the "+
				"configured MulticastInterfaces. This option does not affect listeners" +
				"specified in the Listen option. Unless you plan to firewall link-local" +
				"traffic, it is best to leave this as the default value of 0. This " +
				"option cannot currently be changed by reloading config during runtime."));

		s.option(form.Flag, "NodeInfoPrivacy", _("Enable NodeInfo privacy"),
		  _("By default, nodeinfo contains some defaults including the platform," +
		  " architecture and Yggdrasil version. These can help when surveying" +
		  " the network and diagnosing network routing problems. Enabling" +
		  " nodeinfo privacy prevents this, so that only items specified in" +
		  " \"NodeInfo\" are sent back if specified."));

		o = s.option(form.Value, "NodeInfo", _("NodeInfo"),
			_("Optional node info. This must be a { \"key\": \"value\", ... } map " +
				"or set as null. This is entirely optional but, if set, is visible " +
				"to the whole network on request."));
		o.validate = function(k, v) {
			try { JSON.parse(v); return true; } catch (e) { return e.message; }
		}

		s.option(form.Flag, "IfTAPMode", _("Enable tap mode"));
		s.option(form.Value, "IfMTU", _("MTU size for the interface"));
		s.option(form.Value, "SwitchOptions_MaxTotalQueueSize", 
			_("Maximum size of all switch queues combined"));

		o = m.section(form.TableSection, "multicast_interface", _("Multicast interfaces"),
			_("Regular expressions for which interfaces multicast peer discovery " +
				"should be enabled on. If none specified, multicast peer discovery is " +
				"disabled. The default value is .* which uses all interfaces."));
		o.option(form.Value, "name", _("Interface name"), 
			_("Set .* to multicast on all interfaces"));
		o.anonymous = true;
		o.addremove = true;

		o = m.section(form.TableSection, "listen_address", _("Listen addresses"), 
			_("Listen addresses for incoming connections. You will need to add " +
				"listeners in order to accept incoming peerings from non-local nodes. " +
				"Multicast peer discovery will work regardless of any listeners set " +
				"here. Each listener should be specified in URI format as above, e.g. " +
				"tcp://0.0.0.0:0 or tcp://[::]:0 to listen on all interfaces."));
		o.option(form.Value, "address", 
			_("Address to listen for incoming connections"), 
			_("e.g. tcp://0.0.0.0:0 or tcp://[::]:0"));
		o.anonymous = true;
		o.addremove = true;

		return m.render();
	}
});