mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-31 20:11:29 +08:00
15 lines
336 B
Lua
Executable File
15 lines
336 B
Lua
Executable File
--[[
|
|
静态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
|