NotePublic/Software/OperatingSystem/Linux/Network/通过_Linux_命令行工具连接_Wifi.md

41 lines
822 B
Markdown
Raw Normal View History

# 通过 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>
# 或
iw <eth> link
# 或
ip link show <eth>
为无线网动态分配 IP
dhclient <eth>
# 或
udhcpc b i <eth>