diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-04 18:05:59 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-04 18:05:59 +0000 |
commit | 523f70c927beeb85bb59d3410206f9f2c810a156 (patch) | |
tree | df9c5bd5b9fd3cf1c3c2c2775e3d7891bd849c37 /modules | |
parent | 1771b0c551fa192b6f3447a5a2114824ce5be21f (diff) |
modules/admin-full: allow mac filter only for ap mode interfaces
Diffstat (limited to 'modules')
-rw-r--r-- | modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua b/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua index 51b84df22..2ad3d5513 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua @@ -358,6 +358,8 @@ if hwtype == "mac80211" then s:taboption("advanced", Value, "rts", translate("RTS/CTS Threshold")) mp = s:taboption("macfilter", ListValue, "macfilter", translate("MAC-Address Filter")) + mp:depends({mode="ap"}) + mp:depends({mode="ap-wds"}) mp:value("", translate("disable")) mp:value("allow", translate("Allow listed only")) mp:value("deny", translate("Allow all except listed")) |