0

I want to share my wired internet connection with wireless devices. I was able to get a wifi hotspot running by following the instructions here

Eventually I was able to get my android devices to detect my wifi. Unfortunately, when I try to connect, it always rejects my password. I've tried many combinations of passwords and devices but I am unable to get it to connect, it always says "Incorrect password."

enter image description here

x0a
  • 250

1 Answers1

1

I was finally able to get a wireless hotspot working! but not with Ubuntu's built-in hotspot, rather with hostapd and create_ap

create_ap is a great utility that simplifies the use of hostapd. To use, all you need to do is install hostapd and create_ap with

sudo apt-get install hostapd
git clone https://github.com/oblique/create_ap.git && cd create_ap && make install

Then to start a wireless hotspot

create_ap wlan0 eth0 MyAccessPoint MyPassPhrase

To get your wireless back:

CTRL^C
create_ap --fix-unmanaged
x0a
  • 250