diff options
author | Martijn Staal <27222398+mastaal@users.noreply.github.com> | 2023-01-20 11:41:53 +0100 |
---|---|---|
committer | Martijn Staal <27222398+mastaal@users.noreply.github.com> | 2023-02-04 13:40:12 +0100 |
commit | c54efde71718f6a05b7832f5092e7a7da83d22eb (patch) | |
tree | 75215b752245ac7d103e454393cb4dfe7e544ded /applications/luci-app-firewall/htdocs/luci-static/resources | |
parent | 7550ad69aff5e57718ee9bc33a2078eccd13fc7c (diff) |
luci-app-firewall: Add clarification to masquerading option
Signed-off-by: Martijn Staal <27222398+mastaal@users.noreply.github.com>
Diffstat (limited to 'applications/luci-app-firewall/htdocs/luci-static/resources')
-rw-r--r-- | applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js index 58cd2a7c1e..53a07b6fb1 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js @@ -156,7 +156,8 @@ return view.extend({ p[1].default = fwDefaults.getOutput(); p[2].default = fwDefaults.getForward(); - o = s.taboption('general', form.Flag, 'masq', _('Masquerading')); + o = s.taboption('general', form.Flag, 'masq', _('Masquerading'), + _('Enable network address and port translation (NAT or NAPT) for outbound traffic on this zone. This is typically enabled on the <em>wan</em> zone.')); o.editable = true; o.tooltip = function(section_id) { var masq_src = uci.get('firewall', section_id, 'masq_src') |