Guest User

Raspberry Pi WiFi repeater with TP link tl-wn8200nd

a guest
Aug 9th, 2020
1,217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. # do the below over ethernet
  2. sudo raspi-config
  3. #set country and sane network names
  4. sudo reboot
  5. sudo apt-get update
  6. sudo apt-get upgrade -y
  7. sudo apt-get dist-upgrade
  8. sudo reboot
  9. sudo wget http://downloads.fars-robotics.net/wifi-drivers/install-wifi -O /usr/bin/install-wifi
  10. sudo chmod +x /usr/bin/install-wifi
  11. sudo install-wifi
  12. sudo reboot
  13. curl -sL https://install.raspap.com | bash
  14. sudo reboot
  15. # log in to raspberrypi.local or whatever the hostname is
  16. # change admin console password from "secret"
  17. # in hotspot settings set interface (likely will need to use long device name, NOT wlan1), SSID, and password. save settings
  18. # in advanced hotspot settings set max clients and locale
  19. # start hotspot
  20. # connect client wifi (should be built in wlan0)
  21. # confirm that hotspot is running over usb wifi interface and client is running on wlan0 internal adapter
  22. # in advanced hotspot settings turn on bridged AP mode, apply, and then turn it back off and apply
  23. # over SSH or with the built in web console nano /etc/systemd/network/raspap-br0-member-eth0.network
  24. # change eth0 to wlan0
  25. sudo reboot
  26. # connect to repeater network and test internet
Add Comment
Please, Sign In to add comment