Version 4 (modified by 7 hours ago) ( diff ) | ,
---|
LuCI Web Admin
OpenWrt has its own web admin GUI called LuCI which is installed by default on Gateworks OpenWrt pre-built firmware images. This is written in LUA and uses uHTTPd.
References:
* http://wiki.openwrt.org/doc/howto/luci.essentials * http://wiki.openwrt.org/doc/techref/luci
Accessing the Web Interface
To access the LuCI Web Admin:
- Change the IP address of the computer that will be used to access the board. It should be changed to an address in the same subnet as the board. By default the boards are 192.168.1.1/255.255.255.0. For example:
ifconfig eth0 192.168.1.1 netmask 255.255.255.0
- Connect the computer to the board through the Ethernet 0 interface.
- Open a browser and enter the board's IP address (192.168.1.1) into the address bar.
- Click on the System tab, then the Administration tab.
- Create a Password and click on Save & Apply at the bottom of the screen. The board can now also be accessed through SSH if desired.
Troubleshooting
The Venice GW7100 is unique in that it only has one ethernet port.
On a Venice GW7200, one ethernet port is the LAN and one is the WAN.
Only the LAN can access the webgui.
OpenWrt 24.10 puts the GW7100 eth0 into WAN by default, thus the firewall is blocking any gui request.
Try disabling the firewall via command line first for a test and then adjust accordingly (meaning place GW7100 eth0 into a LAN if desired rather than WAN using the /etc/config/network file).
root@OpenWrt:~# uci show firewall | grep 80 firewall.@rule[4].src_ip='fe80::/10' root@OpenWrt:~# /etc/init.d/firewall status active with no instances root@OpenWrt:~# /etc/init.d/firewall stop root@OpenWrt:~# /etc/init.d/firewall status inactive