summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js44
-rw-r--r--applications/luci-app-banip/po/ar/banip.po165
-rw-r--r--applications/luci-app-banip/po/bg/banip.po165
-rw-r--r--applications/luci-app-banip/po/bn_BD/banip.po165
-rw-r--r--applications/luci-app-banip/po/ca/banip.po165
-rw-r--r--applications/luci-app-banip/po/cs/banip.po165
-rw-r--r--applications/luci-app-banip/po/de/banip.po165
-rw-r--r--applications/luci-app-banip/po/el/banip.po165
-rw-r--r--applications/luci-app-banip/po/en/banip.po165
-rw-r--r--applications/luci-app-banip/po/es/banip.po165
-rw-r--r--applications/luci-app-banip/po/fi/banip.po165
-rw-r--r--applications/luci-app-banip/po/fr/banip.po165
-rw-r--r--applications/luci-app-banip/po/he/banip.po165
-rw-r--r--applications/luci-app-banip/po/hi/banip.po165
-rw-r--r--applications/luci-app-banip/po/hu/banip.po165
-rw-r--r--applications/luci-app-banip/po/it/banip.po165
-rw-r--r--applications/luci-app-banip/po/ja/banip.po165
-rw-r--r--applications/luci-app-banip/po/ko/banip.po165
-rw-r--r--applications/luci-app-banip/po/mr/banip.po165
-rw-r--r--applications/luci-app-banip/po/ms/banip.po165
-rw-r--r--applications/luci-app-banip/po/nb_NO/banip.po165
-rw-r--r--applications/luci-app-banip/po/pl/banip.po165
-rw-r--r--applications/luci-app-banip/po/pt/banip.po165
-rw-r--r--applications/luci-app-banip/po/pt_BR/banip.po165
-rw-r--r--applications/luci-app-banip/po/ro/banip.po165
-rw-r--r--applications/luci-app-banip/po/ru/banip.po165
-rw-r--r--applications/luci-app-banip/po/sk/banip.po165
-rw-r--r--applications/luci-app-banip/po/sv/banip.po165
-rw-r--r--applications/luci-app-banip/po/templates/banip.pot165
-rw-r--r--applications/luci-app-banip/po/tr/banip.po165
-rw-r--r--applications/luci-app-banip/po/uk/banip.po165
-rw-r--r--applications/luci-app-banip/po/vi/banip.po165
-rw-r--r--applications/luci-app-banip/po/zh_Hans/banip.po165
-rw-r--r--applications/luci-app-banip/po/zh_Hant/banip.po165
34 files changed, 3934 insertions, 1555 deletions
diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js
index 9196e295a1..e967d529e6 100644
--- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js
+++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js
@@ -490,11 +490,35 @@ return view.extend({
o = s.taboption('adv_chain', form.DummyValue, '_sub');
o.rawhtml = true;
- o.default = '<em><b>Individual IPSet Types</b></em>';
+ o.default = '<em><b>Individual IPSet Settings</b></em>';
+
+ o = s.taboption('adv_chain', form.ListValue, 'ban_maclist_timeout', _('Maclist Timeout'), _('Set the maclist IPSet timeout.'));
+ o.value('1800', _('30 minutes'));
+ o.value('3600', _('1 hour'));
+ o.value('21600', _('6 hours'));
+ o.value('43200', _('12 hours'));
+ o.value('86400', _('24 hours'));
+ o.optional = true;
+ o.rmempty = true;
+
+ o = s.taboption('adv_chain', form.ListValue, 'ban_whitelist_timeout', _('Whitelist Timeout'), _('Set the whitelist IPSet timeout.'));
+ o.value('1800', _('30 minutes'));
+ o.value('3600', _('1 hour'));
+ o.value('21600', _('6 hours'));
+ o.value('43200', _('12 hours'));
+ o.value('86400', _('24 hours'));
+ o.optional = true;
+ o.rmempty = true;
+
+ o = s.taboption('adv_chain', form.ListValue, 'ban_blacklist_timeout', _('Blacklist Timeout'), _('Set the blacklist IPSet timeout.'));
+ o.value('1800', _('30 minutes'));
+ o.value('3600', _('1 hour'));
+ o.value('21600', _('6 hours'));
+ o.value('43200', _('12 hours'));
+ o.value('86400', _('24 hours'));
+ o.optional = true;
+ o.rmempty = true;
- /*
- prepare source data
- */
var info, source, sources = [];
if (result[0]) {
sources = result[0].trim().split('\n');
@@ -754,6 +778,18 @@ return view.extend({
o.rawhtml = true;
o.default = '<em><b>Local Sources</b></em>';
+ o = s.taboption('sources', form.MultiValue, 'ban_localsources', _('Local Sources'), _('Limit the selection to certain local sources.'));
+ o.value('maclist');
+ o.value('whitelist');
+ o.value('blacklist');
+ o.optional = true;
+ o.rmempty = true;
+
+ o = s.taboption('sources', form.DynamicList, 'ban_extrasources', _('Extra Sources'), _('Add additional, non-banIP related IPSets e.g. for reporting and queries.'));
+ o.datatype = 'uciname';
+ o.optional = true;
+ o.rmempty = true;
+
o = s.taboption('sources', form.Flag, 'ban_autoblacklist', _('Auto Blacklist'), _('Automatically transfers suspicious IPs from the log to the banIP blacklist during runtime.'));
o.rmempty = false;
diff --git a/applications/luci-app-banip/po/ar/banip.po b/applications/luci-app-banip/po/ar/banip.po
index 76e050a2b0..607f6c409b 100644
--- a/applications/luci-app-banip/po/ar/banip.po
+++ b/applications/luci-app-banip/po/ar/banip.po
@@ -11,12 +11,42 @@ msgstr ""
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 4.2-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -44,6 +74,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -68,7 +103,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -76,17 +111,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -103,6 +138,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -147,15 +186,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -163,23 +202,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -201,7 +240,7 @@ msgstr ""
msgid "Download Utility"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -209,7 +248,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -217,11 +256,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -276,6 +315,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -329,13 +372,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -351,14 +394,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -371,7 +418,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -379,7 +430,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -398,6 +449,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -453,11 +508,11 @@ msgstr ""
msgid "Overview"
msgstr "نظرة عامة"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -506,11 +561,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -518,7 +573,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -543,7 +598,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -555,27 +610,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -590,6 +649,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -598,7 +665,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -703,7 +770,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -725,13 +792,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -739,6 +806,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/bg/banip.po b/applications/luci-app-banip/po/bg/banip.po
index a8df3ac020..b6cbc32a15 100644
--- a/applications/luci-app-banip/po/bg/banip.po
+++ b/applications/luci-app-banip/po/bg/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.1-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/bn_BD/banip.po b/applications/luci-app-banip/po/bn_BD/banip.po
index 3faceedeef..a51c5e41eb 100644
--- a/applications/luci-app-banip/po/bn_BD/banip.po
+++ b/applications/luci-app-banip/po/bn_BD/banip.po
@@ -4,12 +4,42 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -37,6 +67,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -61,7 +96,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -69,17 +104,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -96,6 +131,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -140,15 +179,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -156,23 +195,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -194,7 +233,7 @@ msgstr ""
msgid "Download Utility"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -202,7 +241,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -210,11 +249,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -269,6 +308,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -322,13 +365,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -344,14 +387,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -364,7 +411,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -372,7 +423,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -391,6 +442,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -446,11 +501,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -499,11 +554,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -511,7 +566,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -536,7 +591,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -548,27 +603,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -583,6 +642,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -591,7 +658,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -696,7 +763,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -718,13 +785,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -732,6 +799,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/ca/banip.po b/applications/luci-app-banip/po/ca/banip.po
index 18ea3b08e6..8fc797f82e 100644
--- a/applications/luci-app-banip/po/ca/banip.po
+++ b/applications/luci-app-banip/po/ca/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.9.1-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Utilitat de baixades"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr "Visió de conjunt"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr "Enregistrament detallat de depuració"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/cs/banip.po b/applications/luci-app-banip/po/cs/banip.po
index 2415afc590..fb27dc6fac 100644
--- a/applications/luci-app-banip/po/cs/banip.po
+++ b/applications/luci-app-banip/po/cs/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Nástroj pro stahování"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr "Přehled"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr "Podrobné protokolování ladění"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/de/banip.po b/applications/luci-app-banip/po/de/banip.po
index c2547bdc21..bafdf5c069 100644
--- a/applications/luci-app-banip/po/de/banip.po
+++ b/applications/luci-app-banip/po/de/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.4-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -69,7 +104,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -77,17 +112,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -104,6 +139,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -148,15 +187,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -164,23 +203,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -202,7 +241,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Download-Werkzeug"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -210,7 +249,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -218,11 +257,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -277,6 +316,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -330,13 +373,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -352,14 +395,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -372,7 +419,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -380,7 +431,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -399,6 +450,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -454,11 +509,11 @@ msgstr ""
msgid "Overview"
msgstr "Übersicht"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -507,11 +562,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -519,7 +574,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -544,7 +599,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -556,27 +611,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -591,6 +650,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -599,7 +666,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -704,7 +771,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -726,13 +793,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr "Ausführliche Debug-Protokollierung"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -740,6 +807,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/el/banip.po b/applications/luci-app-banip/po/el/banip.po
index bbe8cbc058..771332517e 100644
--- a/applications/luci-app-banip/po/el/banip.po
+++ b/applications/luci-app-banip/po/el/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.10-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/en/banip.po b/applications/luci-app-banip/po/en/banip.po
index 2f9f505ea4..f1d7c95b30 100644
--- a/applications/luci-app-banip/po/en/banip.po
+++ b/applications/luci-app-banip/po/en/banip.po
@@ -4,12 +4,42 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -37,6 +67,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -61,7 +96,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -69,17 +104,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -96,6 +131,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -140,15 +179,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -156,23 +195,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -194,7 +233,7 @@ msgstr ""
msgid "Download Utility"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -202,7 +241,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -210,11 +249,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -269,6 +308,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -322,13 +365,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -344,14 +387,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -364,7 +411,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -372,7 +423,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -391,6 +442,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -446,11 +501,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -499,11 +554,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -511,7 +566,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -536,7 +591,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -548,27 +603,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -583,6 +642,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -591,7 +658,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -696,7 +763,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -718,13 +785,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -732,6 +799,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/es/banip.po b/applications/luci-app-banip/po/es/banip.po
index f2ae67d409..d06fe1efd4 100644
--- a/applications/luci-app-banip/po/es/banip.po
+++ b/applications/luci-app-banip/po/es/banip.po
@@ -13,12 +13,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.1-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -46,6 +76,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -72,7 +107,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -80,17 +115,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -107,6 +142,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -151,15 +190,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -167,23 +206,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -205,7 +244,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Utilidad de descarga"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -213,7 +252,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -221,11 +260,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -280,6 +319,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -333,13 +376,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -355,14 +398,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -376,7 +423,11 @@ msgid "List of supported and fully pre-configured download utilities."
msgstr ""
"Lista de utilidades de descarga totalmente preconfiguradas y compatibles."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -384,7 +435,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -403,6 +454,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -458,11 +513,11 @@ msgstr ""
msgid "Overview"
msgstr "Visión general"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -511,11 +566,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -523,7 +578,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -548,7 +603,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -560,27 +615,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -595,6 +654,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -603,7 +670,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -709,7 +776,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -731,13 +798,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr "Registro de depuración detallado"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -745,6 +812,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/fi/banip.po b/applications/luci-app-banip/po/fi/banip.po
index ee7ce4e1c4..9ef4ff0956 100644
--- a/applications/luci-app-banip/po/fi/banip.po
+++ b/applications/luci-app-banip/po/fi/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.2-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Lataustyökalu"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr "Yleiskatsaus"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/fr/banip.po b/applications/luci-app-banip/po/fr/banip.po
index 4c2b07fb59..af39f2aba7 100644
--- a/applications/luci-app-banip/po/fr/banip.po
+++ b/applications/luci-app-banip/po/fr/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.2-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -69,7 +104,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -77,17 +112,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -104,6 +139,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -148,15 +187,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -164,23 +203,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -202,7 +241,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Télécharger l'utilitaire"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -210,7 +249,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -218,11 +257,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -277,6 +316,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -330,13 +373,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -352,14 +395,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -372,7 +419,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -380,7 +431,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -399,6 +450,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -454,11 +509,11 @@ msgstr ""
msgid "Overview"
msgstr "Vue d’ensemble"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -507,11 +562,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -519,7 +574,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -544,7 +599,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -556,27 +611,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -591,6 +650,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -599,7 +666,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -705,7 +772,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -727,13 +794,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr "Logs en mode verbeux"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -741,6 +808,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/he/banip.po b/applications/luci-app-banip/po/he/banip.po
index dfc5301b92..725a671f96 100644
--- a/applications/luci-app-banip/po/he/banip.po
+++ b/applications/luci-app-banip/po/he/banip.po
@@ -11,12 +11,42 @@ msgstr ""
"n % 10 == 0) ? 2 : 3));\n"
"X-Generator: Weblate 4.5-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -44,6 +74,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -68,7 +103,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -76,17 +111,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -103,6 +138,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -147,15 +186,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -163,23 +202,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -201,7 +240,7 @@ msgstr ""
msgid "Download Utility"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -209,7 +248,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -217,11 +256,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -276,6 +315,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -329,13 +372,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -351,14 +394,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -371,7 +418,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -379,7 +430,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -398,6 +449,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -453,11 +508,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -506,11 +561,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -518,7 +573,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -543,7 +598,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -555,27 +610,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -590,6 +649,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -598,7 +665,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -703,7 +770,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -725,13 +792,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -739,6 +806,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/hi/banip.po b/applications/luci-app-banip/po/hi/banip.po
index 7c1b141716..df930ded56 100644
--- a/applications/luci-app-banip/po/hi/banip.po
+++ b/applications/luci-app-banip/po/hi/banip.po
@@ -4,12 +4,42 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -37,6 +67,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -61,7 +96,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -69,17 +104,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -96,6 +131,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -140,15 +179,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -156,23 +195,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -194,7 +233,7 @@ msgstr ""
msgid "Download Utility"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -202,7 +241,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -210,11 +249,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -269,6 +308,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -322,13 +365,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -344,14 +387,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -364,7 +411,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -372,7 +423,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -391,6 +442,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -446,11 +501,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -499,11 +554,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -511,7 +566,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -536,7 +591,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -548,27 +603,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -583,6 +642,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -591,7 +658,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -696,7 +763,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -718,13 +785,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -732,6 +799,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/hu/banip.po b/applications/luci-app-banip/po/hu/banip.po
index e1132d20f4..3f28a20f58 100644
--- a/applications/luci-app-banip/po/hu/banip.po
+++ b/applications/luci-app-banip/po/hu/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.0-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -69,7 +104,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -77,17 +112,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -104,6 +139,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -148,15 +187,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -164,23 +203,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -202,7 +241,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Letöltési segédprogram"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -210,7 +249,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -218,11 +257,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -277,6 +316,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -330,13 +373,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -352,14 +395,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -372,7 +419,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -380,7 +431,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -399,6 +450,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -454,11 +509,11 @@ msgstr ""
msgid "Overview"
msgstr "Áttekintés"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -507,11 +562,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -519,7 +574,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -544,7 +599,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -556,27 +611,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -591,6 +650,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -599,7 +666,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -706,7 +773,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -728,13 +795,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr "Részletes hibakeresési naplózás"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -742,6 +809,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/it/banip.po b/applications/luci-app-banip/po/it/banip.po
index 2e99fcc521..6118e5ff6d 100644
--- a/applications/luci-app-banip/po/it/banip.po
+++ b/applications/luci-app-banip/po/it/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.4-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Utilità di Scaricamento"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/ja/banip.po b/applications/luci-app-banip/po/ja/banip.po
index 181851cc8d..136c0a7c12 100644
--- a/applications/luci-app-banip/po/ja/banip.po
+++ b/applications/luci-app-banip/po/ja/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.4-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr "ダウンロードユーティリティ"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr "概要"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr "詳細なデバッグ ログ"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/ko/banip.po b/applications/luci-app-banip/po/ko/banip.po
index 532c6665c3..3632fe0c2b 100644
--- a/applications/luci-app-banip/po/ko/banip.po
+++ b/applications/luci-app-banip/po/ko/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.5-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -103,6 +138,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -147,15 +186,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -163,23 +202,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -201,7 +240,7 @@ msgstr ""
msgid "Download Utility"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -209,7 +248,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -217,11 +256,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -276,6 +315,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -329,13 +372,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -351,14 +394,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -371,7 +418,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -379,7 +430,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -398,6 +449,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -453,11 +508,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -506,11 +561,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -518,7 +573,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -543,7 +598,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -555,27 +610,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -590,6 +649,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -598,7 +665,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -703,7 +770,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -725,13 +792,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -739,6 +806,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/mr/banip.po b/applications/luci-app-banip/po/mr/banip.po
index f8b27d8b67..5357324dbb 100644
--- a/applications/luci-app-banip/po/mr/banip.po
+++ b/applications/luci-app-banip/po/mr/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr "आढावा"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/ms/banip.po b/applications/luci-app-banip/po/ms/banip.po
index b4bf75e682..cba25446f5 100644
--- a/applications/luci-app-banip/po/ms/banip.po
+++ b/applications/luci-app-banip/po/ms/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.10-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/nb_NO/banip.po b/applications/luci-app-banip/po/nb_NO/banip.po
index 5d65e3edf1..02a6c00e2d 100644
--- a/applications/luci-app-banip/po/nb_NO/banip.po
+++ b/applications/luci-app-banip/po/nb_NO/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.4-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Nedlastingsverktøy"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr "Oversikt"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/pl/banip.po b/applications/luci-app-banip/po/pl/banip.po
index 92e7435d8f..0312a5771c 100644
--- a/applications/luci-app-banip/po/pl/banip.po
+++ b/applications/luci-app-banip/po/pl/banip.po
@@ -11,12 +11,42 @@ msgstr ""
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.2-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -44,6 +74,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -70,7 +105,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -78,17 +113,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -105,6 +140,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -149,15 +188,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -165,23 +204,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -203,7 +242,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Narzędzie pobierania"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -211,7 +250,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -219,11 +258,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -278,6 +317,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -331,13 +374,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -353,14 +396,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -373,7 +420,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -381,7 +432,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -400,6 +451,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -455,11 +510,11 @@ msgstr ""
msgid "Overview"
msgstr "Przegląd"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -508,11 +563,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -520,7 +575,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -545,7 +600,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -557,27 +612,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -592,6 +651,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -600,7 +667,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -707,7 +774,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -729,13 +796,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr "Pełne rejestrowanie debugowania"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -743,6 +810,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/pt/banip.po b/applications/luci-app-banip/po/pt/banip.po
index 172f15f541..a12fc7cc35 100644
--- a/applications/luci-app-banip/po/pt/banip.po
+++ b/applications/luci-app-banip/po/pt/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.3-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -69,7 +104,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -77,17 +112,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -104,6 +139,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -148,15 +187,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -164,23 +203,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -202,7 +241,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Ferramenta para Descarregar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -210,7 +249,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -218,11 +257,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -277,6 +316,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -330,13 +373,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -352,14 +395,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -372,7 +419,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -380,7 +431,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -399,6 +450,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -454,11 +509,11 @@ msgstr ""
msgid "Overview"
msgstr "Visão Geral"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -507,11 +562,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -519,7 +574,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -544,7 +599,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -556,27 +611,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -591,6 +650,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -599,7 +666,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -705,7 +772,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -727,13 +794,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr "Registos detalhados de depuração"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -741,6 +808,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/pt_BR/banip.po b/applications/luci-app-banip/po/pt_BR/banip.po
index 72bcb332f4..b4b84dfbff 100644
--- a/applications/luci-app-banip/po/pt_BR/banip.po
+++ b/applications/luci-app-banip/po/pt_BR/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.5-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr "Fontes Ativas"
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -69,7 +104,7 @@ msgstr "Configurações Avançadas do E-Mail"
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -77,17 +112,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -104,6 +139,10 @@ msgstr "Diretório Base Temporário"
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -148,15 +187,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -164,23 +203,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -202,7 +241,7 @@ msgstr "Fila de Download"
msgid "Download Utility"
msgstr "Ferramenta para Baixar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -210,7 +249,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr "Notificação por E-Mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr "E-Mail do Perfil"
@@ -218,11 +257,11 @@ msgstr "E-Mail do Perfil"
msgid "E-Mail Receiver Address"
msgstr "Endereço de E-Mail do Destinatário"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr "Endereço de E-Mail do Remetente"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr "Assunto do E-Mail"
@@ -279,6 +318,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr "Tarefa(s) existente(s)"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr "Configurações Gerais"
@@ -332,13 +375,13 @@ msgstr "Suporte ao IPv6"
msgid "Information"
msgstr "Informações"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -354,14 +397,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -374,7 +421,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr "Lista de ferramentas compatíveis e já pré-configuradas para download."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -382,7 +433,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -401,6 +452,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -456,11 +511,11 @@ msgstr ""
msgid "Overview"
msgstr "Visão Geral"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -509,11 +564,11 @@ msgstr "Executar Flags"
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -521,7 +576,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -546,7 +601,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -558,27 +613,31 @@ msgstr "Prioridade do serviço"
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -593,6 +652,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr "Configurações"
@@ -601,7 +668,7 @@ msgstr "Configurações"
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -709,7 +776,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -731,13 +798,13 @@ msgstr "Impossível salvar as modificações: %s"
msgid "Verbose Debug Logging"
msgstr "Registros Detalhados de Depuração"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -745,6 +812,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/ro/banip.po b/applications/luci-app-banip/po/ro/banip.po
index 41a56a3def..21b0f024de 100644
--- a/applications/luci-app-banip/po/ro/banip.po
+++ b/applications/luci-app-banip/po/ro/banip.po
@@ -11,12 +11,42 @@ msgstr ""
"20)) ? 1 : 2;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -44,6 +74,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -70,7 +105,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -78,17 +113,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -105,6 +140,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -149,15 +188,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -165,23 +204,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -203,7 +242,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Utilitar descărcare"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -211,7 +250,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -219,11 +258,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -278,6 +317,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -331,13 +374,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -353,14 +396,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -373,7 +420,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -381,7 +432,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -400,6 +451,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -455,11 +510,11 @@ msgstr ""
msgid "Overview"
msgstr "Prezentare generală"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -508,11 +563,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -520,7 +575,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -545,7 +600,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -557,27 +612,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -592,6 +651,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -600,7 +667,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -705,7 +772,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -727,13 +794,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -741,6 +808,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/ru/banip.po b/applications/luci-app-banip/po/ru/banip.po
index c9685fd06a..ed219b300a 100644
--- a/applications/luci-app-banip/po/ru/banip.po
+++ b/applications/luci-app-banip/po/ru/banip.po
@@ -11,12 +11,42 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.4.1-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -44,6 +74,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -68,7 +103,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -76,17 +111,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -103,6 +138,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -147,15 +186,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -163,23 +202,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -201,7 +240,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Утилита для загрузки"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -209,7 +248,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -217,11 +256,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -276,6 +315,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -329,13 +372,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -351,14 +394,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -371,7 +418,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -379,7 +430,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -398,6 +449,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -453,11 +508,11 @@ msgstr ""
msgid "Overview"
msgstr "Обзор"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -506,11 +561,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -518,7 +573,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -543,7 +598,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -555,27 +610,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -590,6 +649,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -598,7 +665,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -703,7 +770,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -725,13 +792,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr "Подробный журнал отладки"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -739,6 +806,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/sk/banip.po b/applications/luci-app-banip/po/sk/banip.po
index ee87c805b3..d86396a511 100644
--- a/applications/luci-app-banip/po/sk/banip.po
+++ b/applications/luci-app-banip/po/sk/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.0-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Nástroj na sťahovanie"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr "Prehľad"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/sv/banip.po b/applications/luci-app-banip/po/sv/banip.po
index 46bdd03f42..3d9e2194d3 100644
--- a/applications/luci-app-banip/po/sv/banip.po
+++ b/applications/luci-app-banip/po/sv/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.2.1-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr "Ladda ner verktyget"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr "Översikt"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/templates/banip.pot b/applications/luci-app-banip/po/templates/banip.pot
index a567f9e120..02f647ab1c 100644
--- a/applications/luci-app-banip/po/templates/banip.pot
+++ b/applications/luci-app-banip/po/templates/banip.pot
@@ -1,12 +1,42 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -34,6 +64,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -58,7 +93,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -66,17 +101,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -93,6 +128,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -137,15 +176,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -153,23 +192,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -191,7 +230,7 @@ msgstr ""
msgid "Download Utility"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -199,7 +238,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -207,11 +246,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -266,6 +305,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -319,13 +362,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -341,14 +384,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -361,7 +408,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -369,7 +420,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -388,6 +439,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -443,11 +498,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -496,11 +551,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -508,7 +563,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -533,7 +588,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -545,27 +600,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -580,6 +639,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -588,7 +655,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -693,7 +760,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -715,13 +782,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -729,6 +796,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/tr/banip.po b/applications/luci-app-banip/po/tr/banip.po
index 2a44cdf5d8..405933b881 100644
--- a/applications/luci-app-banip/po/tr/banip.po
+++ b/applications/luci-app-banip/po/tr/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.5-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr "İndirme Aracı"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr "Genel bakış"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/uk/banip.po b/applications/luci-app-banip/po/uk/banip.po
index 1c80aa5a34..a0ca38b439 100644
--- a/applications/luci-app-banip/po/uk/banip.po
+++ b/applications/luci-app-banip/po/uk/banip.po
@@ -11,12 +11,42 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.3-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -44,6 +74,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -68,7 +103,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -76,17 +111,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -103,6 +138,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -147,15 +186,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -163,23 +202,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -201,7 +240,7 @@ msgstr ""
msgid "Download Utility"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -209,7 +248,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -217,11 +256,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -276,6 +315,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -329,13 +372,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -351,14 +394,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -371,7 +418,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -379,7 +430,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -398,6 +449,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -453,11 +508,11 @@ msgstr ""
msgid "Overview"
msgstr "Огляд"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -506,11 +561,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -518,7 +573,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -543,7 +598,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -555,27 +610,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -590,6 +649,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -598,7 +665,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -703,7 +770,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -725,13 +792,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -739,6 +806,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/vi/banip.po b/applications/luci-app-banip/po/vi/banip.po
index 35efea28f8..30a1dcd8ce 100644
--- a/applications/luci-app-banip/po/vi/banip.po
+++ b/applications/luci-app-banip/po/vi/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.10-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -725,13 +792,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr "Nhật ký gỡ lỗi khởi động"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -739,6 +806,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/zh_Hans/banip.po b/applications/luci-app-banip/po/zh_Hans/banip.po
index 6c3dca5826..6dc02b4a21 100644
--- a/applications/luci-app-banip/po/zh_Hans/banip.po
+++ b/applications/luci-app-banip/po/zh_Hans/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.5-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr "高级设置-邮箱"
msgid "Advanced Log Settings"
msgstr "高级设置-日志"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr "自动 黑名单"
@@ -75,17 +110,17 @@ msgstr "自动 黑名单"
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr "自动 白名单"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr "基本缓存文件夹"
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr "下载工具"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr "概览"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr "详细的调试记录"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""
diff --git a/applications/luci-app-banip/po/zh_Hant/banip.po b/applications/luci-app-banip/po/zh_Hant/banip.po
index 8b6bc46e16..7bcbcb2769 100644
--- a/applications/luci-app-banip/po/zh_Hant/banip.po
+++ b/applications/luci-app-banip/po/zh_Hant/banip.po
@@ -10,12 +10,42 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.5-dev\n"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "-m limit --limit 2/sec (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:515
+msgid "1 hour"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
+msgid "12 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+msgid "24 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+msgid "30 minutes"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+msgid "6 hours"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:772
msgid "ASNs"
msgstr ""
@@ -43,6 +73,11 @@ msgstr ""
msgid "Active Subnets"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid ""
+"Add additional, non-banIP related IPSets e.g. for reporting and queries."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12
msgid "Add this IP/CIDR to your local whitelist."
msgstr ""
@@ -67,7 +102,7 @@ msgstr ""
msgid "Advanced Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid "Auto Blacklist"
msgstr ""
@@ -75,17 +110,17 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid "Auto Whitelist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793
msgid ""
"Automatically transfers suspicious IPs from the log to the banIP blacklist "
"during runtime."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:796
msgid ""
"Automatically transfers uplink IPs to the banIP whitelist during runtime."
msgstr ""
@@ -102,6 +137,10 @@ msgstr ""
msgid "Base Temp Directory used for all banIP related runtime operations."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Blacklist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
msgid ""
"Blacklist changes have been saved. Refresh your banIP lists that changes "
@@ -146,15 +185,15 @@ msgstr ""
msgid "Count SUM"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759
msgid "Countries"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "DST IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "DST Log Options"
msgstr ""
@@ -162,23 +201,23 @@ msgstr ""
msgid "DST Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "Default chain used by banIP is 'forwarding_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "Default chain used by banIP is 'forwarding_wan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Default chain used by banIP is 'input_lan_rule'"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "Default chain used by banIP is 'input_wan_rule'"
msgstr ""
@@ -200,7 +239,7 @@ msgstr ""
msgid "Download Utility"
msgstr "下載工具"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "E-Mail Actions"
msgstr ""
@@ -208,7 +247,7 @@ msgstr ""
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "E-Mail Profile"
msgstr ""
@@ -216,11 +255,11 @@ msgstr ""
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "E-Mail Sender Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "E-Mail Topic"
msgstr ""
@@ -275,6 +314,10 @@ msgstr ""
msgid "Existing job(s)"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:788
+msgid "Extra Sources"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
msgid "General Settings"
msgstr ""
@@ -328,13 +371,13 @@ msgstr ""
msgid "Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636
msgid "LAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "LAN Input"
msgstr ""
@@ -350,14 +393,18 @@ msgstr ""
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
msgid "Limit E-Mail trigger to certain banIP actions."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Limit the log monitor to certain log terms."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Limit the selection to certain local sources."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66
msgid "Line number to remove"
msgstr ""
@@ -370,7 +417,11 @@ msgstr ""
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:781
+msgid "Local Sources"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Log Limit"
msgstr ""
@@ -378,7 +429,7 @@ msgstr ""
msgid "Log Monitor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "Log Terms"
msgstr ""
@@ -397,6 +448,10 @@ msgid ""
"cause an increase in latency due to it requiring additional system resources."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Maclist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15
msgid ""
"Maclist changes have been saved. Refresh your banIP lists that changes take "
@@ -452,11 +507,11 @@ msgstr ""
msgid "Overview"
msgstr "概覽"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:676
msgid "Parse only the last stated number of log entries for suspicious events."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:717
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
@@ -505,11 +560,11 @@ msgstr ""
msgid "Run Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "SRC IPSet Type"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "SRC Log Options"
msgstr ""
@@ -517,7 +572,7 @@ msgstr ""
msgid "SRC Target"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "SRC+DST IPSet Type"
msgstr ""
@@ -542,7 +597,7 @@ msgid ""
"setup of the additional 'msmtp' package."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@@ -554,27 +609,31 @@ msgstr ""
msgid "Set a new banIP job"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:537
msgid "Set individual DST type per IPset to block only outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Set individual SRC type per IPset to block only incoming packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid ""
"Set individual SRC+DST type per IPset to block incoming and outgoing packets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698
msgid "Set special DST log options, e.g. to set a limit rate."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "Set special SRC log options, e.g. to set a limit rate."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
+msgid "Set the blacklist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "Set the firewall target for all DST related rules."
msgstr ""
@@ -589,6 +648,14 @@ msgid ""
"(DST) packets."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+msgid "Set the maclist IPSet timeout."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Set the whitelist IPSet timeout."
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "Settings"
msgstr ""
@@ -597,7 +664,7 @@ msgstr ""
msgid "Size of the download queue for download processing in parallel."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Sources (Info)"
msgstr ""
@@ -702,7 +769,7 @@ msgid ""
"job for these lists."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "Topic for banIP notification E-Mails."
msgstr ""
@@ -724,13 +791,13 @@ msgstr ""
msgid "Verbose Debug Logging"
msgstr "詳細除錯日誌"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:658
msgid "WAN Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:599
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid "WAN Input"
msgstr ""
@@ -738,6 +805,10 @@ msgstr ""
msgid "Whitelist IP/CIDR"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
+msgid "Whitelist Timeout"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15
msgid ""