kali linux 命令列設定WIFI
阿新 • • 發佈:2018-12-02
《通過命令連線wifi》 https://blog.csdn.net/cupidove/article/details/45340145
1、iwconfig 檢視網路介面狀態,記住無線網口的名字,比如wlan0 ,wls20等
2、如果是wep 加密,直接連線
sudo iwconfig wlan0 essid "MyHome" key 0123-4567-89
3、如果是wpa/wpa2 加密
#生成配置檔案,寫入網路號和密碼
sudo wpa_passphrase [essid] [password] >> /etc/wpa_supplicant/wireless.conf
#使用配置檔案
wpa_supplicant -B -D wext -i wlan0 -c /etc/wpa_supplicant/wireless.conf
- B means run wpa_supplicant in the background.
- -D specifies the wireless driver. wext is the generic driver.
- -c specifies the path for the configuration file.
#使用動態IP
dhclient wlan0
4、將配置寫入檔案,下次系統啟動時自動載入
《關於kali無線網路配置》https://blog.csdn.net/myweaven/article/details/79305305
編輯配置檔案 gedit /etc/network/interfaces,追加
auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wireless.conf