添加 WiFi 连接配置
wpa_passphrase {SSID} {PASSWORD} > /etc/wpa_supplicant/{SSID}.conf

其中 {SSID} 为无线网络的名称(即WiFi名称),{PASSWORD} 为 WiFi 密码。

连接无线网络
wpa_supplicant -i wlan0 -c /etc/wpa_supplicant/{SSID}.conf -B
看到 Successfully 字样就表示连接成功啦!

配置 DHCP 自动分配 IP
dhclient wlan06
查看是否连接成功
ifconfig

看到 wlan0 中已经有正常的 IP 地址了,说明网络连接已经建立。

验证能否正常上网
ping www.baidu.com -c 4

响应正常,说明可以正常上网了!

Referenced from:https://cloud.tencent.com/developer/article/1494772

本文链接地址:https://const.net.cn/356.html

标签: shell, linux

添加新评论