luci-app-nft-qos: support mac address based speed limit 4351/head
authorTong Zhang <ztong0001@gmail.com>
Wed, 12 Aug 2020 23:40:05 +0000 (19:40 -0400)
committerTong Zhang <ztong0001@gmail.com>
Mon, 31 Aug 2020 17:09:32 +0000 (13:09 -0400)
Signed-off-by: Tong Zhang <ztong0001@gmail.com>
applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua

index 6f67a6110be7b3a86074b68b37a43d22ca960e57..898cfd1e437c938a64be6496a6b087735b83c024 100644 (file)
@@ -15,6 +15,7 @@ local def_up = uci:get("nft-qos", "default", "dynamic_bw_up")
 local def_down = uci:get("nft-qos", "default", "dynamic_bw_down")
 
 local limit_enable = uci:get("nft-qos", "default", "limit_enable")
+local limit_mac_enable = uci:get("nft-qos", "default", "limit_mac_enable")
 local limit_type = uci:get("nft-qos", "default", "limit_type")
 local enable_priority = uci:get("nft-qos", "default", "priority_enable")
 
@@ -29,7 +30,8 @@ s = m:section(TypedSection, "default", translate("NFT-QoS Settings"))
 s.addremove = false
 s.anonymous = true
 
-s:tab("limit", "Limit Rate")
+s:tab("limit", "Limit Rate by IP Address")
+s:tab("limitmac", "Limit Rate by Mac Address")
 s:tab("priority", "Traffic Priority")
 
 --
@@ -132,10 +134,6 @@ if nixio.fs.access("/tmp/dhcp.leases") or nixio.fs.access("/var/dhcp6.leases") t
        o.titleref = luci.dispatcher.build_url("admin", "status", "overview")
 end
 
-o = x:option(Value, "macaddr", translate("MAC (optional)"))
-o.rmempty = true
-o.datatype = "macaddr"
-
 o = x:option(Value, "rate", translate("Rate"))
 o.default = def_rate_dl or '50'
 o.size = 4
@@ -226,4 +224,53 @@ o.default = '?'
 
 end
 
+--
+-- limit speed by mac address
+--
+o = s:taboption("limitmac", Flag, "limit_mac_enable", translate("Limit Enable"), translate("Enable Limit Rate Feature"))
+o.default = limit_mac_enable or o.enabled
+o.rmempty = false
+
+--
+-- Static By Mac Address
+--
+if limit_mac_enable == "1" then
+
+       x = m:section(TypedSection, "client", translate("Limit Traffic Rate By Mac Address"))
+       x.anonymous = true
+       x.addremove = true
+       x.template = "cbi/tblsection"
+
+       o = x:option(Value, "hostname", translate("Hostname"))
+       o.datatype = "hostname"
+       o.default = ''
+
+       o = x:option(Value, "macaddr", translate("MAC Address"))
+       o.rmempty = true
+       o.datatype = "macaddr"
+
+       o = x:option(Value, "drate", translate("Download Rate"))
+       o.default = def_rate_dl or '50'
+       o.size = 4
+       o.datatype = "uinteger"
+
+       o = x:option(ListValue, "drunit", translate("Unit"))
+       o.default = def_unit_dl or "kbytes"
+       o:value("bytes", "Bytes/s")
+       o:value("kbytes", "KBytes/s")
+       o:value("mbytes", "MBytes/s")
+
+       o = x:option(Value, "urate", translate("Upload Rate"))
+       o.default = def_rate_ul or '50'
+       o.size = 4
+       o.datatype = "uinteger"
+
+       o = x:option(ListValue, "urunit", translate("Unit"))
+       o.default = def_unit_ul or "kbytes"
+       o:value("bytes", "Bytes/s")
+       o:value("kbytes", "KBytes/s")
+       o:value("mbytes", "MBytes/s")
+
+end
+
 return m