diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2018-05-27 09:55:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-27 09:55:55 +0300 |
commit | aadc1f79c1c5d782ed243955cbe2c8a60eb2a2ca (patch) | |
tree | e2a738337fc31ee6263f9380dc51cf7a94877643 | |
parent | be6dff8f2aca8ee6cf63eaaaef378edf1ec1ab65 (diff) | |
parent | 177224c14a0f2787aed41fc38e5b6c11171feb9d (diff) |
Merge pull request #1826 from hnyman/offload
luci-app-firewall: expose flow offloading options
-rw-r--r-- | applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua b/applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua index 500e5078f4..2c5083a019 100644 --- a/applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua +++ b/applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua @@ -3,6 +3,7 @@ local ds = require "luci.dispatcher" local fw = require "luci.model.firewall" +local fs = require "nixio.fs" local m, s, o, p, i, v @@ -32,6 +33,28 @@ for i, v in ipairs(p) do v:value("ACCEPT", translate("accept")) end +-- Netfilter flow offload support + +local offload = fs.access("/sys/module/xt_FLOWOFFLOAD/refcnt") + +if offload then + s:option(DummyValue, "offload_advice", + translate("Routing/NAT Offloading"), + translate("Experimental feature. Not fully compatible with QoS/SQM.")) + + o = s:option(Flag, "flow_offloading", + translate("Software flow offloading"), + translate("Software based offloading for routing/NAT")) + o.optional = true + + o = s:option(Flag, "flow_offloading_hw", + translate("Hardware flow offloading"), + translate("Requires hardware NAT support. Implemented at least for mt7621")) + o.optional = true + o:depends( "flow_offloading", 1) +end + +-- Firewall zones s = m:section(TypedSection, "zone", translate("Zones")) s.template = "cbi/tblsection" |