luci-app-firewall: add reflection_zone field to forwards openwrt-21.02
authorJulien Cassette <julien.cassette@gmail.com>
Wed, 12 Jul 2023 12:18:35 +0000 (14:18 +0200)
committerJo-Philipp Wich <jo@mein.io>
Thu, 27 Jul 2023 11:12:12 +0000 (13:12 +0200)
This allows to to define multiple zones for NAT reflection rules.

Fixes: #1560
Signed-off-by: Julien Cassette <julien.cassette@gmail.com>
(cherry picked from commit 3f20598acf57759aeda8ef5448e60f5a70e532f9)

applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js

index 114ff71e9ae36f7be429ab1d4debe8846162ebc5..f8240e13eb340fa3145872e98a86b5220c0217ed 100644 (file)
@@ -259,6 +259,12 @@ return view.extend({
                        uci.set('firewall', section_id, 'reflection_src', (value != 'internal') ? value : null);
                };
 
+               o = s.taboption('advanced', widgets.ZoneSelect, 'reflection_zone', _('Reflection zones'), _('Zones from which reflection rules shall be created. If unset, only the destination zone is used.'));
+               o.nocreate = true;
+               o.multiple = true;
+               o.modalonly = true;
+               o.depends('reflection', '1');
+
                o = s.taboption('advanced', form.Value, 'helper', _('Match helper'), _('Match traffic using the specified connection tracking helper.'));
                o.modalonly = true;
                o.placeholder = _('any');