测试系统
Raspberry 4 ; Ubuntu Server 18.04
目的
有线接入网络,无线开启热点
安装
先安装各种依赖
sudo apt-get install util-linux procps hostapd iproute2 iw haveged dnsmasq
下载creat_ap
sudo git clone https://github.com/oblique/create_ap
cd create_ap
sudo make install
执行完install后,其配置文件会放在/etc/create_ap.conf内,
测试启动
sudo create_ap --config /etc/create_ap.conf
请确定打印内容是否有问题!
请确定打印内容是否有问题!
请确定打印内容是否有问题!
测试无问题后,设置开机启动
sudo systemctl enable create_ap.service
禁止开机启动(disable), 启动(start),停止(stop)。
配置文件
CHANNEL=default
GATEWAY=10.0.0.1 # 网段
WPA_VERSION=2
ETC_HOSTS=0
DHCP_DNS=gateway
NO_DNS=0
NO_DNSMASQ=0
HIDDEN=0
MAC_FILTER=0
MAC_FILTER_ACCEPT=/etc/hostapd/hostapd.accept
ISOLATE_CLIENTS=0
SHARE_METHOD=nat
IEEE80211N=0 #是否开启802.11n(若为5G,其值为1)
IEEE80211AC=0 #是否开启802.11ac(若为5G,其值为1)
HT_CAPAB=[HT40+]
VHT_CAPAB=
DRIVER=nl80211
NO_VIRT=0
COUNTRY=
FREQ_BAND=2.4 #无线频率(若为5G,其值为5)
NEW_MACADDR=
DAEMONIZE=0
NO_HAVEGED=0
WIFI_IFACE=wlan0
INTERNET_IFACE=eth0
SSID=YourSsid
PASSPHRASE=YourPwd
USE_PSK=0
常见问题
可能会出现
ctrl_iface not configured!
或什么random相关的问题,解决方法:
mv /dev/random /dev/random.orig
ln -s /dev/urandom /dev/random
random和urandom的区别,请自行百度