wpa_supplicant:tldr:cf418
The wpa_supplicant
command is used to configure and manage the wireless connections on a system.
Here is the breakdown of the command you provided:
-
wpa_supplicant
: This is the actual command that starts thewpa_supplicant
program. -
-B
: This option runswpa_supplicant
in the background, allowing it to continue running even after the terminal session is closed. -
-i ${interface}
: This option specifies the wireless interface to be used bywpa_supplicant
. Replace${interface}
with the actual name of your wireless interface, such as "wlan0" or "wlan1". -
-c ${path-to-wpa_supplicant_conf}
: This option specifies the path to the configuration file (wpa_supplicant.conf
) that contains the network settings forwpa_supplicant
. Replace${path-to-wpa_supplicant_conf}
with the actual path to your configuration file.
By running this command, wpa_supplicant
will be started in the background, using the specified wireless interface and configuration file, and it will manage the wireless connections according to the settings defined in the configuration file.