summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-olsr/htdocs/luci-static/resources/view/olsr/frontend/olsrdhna6.js
blob: 207469e5fa7d3690fb9aa0227a09cd73d6060089 (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
'use strict';
'require view';
'require form';
'require	uci';
'require ui';

return view.extend({
	load: function () {
		return Promise.all([uci.load('olsrd6')]);
	},
	render: function () {
		var mh = new form.Map('olsrd6', _('OLSR - HNA6-Announcements'), _('Hosts in an OLSR routed network can announce connectivity ' + 'to external networks using HNA6 messages.'));

		var hna6 = mh.section(form.TypedSection, 'Hna6', _('Hna6'), _('IPv6 network must be given in full notation, ' + 'prefix must be in CIDR notation.'));
		hna6.addremove = true;
		hna6.anonymous = true;
		hna6.template = 'cbi/tblsection';

		var net6 = hna6.option(form.Value, 'netaddr', _('Network address'));
		net6.datatype = 'ip6addr';
		net6.placeholder = 'fec0:2200:106:0:0:0:0:0';
		net6.default = 'fec0:2200:106:0:0:0:0:0';
		var msk6 = hna6.option(form.Value, 'prefix', _('Prefix'));
		msk6.datatype = 'range(0,128)';
		msk6.placeholder = '128';
		msk6.default = '128';

		return mh.render();
	},
});