openwrt luci 관리 웹 인터페이스 인스턴스

3315 단어

template 방식으로 웹 페이지에 Hello World를 표시합니다


다음 그림은 다음과 같습니다.
1단계: /usr/lib/lua/luci/controller/admin/system.lua의 등록 옵션:
  entry({"admin, system", "test-template"}, template("test/hello"), _("test"), 3).dependent = false

2단계:view 디렉터리에 해당하는test/hello를 추가합니다.htm 파일:
root@OpenWrt:~# cat /usr/lib/lua/luci/view/test/hello.htm





3단계: 위 파일을 추가한 후 로그인 루트를 저장하면 결과를 볼 수 있습니다(때로는 로그아웃하고 로그인해야 할 수도 있습니다)

cbi 방식으로 IP 주소 설정


그림과 같이
1단계: /usr/lib/lua/luci/controller/admin/system.lua의 등록 옵션:
entry({"admin", "system", "test-cbi"}, cbi("admin_system/test"), _("test-cbi"), 4).dependent = false

2단계:
root@OpenWrt:~# cat /usr/lib/lua/luci/model/cbi/admin_system/test.lua
m = Map("network", translate("Test Page by hades"), translate("On this page we can learn how the .lua work"))
m:chain(luci)

s = m:section(TypedSection, "netset", translate("Network Configuration"))
s.anonymous = true
s.addremove = true

s:tab("wan1", translate("Config wan1"))

ipaddr1 = s:taboption("wan1", Value, "ipaddr1", translate("address"))
ipaddr1.datatype = "ip4addr"

netmask1 = s:taboption("wan1", Value, "netmask1", translate("netmask"))
netmask1.datatype = "ip4addr"
netmask1:value("255.255.255.0")
netmask1:value("255.255.0.0")
netmask1:value("255.0.0.0")

gateway1 = s:taboption("wan1", Value, "gateway1", translate("gateway"))
gateway1.datatype = "ip4addr"

return m

3단계에서는/etc/config/network 파일 뒤에 다음을 추가합니다.
config netset

저장 후 로그인하여 IP 주소를 설정하고/etc/config/network 파일의 변화를 보십시오.
config netset
  option ipaddr1 '192.168.1.100'
  option netmask1 '255.255.255.0'
  option gateway1 '192.168.1.1'

좋은 웹페이지 즐겨찾기