How To Connect To A WPA Wifi Using Command Lines On Debian
How To Connect To A WPA Wifi Using Command Lines On DebianThis tutorial will explain how to connect to a WPA (1-2) wireless network without installing any graphical tool. I assume that your wireless drivers are activated in the kernel and that your card is detected in Linux with the command: ifconfig -a Mine is identified by wlan0 but that may change for you. For the others let's install wpa support now if you don't have it (you probably have it if you got a graphical interface): aptitude search wpasupplicant If there is an "i" in front of wpasupplicant, then it's installed otherwise do: aptitude install wpasupplicant Then we will configure a network, so we create and modify the configuration file: vim /etc/wpa_supplicant.conf Complete the file to make it look like that (replacing wifi_name and wifi_key by their real values of course). Press "i" to be able to edit. network={
ssid="wifi_name"
psk="wifi_key"
}
Then exit and save (press escape then :wq). The wifi network is now configured, we must now tell that we want to connect to it using this configuration file. wpa_supplicant -B -iwlan0 -c/etc/wpa_supplicant.conf -Dwext If your interface isn't named wlan0 then replace wlan0 by the real name of your interface. dhclient wlan0 If everything gone well you now see several lines containing some IP addresses and the command ping should work. This tutorial is now over, I hope you enjoyed it and it was helpful.
|



Recent comments
11 hours 51 min ago
14 hours 18 min ago
1 day 2 hours ago
1 day 4 hours ago
1 day 9 hours ago
1 day 15 hours ago
2 days 46 min ago
2 days 2 hours ago
2 days 10 hours ago
2 days 12 hours ago