mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
15 lines
336 B
Lua
15 lines
336 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
|