linux自动关闭wifi同时开启wifi与热点的办法操作办法

[复制链接]
查看861 | 回复0 | 2022-11-30 14:58:02 | 显示全部楼层 |阅读模式
如果你在linux操作系统中有同时开启wifi与热点的需求,请按下面的办法操作。

目前开启热点后会自动关闭wifi

同时开启wifi与热点的办法

1. 准备工作 查看是否支持AP模式

iw list



找到这个,表示支持AP模式

2.安装hostapd

sudo apt-get install hostapd

3.安装create_ap



git clone

cd create_ap

make install

2. 创建虚拟网卡并设置MAC地址

sudo iw dev wlp0s20f3 interface add wlan1 type __ap# 注意:这里的wlp0s20f3是我的无线网卡名,通过ifconfig查看自己的无线网卡名



sudo ip link set dev wlan1 address 22:33:44:55:66:00# MAC地址,随意填写,如果冲突则换一个

3. 使用create_ap创建热点

sudo create_ap -c 11 wlan1 wlp0s20f3 SSID password# wlp0s20f3 是你的无线网卡的名字,通过ifconfig命令查看,SSID是你想要发射的热点的名字。

后台运行

sudo nohup create_ap -c 11 wlan1 wlp0s20f3 SSID password &
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则