luc-mod-admin-full: add igmp snooping option 1705/head
authorJaap Buurman <jaapbuurman@gmail.com>
Wed, 28 Mar 2018 13:41:45 +0000 (15:41 +0200)
committerJaap Buurman <jaapbuurman@gmail.com>
Wed, 28 Mar 2018 13:59:29 +0000 (15:59 +0200)
Signed-off-by: Jaap Buurman <jaapbuurman@gmail.com>
modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/ifaces.lua

index 8e7a3b0..38e5de7 100644 (file)
@@ -272,6 +272,11 @@ if not net:is_virtual() then
                translate("Enables the Spanning Tree Protocol on this bridge"))
        stp:depends("type", "bridge")
        stp.rmempty = true
                translate("Enables the Spanning Tree Protocol on this bridge"))
        stp:depends("type", "bridge")
        stp.rmempty = true
+
+       igmp = s:taboption("physical", Flag, "igmp_snooping", translate("Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> snooping"),
+               translate("Enables IGMP snooping on this bridge"))
+       igmp:depends("type", "bridge")
+       igmp.rmempty = true
 end
 
 
 end