我用wpa-conf
在/etc/network/interfaces
使WLAN接口自动连接到AP:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
实际上,我只是在某个Wiki上发现了这一点。似乎没有在interfaces(5)或任何其他手册页中进行记录。
那么,什么是该wpa-conf
关键字?一种扩展?还是内置的ifup
?在哪里可以获得可以使用的所有命令的列表/etc/network/interfaces
?
wpa-conf
不在我的/etc/network/interfaces.d/
。