2018-12-16 11:09:28 +08:00
|
|
|
|
# 通过 Linux 命令行工具连接 Wifi
|
|
|
|
|
|
|
|
|
|
首先查看无线网卡名称
|
|
|
|
|
|
|
|
|
|
ifconfig -a
|
|
|
|
|
|
|
|
|
|
如果无线网卡没有开启,则使能无线网卡
|
|
|
|
|
|
|
|
|
|
ifconfig <eth> up
|
|
|
|
|
|
|
|
|
|
扫描附近的无线网络
|
|
|
|
|
|
|
|
|
|
iw dev <eth> scan
|
|
|
|
|
|
|
|
|
|
可得到网络的 ESSID。如果要连接的网络是没有加密的,可以用下面的命令直接连接:
|
|
|
|
|
|
|
|
|
|
iw dev <eth> connect <ESSID>
|
|
|
|
|
|
|
|
|
|
如果网络是用 WEP 加密的:
|
|
|
|
|
|
|
|
|
|
iw dev <eth> connect <ESSID> key 0:<WEP Password>
|
|
|
|
|
|
|
|
|
|
但网络使用的是 WPA 或 WPA2 协议的话:
|
|
|
|
|
|
|
|
|
|
wpa_passphrase <"ESSID"> <"Password"> > /etc/xxx.conf
|
|
|
|
|
wpa_supplicant -B -i <eth> -c /etc/xxx.conf
|
|
|
|
|
|
|
|
|
|
查看无线网络连接状态:
|
|
|
|
|
|
|
|
|
|
iwconfig <eth>
|
2018-12-16 11:18:50 +08:00
|
|
|
|
# 或
|
|
|
|
|
iw <eth> link
|
|
|
|
|
# 或
|
|
|
|
|
ip link show <eth>
|
2018-12-16 11:09:28 +08:00
|
|
|
|
|
|
|
|
|
为无线网动态分配 IP
|
|
|
|
|
|
|
|
|
|
dhclient <eth>
|
2018-12-16 11:18:50 +08:00
|
|
|
|
# 或
|
2018-12-16 11:09:28 +08:00
|
|
|
|
udhcpc ‐b ‐i <eth>
|