Linux连接WPA-PSK加密的WIFI

1.查看网卡标识
ip addr

网卡标识为wlp1s0

2.扫描无线网
iwlist wlp1s0 scan | grep ESSID

正文

1.新建一个wpa.conf,放在/etc目录下

network={
  ssid="Tenda_XX"
  proto=RSN
  key_mgmt=WPA-PSK
  pairwise=CCMP TKIP
  group=CCMP TKIP
  psk="Password1234"
}

2.打开配置文件
/etc/network/interfaces

3.输入以下内容

# The wlan network interface
auto wlp1s0
iface wlp1s0 inet dhcp
wpa-conf /etc/wpa.conf

4.重启网络
/etc/init.d/networking restart

你可能感兴趣的:(Linux连接WPA-PSK加密的WIFI)