我正在尝试使用 hostapd 启动 wifi AP,并仔细遵循所有这说明。目前,从我的手机上,我可以看到网络,我连接到网络,但它卡在接收 IP 地址,然后就终止连接。
hostapd-minimal.conf:
interface=wlan0
driver=nl80211
ssid=test
hw_mode=g
channel=1
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=3
wpa_passphrase=88888888
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
dhcpd.conf:
ddns-update-style none;
# option definitions common to all supported networks...
#option domain-name "example.org";
#option domain-name-servers ns1.example.org, ns2.example.org;
#default-lease-time 600;
#max-lease-time 7200;
log-facility local7;
subnet 10.10.0.0 netmask 255.255.255.0 {
range 10.10.0.2 10.10.0.16;
option domain-name-servers 8.8.4.4, 208.67.222.222;
option routers 10.10.0.1;
}
接口:
auto lo
iface lo inet loopback
auto wlan0
iface wlan0 inet static
address 10.10.0.1
netmask 255.255.255.0
我用这个脚本启动它:
#!/bin/bash
sudo /bin/bash -c "
start isc-dhcp-server
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -s 10.10.0.0/16 -o eth0 -j MASQUERADE
hostapd $HOME/hostapd-minimal.conf -B
"
尝试使用 -d 调试选项运行 hostapt,所有输出都在这里 -http://pastebin.com/GCUPiyRT
我错过了什么?
答案1
事实证明,所有设置都是正确的,在更新 ics-dhcp-server 包后,所有设置都正常工作