5

On Ubuntu 14.04, can an adapter have both a hotspot and be connected to a WiFi network at the same time?

If so, how do I share the Internet of the currently connected network over a hotspot in Linux?

If not, why?

Raghav
  • 53

3 Answers3

6

can an adapter have both a hotspot and be connected to a WiFi network at the same time?

Yes , it's possible to create a hotspot wifi from the same wifi connection

How do I share the Internet of the currently connected network over a hotspot in Linux?

You should use create_ap

Install the dependencies :

sudo apt-get install dnsmasq haveged hostapd build-essential

To install create_ap run:

git clone https://github.com/oblique/create_ap
cd create_ap
sudo make install

enable/start the service:

service create_ap start

To check the status run:

service create_ap status

Using the systemd features (it is not available on Ubuntu 14.04):

sudo systemctl start create_ap.service
sudo systemctl enable create_ap.service

Create the AP

To create your access point run:

sudo create_ap wlan0 wlan0 MyAccessPoint MyPassPhrase

Update for Ubuntu 14.04:

the hostapd version in Ubuntu 14.04 is buggy and doesn't work properly. To get AP-Hotspot to work with hostapd in Ubuntu 14.04, you need to downgrade hostapd and use apt to hold the package so it's not upgraded.

Remove the current version of hostapd:

sudo apt-get remove hostapd

64bit

cd /tmp
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/w/wpa/hostapd_1.0-3ubuntu2.1_amd64.deb
sudo dpkg -i hostapd*.deb
sudo apt-mark hold hostapd

32bit

cd /tmp
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/w/wpa/hostapd_1.0-3ubuntu2.1_i386.deb
sudo dpkg -i hostapd*.deb
sudo apt-mark hold hostapd
GAD3R
  • 3,900
1

See this question.

Basically, find your wifi interface, then sudo iw dev wlp8s0 interface add wlp8s1 type station to create the new interface.

You can use this method to create a virtual interface, use one interface to connect to a network and use another one to create an ad-hoc network for hotspot. This should be pretty straight-forward (googling, of course), since NetworkManager has (a nice) UI. For example, this should do it.

Pang
  • 1,017
vfsoraki
  • 2,037
-1

Just try this one, I found this working in my Windows 10 PC while my PC is connected to my internet, it also serves as a server (host) during my Android development.

Install WINE (Ubuntu Store) in your Ubuntu 14.04 it makes .exe runs on Ubuntu.

And Run this one WLAN Launcher which will make your PC - turn to Hotspot mode (host).

Provide a password you like and network name. Then Start .

WLAN