12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- 'use strict';
- 'require form';
- 'require network';
- 'require tools.widgets as widgets';
- network.registerPatternVirtual(/^ds-.+$/);
- network.registerErrorCode('AFTR_DNS_FAIL', _('Unable to resolve AFTR host name'));
- return network.registerProtocol('dslite', {
- getI18n: function() {
- return _('Dual-Stack Lite (RFC6333)');
- },
- getIfname: function() {
- return this._ubus('l3_device') || 'ds-%s'.format(this.sid);
- },
- getOpkgPackage: function() {
- return 'ds-lite';
- },
- isFloating: function() {
- return true;
- },
- isVirtual: function() {
- return true;
- },
- getDevices: function() {
- return null;
- },
- containsDevice: function(ifname) {
- return (network.getIfnameOf(ifname) == this.getIfname());
- },
- renderFormOptions: function(s) {
- var o;
- o = s.taboption('general', form.Value, 'peeraddr', _('DS-Lite AFTR address'));
- o.rmempty = false;
- o.datatype = 'or(hostname,ip6addr("nomask"))';
- o.value("gw.transix.jp", _("Transix (Japan only)"));
- o.value("dgw.xpass.jp", _("Cross Pass (Japan only)"));
- o = s.taboption('general', form.Value, 'ip6addr', _('Local IPv6 address'), _('Leave empty to use the current WAN address'));
- o.datatype = 'ip6addr("nomask")';
- o.load = function(section_id) {
- return network.getWAN6Networks().then(L.bind(function(nets) {
- if (Array.isArray(nets) && nets.length)
- this.placeholder = nets[0].getIP6Addr();
- return form.Value.prototype.load.apply(this, [section_id]);
- }, this));
- };
- o = s.taboption('advanced', widgets.NetworkSelect, 'tunlink', _('Tunnel Link'));
- o.nocreate = true;
- o.exclude = s.section;
- o = s.taboption('advanced', form.ListValue, 'encaplimit', _('Encapsulation limit'));
- o.rmempty = false;
- o.default = 'ignore';
- o.datatype = 'or("ignore",range(0,255))';
- o.value('ignore', _('ignore'));
- for (var i = 0; i < 256; i++)
- o.value(i);
- o = s.taboption('advanced', form.Value, 'mtu', _('Use MTU on tunnel interface'));
- o.placeholder = '1280';
- o.datatype = 'max(9200)';
- }
- });
|