Hostapd : The Linux Way to create Virtual Wifi Access Point

NOTE: Although this guide should work in most cases, it is not flawless and may require minor modifications to make the process work for your use case. Please do point out corrections and changes.

UPDATE (22-Oct-2018): Since this post still gets lots of hits despite being 6 years old, I have made some revisions to make it compatible with modern times. Major changes include:

  • Remove useless information
  • Replace ifconfig with ip
  • Replace dhcpd with dnsmasq

HOSTAPD

“hostapd is a user space daemon for access point and authentication servers. “

Hostapd allows you to create software wifi access points with decent amount of configuration options. In rest of this post, we will create a software access point in Linux using hostapd and share your internet to the devices through it. I have used my Thinkpad E570 with ath10k_pci wifi driver under Arch Linux. But the method is also applicable for other Linux distros and supported hardware.

REQUIREMENTS

  • Supported Wireless Card (ie. supports AP mode)
  • If you want to share your internet connection or some other network, it should be on an interface other than the wifi interface your hostapd is bind to.
  • A dhcp server to assign ip addresses to clients. We will use dnsmasq.
  • iptables to forward internet traffic.

CHECKING WIFI CARD SUPPORT

Most modern wireless cards should work with hostapd. To check what modes your card supports, type the following in your terminal:

$ iw list | grep "Supported interface modes" -A 8

You will get something like this:

	Supported interface modes:
		 * IBSS
		 * managed
		 * <strong>AP</strong>
		 * monitor
		 * mesh point
		 * P2P-client
		 * P2P-GO
		 * P2P-device

You want that bold AP (which stands for access point) to show up if you want to use hostapd with your wireless card. Take a look at https://wiki.gentoo.org/wiki/Hostapd for more details.

INSTALLING HOSTAPD

Install Hostapd from your distro’s repo:

#Arch Linux
$ sudo pacman -S hostapd
#Ubuntu
$ sudo apt-get update && sudo apt-get install hostapd

Or Download Hostapd here and compile it.

NOTE: Before proceeding, make sure your network manager (for example NetworkManager or netctl-auto) is not managing your wireless interface.

CONFIGURING HOSTAPD

The /etc/hostapd/hostapd.conf is the main configuration which you need to deal with in order to set up a SoftAP.

This is the minimal configuration setting which will let you test if hostapd is working. Create a file ~/hostapd-test.conf
with the following content:

#change wlan0 to your wireless device
interface=wlan0
driver=nl80211
ssid=test
channel=1

start hostapd by

$ sudo hostapd ~/hostapd-test.conf

Use a wifi device to check if the access point is being detected. You won’t be able to connect to it at this point.
Once hostapd is working fine, its time to configure hostapd with more options.
Here is a brief overview of some of its options:

#sets the wifi interface to use
interface=wlan0
#driver to use, nl80211 works in most cases
driver=nl80211
#sets the ssid of the virtual wifi access point
ssid=myhotspot
#sets the mode of wifi, depends upon the devices you will be using. It can be a,b,g,n. Not all cards support 'n'.
hw_mode=g
#sets the channel for your wifi
channel=6
#macaddr_acl sets options for mac address filtering. 0 means "accept unless in deny list"
macaddr_acl=0
#setting ignore_broadcast_ssid to 1 will disable the broadcasting of ssid
ignore_broadcast_ssid=0
#Sets authentication algorithm
#1 - only open system authentication
#2 - both open system authentication and shared key authentication
auth_algs=1
#####Sets WPA and WPA2 authentication (remove this section if you don't need encryption)#####
#wpa option sets which wpa implementation to use
#1 - wpa only
#2 - wpa2 only
#3 - both
wpa=3
#sets wpa passphrase required by the clients to authenticate themselves on the network
wpa_passphrase=KeePGuessinG
#sets wpa key management
wpa_key_mgmt=WPA-PSK
#sets encryption used by WPA
wpa_pairwise=TKIP
#sets encryption used by WPA2
rsn_pairwise=CCMP

So, here is my complete /etc/hostapd/hostapd.conf with WPA authentication.

