fw_fw1 = 'Die Firewall erstellt Netzwerkzonen über bestimmte Netzwerkschnittstellen um den Netzverkehr zu trennen.'
fw_src = 'Quelle'
fw_dest = 'Ziel'
+fw_mtufix = 'MSS-Korrektur'
fw_traffic = 'Verkehrskontrolle'
firewall_rule_src = 'Eingangszone'
firewall_rule_dest = 'Ausgangszone'
firewall_redirect_destport_desc = 'Port od. Erster-Letzter Port'
firewall_redirect_srcip = 'Quelladresse'
firewall_redirect_srcmac = 'Quell-MAC-Adresse'
-fw_forwarding1 = 'An dieser Stelle kann festgelegt zwischen welchen Zonen Netzverkehr hin und her fließen kann. Es werden nur neue Verbindungen betrachtet. Pakete, die zu bereits bestehenden Verbindungen gehören werden automatisch akzeptiert.'
+fw_forwarding1 = 'An dieser Stelle kann festgelegt zwischen welchen Zonen Netzverkehr hin und her fließen kann. Es werden nur neue Verbindungen betrachtet. Pakete, die zu bereits bestehenden Verbindungen gehören werden automatisch akzeptiert. Bei gelegentlich auftretenden Verbindungsproblemen kann eine MSS-Korrektur helfen, ansonsten sollte dies aus Performancegründen deaktiviert bleiben.'
firewall_forwarding_src = 'Eingang'
firewall_forwarding_dest = 'Ausgang'
firewall_defaults = 'Grundeinstellungen'
firewall_zone_forward_desc = 'Standardaktion'
firewall_zone_masq = 'MASQ'
firewall_zone_network = 'Netzwerke'
-firewall_zone_network_desc = 'verbundene Netzwerke'
+firewall_zone_network_desc = 'verbundene Netzwerke'
\ No newline at end of file
fw_drop = 'drop'
fw_src = 'Source'
fw_dest = 'Destination'
+fw_mtufix = 'MSS-Correction'
fw_traffic = 'Traffic Control'
fw_portfw1 = 'Port forwarding allows to provide network services in the internal network to an external network.'
firewall_redirect_src_desc = 'External Zone'
firewall_redirect_destip_desc = 'IP-Address'
firewall_redirect_destport = 'Internal port (optional)'
firewall_redirect_destport_desc = 'port or range as first-last'
-fw_forwarding1 = 'Here you can specify which network traffic is allowed to flow between network zones. Only new connections will be matched. Packets belonging to already open connections are automatically allowed to pass the firewall.'
+fw_forwarding1 = 'Here you can specify which network traffic is allowed to flow between network zones. Only new connections will be matched. Packets belonging to already open connections are automatically allowed to pass the firewall. If you experience occasional connection problems try enabling MSS-Correction otherwise disable it for performance resons.'
firewall_forwarding_src = 'Input'
firewall_forwarding_dest = 'Output'
firewall_defaults = 'Defaults'
iface = s:option(ListValue, "src", translate("fw_src"))
oface = s:option(ListValue, "dest", translate("fw_dest"))
+s:option(Flag, "mtu_fix", translate("fw_mtufix"))
luci.model.uci.cursor():foreach("firewall", "zone",
function (section)
include ../../build/config.mk
include ../../build/gccconfig.mk
-UCI_VERSION = 0.7.0
+UCI_VERSION = 0.7.1
UCI_SITE = http://mirror2.openwrt.org/sources
UCI_DIR = uci-$(UCI_VERSION)
UCI_FILE = $(UCI_DIR).tar.gz
option title 'Channel'
config variable
- option name 'mode'
+ option name 'hwmode'
option section 'wireless.wifi-device'
option title 'Mode (atheros)'
option type enum
list depends type=atheros
config enum
- option variable 'wireless.wifi-device.mode'
+ option variable 'wireless.wifi-device.hwmode'
option value ''
option title 'auto'
config enum
- option variable 'wireless.wifi-device.mode'
+ option variable 'wireless.wifi-device.hwmode'
option value '11b'
option title '802.11b'
config enum
- option variable 'wireless.wifi-device.mode'
+ option variable 'wireless.wifi-device.hwmode'
option value '11g'
option title '802.11g'
config enum
- option variable 'wireless.wifi-device.mode'
+ option variable 'wireless.wifi-device.hwmode'
option value '11a'
option title '802.11a'
config enum
- option variable 'wireless.wifi-device.mode'
+ option variable 'wireless.wifi-device.hwmode'
option value '11bg'
option title '802.11b+g'
config enum
- option variable 'wireless.wifi-device.mode'
+ option variable 'wireless.wifi-device.hwmode'
option value '11gdt'
option title '802.11adt'
config enum
- option variable 'wireless.wifi-device.mode'
+ option variable 'wireless.wifi-device.hwmode'
option value '11adt'
option title '802.11adt'
config enum
- option variable 'wireless.wifi-device.mode'
+ option variable 'wireless.wifi-device.hwmode'
option value 'fh'
option title 'Frequency Hopping'
------------------- Madwifi Device ------------------
if hwtype == "atheros" then
- mode = s:option(ListValue, "mode", translate("mode"))
+ mode = s:option(ListValue, "hwmode", translate("mode"))
mode:value("", translate("wifi_auto"))
mode:value("11b", "802.11b")
mode:value("11g", "802.11g")
local hwtype = m:get(wifidevs[1], "type")
if hwtype == "atheros" then
- mode = s:option(ListValue, "mode", translate("mode"))
+ mode = s:option(ListValue, "hwmode", translate("mode"))
mode.override_values = true
mode:value("", "auto")
mode:value("11b", "802.11b")