mayfrost-guides/WIFI.md

17 lines
550 B
Markdown
Raw Normal View History

2018-03-01 02:58:41 +00:00
# WiFi
Needs "_dhcpcd_" (or "_dhcpclient_"), "_wpa\_supplicant_", "_iproute2_" and wifi firmware (like "_iwlwifi_"). Meant to be run as "_root_" or with "_sudo_"
2018-03-01 02:59:24 +00:00
* Create the configuration file (as root):
2018-03-01 02:58:41 +00:00
`wpa_passphrase Your_SSID Your_passwd > /etc/wpa_supplicant.conf`
* Delete non hashed password from /etc/wpa_supplicant.conf
2018-03-01 02:59:24 +00:00
* To connect type the following command:
2018-03-01 02:58:41 +00:00
`ip link set wlan0 down`
`ip link set wlan0 up`
`wpa_supplicant -B -iwlan0 -c /etc/wpa_supplicant.conf -Dwext`
`dhcpcd wlan0`
You can save the last step in a script.