微信连WIFI之热点搭建的尝试
时间:10-02
整理:3721RD
点击:
为什么叫做尝试呢,因为这次没有成功。 -_-
简单的说一下我的步骤吧。
安装hostport的守护程序hostapd,还有DHCP服务端dnsmasq
apt-get install hostapd dnsmasq
编辑配置文件/etc/hostapd/hostapd.conf
ctrl_interface=/var/run/hostapd
macaddr_acl=0 auth_algs=1
driver=nl80211
interface=wlan0
bridge=br0
hw_mode=g
ieee80211n=1
channel=1
ssid=名字
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=3
wpa_passphrase=8位数以上的密码
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
修改/etc/network/interfaces
auto lo
iface lo inet loopback
auto br0
iface br0 inet static
address 192.168.1.11
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
bridge-ports eth0 wlan0
最后重启hostapd
service hostapd restart
然后我就发现 系统挂了 不能开机了 可能是配置文件有冲突吧
其实本来想编译zero 的openwrt固件的。
找找原因解决问题吧