diff options
author | Jonathan Bennett <jbennett@incomsystems.biz> | 2015-06-10 09:31:53 -0500 |
---|---|---|
committer | Jonathan Bennett <jbennett@incomsystems.biz> | 2015-06-10 16:10:56 -0500 |
commit | 9d69f61f4c1b46074205970774694e0f2d5ce88d (patch) | |
tree | 6b9cf451f9896e7cd20a1e3d082d84eea15087af /applications/luci-app-fwknopd/luasrc/model/cbi | |
parent | edf0f4f549983f93ee13223cf614393e7809cf49 (diff) |
Luci-app-fwknopd:add a couple config options to the interface
Minor tweaks to uci-defaults
refresh translation files
Signed-off-by: Jonathan Bennett <JBennett@incomsystems.biz>
Diffstat (limited to 'applications/luci-app-fwknopd/luasrc/model/cbi')
-rw-r--r-- | applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua b/applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua index 84a1a23d86..096724f735 100644 --- a/applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua +++ b/applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua @@ -46,6 +46,8 @@ s = m:section(TypedSection, "config", translate("fwknopd.conf config options")) s.anonymous=true s.dynamic=true s:option(Value, "MAX_SPA_PACKET_AGE", "MAX_SPA_PACKET_AGE", translate("Maximum age in seconds that an SPA packet will be accepted. defaults to 120 seconds")) +s:option(Value, "PCAP_INTF", "PCAP_INTF", translate("Specify the ethernet interface on which fwknopd will sniff packets.")) +s:option(Value, "ENABLE_IPT_FORWARDING", "ENABLE_IPT_FORWARDING", translate("Allow SPA clients to request access to services through an iptables firewall instead of just to it.")) s:option(DummyValue, "note2", translate("Enter custom fwknopd.conf variables below:")) return m |