mirror of
https://github.com/openwrt/luci.git
synced 2025-04-05 16:34:49 +00:00
1) Added the ability to route different domains through different gateways, up to 32 routes. 2) The program has been switched from proxying mode to sniffer mode. 3) Blacklist has been added so that the specified subnets are not added to the routing table. 4) Added the logs and statistics tabs 5) The "output" option has been removed, it is now /tmp/antiblock 6) Bash backend removed, now only JS. Signed-off-by: Khachatryan Karen <karen0734@gmail.com>
27 lines
794 B
JavaScript
27 lines
794 B
JavaScript
'use strict';
|
|
'require view';
|
|
'require form';
|
|
'require tools.widgets as widgets';
|
|
|
|
return view.extend({
|
|
render: function () {
|
|
const m = new form.Map('antiblock', _('AntiBlock'));
|
|
|
|
const s = m.section(form.NamedSection, 'config', 'main', _('AntiBlock'));
|
|
s.addremove = true;
|
|
|
|
let o = s.option(form.Flag, 'enabled', _('Enabled'));
|
|
|
|
o = s.option(form.DynamicList, 'blacklist', _('Blacklist'), _('Prevent adding IP from these subnets to the routing table, optional parameter'));
|
|
o.depends('enabled', '1');
|
|
|
|
o = s.option(form.Flag, 'log', _('Log'), _('Show operations log, optional parameter'));
|
|
o.depends('enabled', '1');
|
|
|
|
o = s.option(form.Flag, 'stat', _('Statistics'), _('Show statistics data, optional parameter'));
|
|
o.depends('enabled', '1');
|
|
|
|
return m.render();
|
|
},
|
|
});
|