User:Kyrias/WPA Supplicant
wpa_supplicant is a cross-platform WPA Supplicant with support for WPA, WPA2 (IEEE 802.11i / RSN (Robust Secure Network)) and WEP. It is suitable for both desktop/laptop computers and embedded systems. wpa_supplicant
is the IEEE 802.1X/WPA component that is used in the client stations. It implements key negotiation with a WPA Authenticator and it controls the roaming and IEEE 802.11 authentication/association of the wlan driver.
Installation
Install wpa_supplicant from the official repositories.
Optionally wpa_supplicant_gui can be installed which provides wpa_gui
; a graphical frontend for wpa_supplicant
using the qt4 toolkit.
Connecting with wpa_cli
To associate with a wireless access point using wpa_supplicant
, use the included command line tool wpa_cli
. In order to use wpa_cli
a control interface must be specified for wpa_supplicant
. Do this by creating a config file containing ctrl_interface=/var/run/wpa_supplicant
in /etc/wpa_supplicant/wpa_supplicant-interface.conf
.
Replace all following instances of interface in italics with the wireless network interface you want to run wpa_supplicant on, which you can find using ip link
.
/etc/wpa_supplicant/wpa_supplicant.conf
for details.To enable saving changes made using wpa_cli, append the line update_config=1
to the configuration file, then start wpa_supplicant with
# wpa_supplicant -B -i interface -c /etc/wpa_supplicant/wpa_supplicant-interface.conf
Invoke wpa_cli
with no arguments to get an interactive prompt (>
). The prompt has tab completion and descriptions of completed commands. The command scan
initiates a scan; a notification is issued when the scan is complete. Then:
> scan_results bssid / frequency / signal level / flags / ssid 00:00:00:00:00:00 2462 -49 [WPA2-PSK-CCMP][ESS] MYSSID 11:11:11:11:11:11 2437 -64 [WPA2-PSK-CCMP][ESS] ANOTHERSSID
To associate with MYSSID, tell wpa_supplicant
about it. Each network is indexed numerically, so the first network will have index zero. The PSK can be provided without quotes as an alternative to providing the passphrase in this example:
> add_network 0 > set_network 0 ssid "MYSSID" > set_network 0 psk "passphrase" > enable_network 0 <2>CTRL-EVENT-CONNECTED - Connection to 00:00:00:00:00:00 completed (reauth) [id=0 id_str=]
To save this network in the configuration file:
> save_config OK
Now that association with the wireless access point is complete, obtain an IP address via dhcpcd or using the iproute2 tools.
Configuration
wpa_supplicant provides a reference configuration file located at /etc/wpa_supplicant/wpa_supplicant.conf
which contains detailed documentation for the all available options and their utilisation.
In its simplest form, a configuration file requires only a network block. For example:
/etc/wpa_supplicant/foobar.conf
network={ ssid="..." }
This can easily be generated using the wpa_passphrase
tool. For example:
$ wpa_passphrase essid passphrase
network={ ssid="essid" #psk="passphrase" psk=f5d1c49e15e679bebe385c37648d4141bc5c9297796a8a185d7bc5ac62f954e3 }
wpa_supplicant
and wpa_passphrase
can be combined to associate with almost all WPA2 (Personal) networks:
# wpa_supplicant -B -i interface -c <(wpa_passphrase essid passphrase)
All that remains is to simply connect using a static IP or DHCP. For example:
# dhcpcd interface
Maintaining a custom configuration
As discussed above we can make use of wpa_passphrase
to generate a basic configuration which we can augment with additional networks and options of our choosing. This may be necessary for more advanced networks employing extensive use of EAP.
Firstly we will use wpa_passphrase
to create our basic configuration file.
# wpa_passphrase essid passphrase > /etc/wpa_supplicant/wpa_supplicant-interface.conf
# wpa_passphrase essid < passphrase.txt > /etc/wpa_supplicant/wpa_supplicant-interface.conf
Next add a ctrl_interface
so that we may control the wpa_supplicant
daemon. We can allow wpa_cli
to edit this configuration by setting update_config=1
.
/etc/wpa_supplicant/wpa_supplicant-interface.conf
ctrl_interface=DIR=/run/wpa_supplicant GROUP=wheel # allow control for members in the 'wheel' group update_config=1 network={ ssid="foobarssid" psk=f5d1c49e15e679bebe385c37648d4141bc5c9297796a8a185d7bc5ac62f954e3 }
Multiple network blocks may be appended to this configuration.
To start your network simply run the following:
# ip link set interface up # wpa_supplicant -B -D nl80211 -i interface -c /etc/wpa_supplicant/wpa_supplicant-interface.conf # dhcpcd -A interface
nl80211
is preferred over the deprecated wext
driver. For a list of supported drivers see the output of wpa_supplicant -h
.For networks of varying complexity please study the examples provided in the default /etc/wpa_supplicant/wpa_supplicant.conf
file.
Starting with systemd
In order to enable wireless at boot, enable wpa_supplicant
on your particular wireless interface. To get connectivity with DHCP, enable dhcpcd.service
as well. Finally, to handle possible ethernet connections, install ifplugd
and enable it on your ethernet interface. For instance, the invocations might look like
# systemctl enable wpa_supplicant@wlp3s1 # systemctl enable dhcpcd # systemctl enable ifplugd@enp5s2
WPA Supplicant handles roaming for all the SSIDs in its configuration file, and ifplugd
will configure ethernet and bring down wireless when an ethernet cable is plugged into the machine. dhcpcd
takes care of leasing an IP on all interfaces.
The provided wpa_supplicant@.service
is incorrect and will have to be modified so that it will install the service properly until the fixed version is packaged (bug report). To override it, copy /usr/lib/systemd/system/wpa_supplicant@.service
to /etc/systemd/system/wpa_supplicant@.service
and replace the [Install]
section with:
[Install] WantedBy=multi-user.target
And then run systemctl daemon-reload
to make systemd see the new service file before enabling it.
-w
flag with -b
so that it doesn't wait until it is assigned an address before forking to the background.Related Links
|