mirror of
https://github.com/openwrt/luci.git
synced 2025-04-04 02:15:23 +00:00
This reverts commit 43f60c3fad0672ed4cce54939d3c231a1f872a5e. Signed-off-by: Paul Donald <newtwen+github@gmail.com>
46 lines
1.5 KiB
JavaScript
46 lines
1.5 KiB
JavaScript
'use strict';
|
|
'require view';
|
|
'require form';
|
|
'require tools.widgets as widgets';
|
|
|
|
return view.extend({
|
|
render: function() {
|
|
var m, s, o;
|
|
|
|
m = new form.Map('dropbear', _('SSH Access'), _('Dropbear offers <abbr title="Secure Shell">SSH</abbr> network shell access and an integrated <abbr title="Secure Copy">SCP</abbr> server'));
|
|
|
|
s = m.section(form.TypedSection, 'dropbear', _('Dropbear Instance'));
|
|
s.anonymous = true;
|
|
s.addremove = true;
|
|
s.addbtntitle = _('Add instance');
|
|
|
|
o = s.option(form.Flag, 'enable', _('Enable Instance'), _('Enable <abbr title="Secure Shell">SSH</abbr> service instance'));
|
|
o.default = o.enabled;
|
|
|
|
o = s.option(widgets.NetworkSelect, 'Interface', _('Interface'), _('Listen only on the given interface or, if unspecified, on all'));
|
|
o.nocreate = true;
|
|
|
|
o = s.option(form.Value, 'Port', _('Port'));
|
|
o.datatype = 'port';
|
|
o.placeholder = 22;
|
|
|
|
o = s.option(form.Flag, 'PasswordAuth', _('Password authentication'), _('Allow <abbr title="Secure Shell">SSH</abbr> password authentication'));
|
|
o.enabled = 'on';
|
|
o.disabled = 'off';
|
|
o.default = o.enabled;
|
|
o.rmempty = false;
|
|
|
|
o = s.option(form.Flag, 'RootPasswordAuth', _('Allow root logins with password'), _('Allow the <em>root</em> user to log in with password'));
|
|
o.enabled = 'on';
|
|
o.disabled = 'off';
|
|
o.default = o.enabled;
|
|
|
|
o = s.option(form.Flag, 'GatewayPorts', _('Gateway Ports'), _('Allow remote hosts to connect to local SSH forwarded ports'));
|
|
o.enabled = 'on';
|
|
o.disabled = 'off';
|
|
o.default = o.disabled;
|
|
|
|
return m.render();
|
|
}
|
|
});
|