diff options
author | Peter | 2022-10-24 17:29:04 +0100 |
---|---|---|
committer | Peter | 2022-10-24 17:29:04 +0100 |
commit | 6169c5ded128a1bc35e4372b9b1ec52ef5781188 (patch) | |
tree | 782fda70886c3e130b6f016d27b4314016d9556f /content/posts | |
parent | fdcc66e8a241fae468705a35ad1cb4bd1464b4ca (diff) | |
download | blog.minskio.co.uk-6169c5ded128a1bc35e4372b9b1ec52ef5781188.tar.gz blog.minskio.co.uk-6169c5ded128a1bc35e4372b9b1ec52ef5781188.tar.bz2 blog.minskio.co.uk-6169c5ded128a1bc35e4372b9b1ec52ef5781188.zip |
Typo fix
Diffstat (limited to 'content/posts')
-rw-r--r-- | content/posts/installing-openwrt-tl-wa801nd-v3.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/content/posts/installing-openwrt-tl-wa801nd-v3.md b/content/posts/installing-openwrt-tl-wa801nd-v3.md index 6771ade..a3b995c 100644 --- a/content/posts/installing-openwrt-tl-wa801nd-v3.md +++ b/content/posts/installing-openwrt-tl-wa801nd-v3.md @@ -27,7 +27,7 @@ First things first, you'll need the two binary installation files, [available he What I ended up needing to do now (as I needed Internet access for package management), was to set up the AP as a DHCP client using the following: ``` -uci set network.lan.proto=dhcp" +uci set network.lan.proto="dhcp" uci commit network /etc/init.d/network restart ``` @@ -37,4 +37,6 @@ With this done however you should be able to log back in using the IP given via You can now access this newly installed Web Interface and make any other changes you require. In my case, I just needed to edit and then enable the Wireless SSID under Network > Wireless. -With that complete, enjoy your new open source access point!
\ No newline at end of file +With that complete, enjoy your new open source access point! + +* **Edit 2022-10-08:** Missing quote in DHCP commands |