mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
14 lines
335 B
Lua
14 lines
335 B
Lua
--[[
|
|
静态ARP绑定 Luci页面 Controller
|
|
Copyright (C) 2015 GuoGuo <gch981213@gmail.com>
|
|
]]--
|
|
|
|
module("luci.controller.arpbind", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/arpbind") then
|
|
return
|
|
end
|
|
entry({"admin", "network", "arpbind"}, cbi("arpbind"), _("IP/MAC Binding"), 45).dependent = true
|
|
end
|