First cut at Getting Started page
[web.git] / docs / index.txt
1 ---
2 layout: default
3 title: Getting Started with LEDE
4 ---
5
6 == Getting Started with LEDE
7
8 LEDE is based on link:https://wiki.openwrt.org/doc/start[OpenWrt] — most of the operational aspects of the two projects are identical.
9 This document frequently refers to pages of the OpenWrt wiki.
10
11 Although there are many ways to install LEDE on your router and complete its initial configuration, the following steps are reliable:
12
13 . *Flash the LEDE firmware image into your router.* The exact process is device-specific.
14 Follow the OpenWrt links below to find the required information for your router:
15 .. *Find your router's architecture and processor types.*
16 The "Device Page" of the link:https://wiki.openwrt.org/toh/start[OpenWrt Table of Hardware] will contain this information.
17 .. *Download the proper LEDE firmware image to your computer* from link:https://downloads.lede-project.org/snapshots/targets/[downloads.lede-project.org.]
18 The directory structure for LEDE is identical to OpenWrt's downloads.
19 .. *Follow the flashing instructions* on the OpenWrt Device Page.
20 .. *Connect via Ethernet using DHCP.* After flashing, make sure your computer is connected to a Local Area Network (LAN) port of the router using DHCP.
21 . *SSH to the router.* +
22 In your terminal program, enter `ssh root@192.168.1.1`. You can follow along with the steps below in the link:transcript.html[SSH Transcript].
23 . *Set the password.* +
24 LEDE ships without a password. Enter `passwd` and type the new password twice.
25 _Note: Use a good password: it secures your home network.
26 Write it on the bottom of the router so you don't forget._
27 . *Connect the Wide Area Network (WAN) port of the router to "the internet".* +
28 The router WAN port defaults to DHCP, so you can usually connect the new WAN port into your existing router's LAN port. The new router should then be "on the air."
29 . *Confirm internet connectivity* +
30 Type `ping 8.8.8.8` (that is Google's DNS server.) If the previous step worked, you should see ping response messages.
31 . *Update the packages, then install the LuCI web configuration package.* +
32 We recommend the SSL-based package, but you could use the non-SSL version (named 'luci', not 'luci-ssl').
33 .. Enter `opkg update`
34 .. Enter `opkg install luci-ssl` to get the SSL-based web GUI.
35 . *At this point, the Web GUI is available.* +
36 Go to https://192.168.1.1 to complete configuration.
37
38 == Next Steps
39
40 * Review the link:transcript.html[SSH Transcript] to see all the configuration messages above.
41 * Enable Wi-Fi in the router (LEDE ships with Wi-Fi turned off). See *Network -> Wireless* in the Web GUI.
42 * Install other packages with `opkg install ...` Useful packages are snmpd, netperf, luci-app-sqm, and any of your favorites.