User:Saul/Open WRT

From Organic Design wiki
< User:Saul
Revision as of 05:33, 20 February 2020 by Saul (talk | contribs) (Created page for my documentation on setting up Open WRT on the Pi.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Setup Network Via SSH

When compiling Open WRT from source it may have no internet connectivity and the interface (LuCI) may not be installed.
Following the instructions from Open WRT's Docs we can connect via SSH: <source lang="bash"> uci set network.lan.ipaddr='192.168.2.200' # static address for this device uci set network.lan.gateway='192.168.2.1' # Router ip uci set network.lan.dns='192.168.2.1' # router dns or provider uci commit service network restart <source> Then LuCI can be installed. <source lang="bash"> opkg update opkg install luci <source>