web-dev-qa-db-ja.com

hostapd&dnsmasq永久にIPを取得する

hostapddnsmasqを使用してワイヤレスアクセスポイントをセットアップしようとしていますが、機能しません。

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
franga2000

私はついにそれを理解しました。ファイアウォールでDHCPポートを開かなかった(67)。

#: ufw allow 67
3
franga2000