hostapd
我正在尝试使用和设置无线接入点,dnsmasq
但无法使其工作。
AP 可以工作,但是当我尝试连接时,它卡在“正在获取 IP 地址”上。我在控制台中看到了连接hostapd
,但是控制台中没有任何反应dnsmasq
。
以下是我的配置、命令及其输出:
#: dnsmasq -C dnsmasq.conf -H hosts.conf -d -q
dnsmasq: started, version 2.68 cachesize 150
dnsmasq: compile time options: IPv6 GNU-getopt DBus i18n IDN DHCP DHCPv6 no-Lua TFTP conntrack ipset auth
dnsmasq-dhcp: DHCP, IP range 10.0.0.10 -- 10.0.0.250, lease time 12h
dnsmasq: using nameserver 8.8.8.8#53
dnsmasq: read /etc/hosts - 5 addresses
dnsmasq: read hosts.conf - 1 addresses
dnsmasq.conf:
no-resolv
interface=wlan0
dhcp-range=10.0.0.10,10.0.0.250,12h
server=8.8.8.8
log-queries
log-dhcp
hostapd.conf:
interface=wlan0
driver=nl80211
ssid=Test
channel=1
我究竟做错了什么?
答案1
我终于搞明白了。我没有在防火墙中打开 DHCP 端口(67)。
#: ufw allow 67