文章参考:BASST | BLOG : Setting up Wifi - Debian Wheezy

预环境

Debian系的Linux系统
一般当代的Debian系的Linux都自带了wap_config工具

我的测试平台:树莓派2,Udoo板子
使用的是官方系统

配置过程

配置网络参数

sudo nano /etc/wpa.conf

将以下内容填入到该文件中

network={
	ss
	proto=RSN
	key_mgmt=WPA-PSK
	pairwise=CCMP TKIP
	group=CCMP TKIP
	psk="YOUR WPA PASSWORD"
}

注意:引号内容替换为自己的Wifi网络环境,引号保留

配置网络接口

sudo nano /etc/network/interfaces

将以下内容填入到该文件中

auto lo

iface lo inet loopback
iface eth0 inet dhcp

auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa.conf

重启网络

sudo /etc/init.d/networking restart

相关文章:

  • 2021-11-21
  • 2021-11-29
  • 2021-12-15
  • 2021-11-28
  • 2022-02-08
  • 2022-12-23
  • 2021-12-27
  • 2021-04-24
猜你喜欢
  • 2021-12-06
  • 2021-08-02
  • 2021-08-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案