Difference between revisions of "Raspberry Pi Wireless Access Point"
Jump to navigation
Jump to search
(Created page with "- https://core.docs.ubuntu.com/en/stacks/network/wifi-ap/docs/reference/configuration - https://core.docs.ubuntu.com/en/stacks/network/wifi-ap/docs/basic-ap-setup - https://w...") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
- https://www.raspberrypi.org/downloads/ | - https://www.raspberrypi.org/downloads/ | ||
− | - Insert sd card and select Ubuntu 20.04 | + | - Insert sd card and select Ubuntu 20.04 core or server depending |
``` | ``` | ||
Line 10: | Line 10: | ||
sudo snap install wifi-ap | sudo snap install wifi-ap | ||
sudo wifi-ap.config set disabled=false | sudo wifi-ap.config set disabled=false | ||
+ | sudo wifi-ap.config set wifi.security=wpa2 | ||
+ | sudo wifi-ap.config set wifi.security-passphrase=examplepass | ||
+ | sudo wifi-ap.config set wifi.ssid=examplessid | ||
+ | sudo apt-get install haveged -y # Increase entropy to avoid: WPA: Not enough entropy in random pool to proceed - reject first 4-way handshake | ||
+ | # sudo snap restart wifi-ap # use as needed | ||
``` | ``` |
Latest revision as of 03:07, 31 July 2020
- https://core.docs.ubuntu.com/en/stacks/network/wifi-ap/docs/reference/configuration
- https://core.docs.ubuntu.com/en/stacks/network/wifi-ap/docs/basic-ap-setup
- https://www.raspberrypi.org/downloads/
- Insert sd card and select Ubuntu 20.04 core or server depending
sudo apt update sudo apt upgrade sudo snap install wifi-ap sudo wifi-ap.config set disabled=false sudo wifi-ap.config set wifi.security=wpa2 sudo wifi-ap.config set wifi.security-passphrase=examplepass sudo wifi-ap.config set wifi.ssid=examplessid sudo apt-get install haveged -y # Increase entropy to avoid: WPA: Not enough entropy in random pool to proceed - reject first 4-way handshake # sudo snap restart wifi-ap # use as needed