Use your Raspberry Pi as a Wifi Extender Hotspot

Published: 22 May 2020
on channel: Make Tech Easier
48,168
682

The Raspberry Pi is a mini-computer of many purposes, and one of those is the ability to use it as a wireless access point, boosting WiFi signal in an area where it may otherwise be a bit choppy. Here’s how to turn your Raspberry Pi into a wireless access point.

Code Snippets:
sudo apt-get update
sudo apt-get upgrade
reboot
sudo apt install hostapd
sudo systemctl unmask hostapd
sudo systemctl enable hostapd
sudo apt install dnsmasq
sudo DEBIAN_FRONTEND=noninteractive apt install -y netfilter-persistent iptables-persistent
sudo nano /etc/dhcpcd.conf

interface wlan0
static ip_address=192.168.4.1/24
nohook wpa_supplicant

sudo nano /etc/sysctl.d/routed-ap.conf
sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
sudo netfilter-persistent save
sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
sudo nano /etc/dnsmasq.conf

interface=wlan0
dhcp-range=192.168.4.2,192.168.4.20,255.255.255.0,24h
domain=wlan
address=/gw.wlan/192.168.4.1
sudo nano /etc/hostapd/hostapd.conf
interface=wlan0
ssid=NetworkName
hw_mode=g
channel=7
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=2
wpa_passphrase=PassphrasePassphrase
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP

For more tech tips, how-tos, guides, app lists, game lists and all things tech, hit the ‘Subscribe’ button or check out our other videos:    / @maketecheasier  

Or visit our website at: https://www.maketecheasier.com/
Our Raspberry Pi articles in full: https://www.maketecheasier.com/tag/ra...


Watch video Use your Raspberry Pi as a Wifi Extender Hotspot online without registration, duration hours minute second in high quality. This video was added by user Make Tech Easier 22 May 2020, don't forget to share it with your friends and acquaintances, it has been viewed on our site 48,168 once and liked it 682 people.