Ubuntu配置无线路由器笔记记录
作者:快盘下载 人气:参考文章;
linux 开启制作无线路由器(ubuntu 1404)_linux_zhu的博客-CSDN博客
hostapd实现WIFI 热点;AP;_自由枫~的博客-CSDN博客_hostapd
终端get一下hostap
sudo apt-get install hostapd
拉取官方源码
git clone git://w1.fi/srv/git/hostap.git
备份一下两个配置文件
cp hostapd.conf hostapd.conf.bak
cp defconfig defconfig.bak #自留
cp defconfig .config #必须;不然会报错
确保defconfig的这里是解开注释的
修改hostap.conf配置文件;
interface=wlan0
bridge=br0 #看个人需求
driver=nl80211
ssid=myubuntu
hw_mode=g
channel=11
dtim_period=1
rts_threshold=2347
fragm_threshold=2346
auth_algs=3
wpa=1
wpa_passphrase=12345678
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP CCMP
rsn_pairwise=CCMP
编译安装
make
make install
编译报错
问题1;
解决1;见上面
问题2;
到官网下载libnl源码;libnl - Netlink Protocol Library Suite
tar -vzxf libnl-3.2.25.tar.gz #解压
./configure
make
make install
进入到hostap目录下 make 一下;执行之后出现了hostap的可执行文件
;搭网桥;
ps;网桥不能乱搭;搭错了就上不了网
执行hostap;报错
参数不合法;可能是版本更替;
将hostap.conf中wpa_sairwise那一行注释掉
修改为;
再次执行;报错;
解决;
sudo nmcli nm wifi off #应该是被淘汰了;不行请执行第二条
sudo nmcli radio wifi off
sudo rfkill unblock wlan
sudo ifconfig wlan0 192.168.1.1/24 up #(注意;配置主机的ip地址为192.168.1.1;
再次执行;成功
问题;我上面设置的密码是123456;但是我一直连接不上
待解决?
路由转发;待更
---------------------------------------------------------------------------------------------------------------------------------
加载全部内容