您的位置:首页 > 运维架构

OPENWRT 入门( opkg, uci, luci )

2015-08-27 11:06 344 查看
 目錄:

安裝

Download

First Login

UCI (Unified Configuration Interface)

SSH(Dropbear)

uHTTPd

OPKG(Package Manager)

救機(password reset)

系統升級

mtd (Memory Technology Device)

LuCI

version

 

 

安裝

 

如果 Hardware 的版本與 firmware 版本不同, 千萬不要硬上 !!

因為變磚了就煩了 ..

 

查看 Hardware 的版本:



 

 

Download

下載: http://downloads.openwrt.org/snapshots/trunk/ar71xx/

openwrt--generic--<硬件版本>-<格式>-<用圖>

Example:

openwrt-ar71xx-generic-tl-wr740n-v1-squashfs-factory.bin

openwrt-ar71xx-generic-tl-wr740n-v1-jffs2-factory.bin

openwrt-ar71xx-generic-tl-wr740n-v1-squashfs-sysupgrade.bin

openwrt-ar71xx-generic-tl-wr740n-v1-jffs2-sysupgrade.bin

 

Firmware 常見的3種格式 TRX, TRX2, BIN

 

 

First Login:

 

當 router  安裝完 openwrt 後, 它只有 telnet 被啟動,

只有設置好root 的 pw 後, 我們才可以 ssh 它 ~

首先我們要 telnet 入去 router

telnet 192.168.1.1

設定它的 password

passwd

 

UCI (Unified Configuration Interface)

 

uci 是 openwrt 的中央設定工具, 我們可以透過它設定 router 上的一切一切

Default 是有安裝的, 除非人手刪了~

所需的packages:

uci(/sbin/uci)

libuci(/lib/libuci.so )

所有設定值保存放在

/etc/config/xxx

常用 config file:

/etc/config/dhcp

/etc/config/dropbear

/etc/config/firewall

/etc/config/network

/etc/config/system

/etc/config/timeserver

/etc/config/wireless

格式:
package 'example'

config 'example' 'test'
option   'string'      'some value'
option   'boolean'     '1'
list     'collection'  'first item'
list     'collection'  'second item'


 

Usage: uci [arguments]

 

command:

commit 把修改設定值寫入 flash, 並且套用(包括 uci 及 人手修改)

show [[.
[.
转自 :http://blog.chinaunix.net/uid-26675482-id-4634216.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  OPENWRT