interface=wlan0
driver=nl80211
ssid=myhotspot
hw_mode=g
channel=6
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=3
wpa_passphrase=KeePGuessinG
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP

SETTING UP THE DHCP SERVER

Now that hostapd is running fine, you need to setup a DHCP server to run along with hostapd in order to assign ip address to the devices connecting to the access point. Setting up a dhcp server is quite straightforward for dnsmasq.

Install dhcp server from your distro’s repo.

# Arch Linux
$ sudo pacman -S dnsmasq
# Ubuntu
$ sudo apt-get install dnsmasq

The default /etc/dnsmasq.conf explains all its configuration options pretty well, so I will jump straight to what a simple /etc/dnsmasq.conf should look like

# Interface to bind to
interface=wlan0
# Specify starting_range,end_range,lease_time
dhcp-range=10.0.0.3,10.0.0.20,12h

# Uncomment and modify the following lines if you don't want to forward dns from the host's /etc/resolv.conf
## disables dnsmasq reading any other files like /etc/resolv.conf for nameservers
#no-resolv
## dns addresses to send to the clients
#server=8.8.8.8
#server=8.8.4.4

Start dnsmasq and your clients should be able to connect to the wireless hotspot:

# Setup the interface
$ ip link set wlp5s0 down
$ ip addr flush dev wlp5s0
$ ip link set wlp5s0 up
$ ip addr add 10.0.0.1/24 dev wlan0
# start hostapd
$ sudo killall dnsmasq; dnsmasq
$ sudo hostapd

SHARING THE INTERNET

This final steps involves enabling NAT to share internet (or any network) in one network interface  with the clients connected through hostapd. I just use few lines of iptables to achieve this. Refer to https://wiki.archlinux.org/index.php/Internet_sharing for more information or how to achieve the same using nftables. Ignore this step if all you want to do is setup an internal wifi network and clients don’t need access to any external network.

I have included all the steps to configure wlan interface, enable NAT, start DHCP server and hostapd in the BASH script below.

Copy the content below to the file initSoftAP. (and make changes to file according to your needs)

#!/bin/bash
# Usage: ./initSoftAP
########### Initial wifi interface configuration #############
ip link set $1 down
ip addr flush dev $1
ip link set $1 up
ip addr add 10.0.0.1/24 dev $1

# If you still use ifconfig for some reason, replace the above lines with the following
# ifconfig $1 up 10.0.0.1 netmask 255.255.255.0
sleep 2
###########

########### Start dnsmasq ##########
if [ -z "$(ps -e | grep dnsmasq)" ]
then
 dnsmasq
fi
###########
########### Enable NAT ############
iptables -t nat -A POSTROUTING -o $2 -j MASQUERADE
iptables -A FORWARD -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
iptables -A FORWARD -i $1 -o $2 -j ACCEPT

#Thanks to lorenzo
#Uncomment the line below if facing problems while sharing PPPoE, see lorenzo's comment for more details
#iptables -I FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu

sysctl -w net.ipv4.ip_forward=1
###########
########## Start hostapd ###########
hostapd /etc/hostapd/hostapd.conf
killall dnsmasq

It might be more convenient to use hostapd -B /etc/hostapd/hostapd.conf which runs hostapd in background. (Thanks to Enda for pointing out)

Make this file executable, and run it. The syntax for executing it is

./initSoftAP wifi_card_interface interface_with_internet

chmod +x initSoftAP
./initSoftAP wlan0 eth0

Now your devices should be able to access the internet (or any network) through your hotspot.

Problems, Errors, Feedback or any alternatives? Feel free to reply.

516 thoughts on “Hostapd : The Linux Way to create Virtual Wifi Access Point

  1. Jamie

    How could this be setup to use a bridge instead of a nat table due to the way things are set up for me I am unable to use the nat table

    Reply
  2. Pingback: Using a Raspberry PI as router and FTP server - Boot Panic

  3. Savar

    Helped a lot mate. Had been banging my head on the wall for about a month now just to get this working. Thanks a lot, efforts really appreciated!

    Reply
  4. Pingback: Creating a WiFi network from LAN

  5. Pingback: Sharing an ethernet connection

Leave a reply to Claudio Cancel reply