Skip to content
Jo-Philipp Wich edited this page Jan 15, 2016 · 2 revisions

Installation

OpenWrt Feed

  1. Change to your OpenWRT buildroot
  2. Run ./scripts/feeds update
  3. Run ./scripts/feeds install -a -p luci
  4. Type make menuconfig
  5. You will find all components in the "LuCI" menu

OpenWrt Package Repository (OpenWrt Builds)

  • Add the a line like this to your /etc/opkg.conf to enable the openwrt package repository:
 src/gz luci https://downloads.openwrt.org/$release/$version/$target/packages/luci
  • Type opkg update
  • For the ui: opkg install luci
  • Any modules at your choice: opkg install luci-app-*
  • For HTTPS support install the luci-ssl meta package
Since opkg-installed services are disabled by default, you have to manually enable the web server to launch it on boot:
 root@OpenWrt:~# /etc/init.d/uhttpd enable
 root@OpenWrt:~# /etc/init.d/uhttpd start
Clone this wiki locally