summaryrefslogtreecommitdiffhomepage
path: root/protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js
blob: b8776e873fb6f43f5979bb4f1010e1f560589ce2 (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
'use strict';
'require form';
'require network';

return network.registerProtocol('hnet', {
	getI18n: function() {
		return _('Automatic Homenet (HNCP)');
	},

	getOpkgPackage: function() {
		return 'hnet-full';
	},

	renderFormOptions: function(s) {
		var dev = this.getL2Device() || this.getDevice(), o;

		o = s.taboption('general', form.ListValue, 'mode', _('Category'));
		o.value('auto', _('Automatic'));
		o.value('external', _('External'));
		o.value('internal', _('Internal'));
		o.value('leaf', _('Leaf'));
		o.value('guest', _('Guest'));
		o.value('adhoc', _('Ad-Hoc'));
		o.value('hybrid', _('Hybrid'));
		o.default = 'auto';

		s.taboption('advanced', form.Value, 'link_id', _('IPv6 assignment hint'), _('Assign prefix parts using this hexadecimal subprefix ID for this interface.'));

		o = s.taboption('advanced', form.Value, 'ip4assign', _('IPv4 assignment length'));
		o.datatype = 'max(32)';
		o.default = '24';

		o = s.taboption('advanced', form.Value, 'dnsname', _('DNS-Label / FQDN'));
		o.default = s.section;

		o = s.taboption('advanced', form.Value, 'macaddr', _('Override MAC address'));
		o.datatype = 'macaddr';
		o.placeholder = dev ? (dev.getMAC() || '') : '';

		o = s.taboption('advanced', form.Value, 'mtu', _('Override MTU'));
		o.datatype = 'max(9200)';
		o.placeholder = dev ? (dev.getMTU() || '1500') : '1500';
	}
});