如何在 Linux 中使用 wifi 适配器建立 LAN?

如何在 Linux 中使用 wifi 适配器建立 LAN?

我对共享互联网连接不感兴趣,我只是想制作一个多个设备可以连接并相互通信的AP。

我有一个 USB 无线网络适配器。我如何将其配置为充当 AP。

不需要互联网连接,只需一个 LAN。

答案1

您可以使用创建_ap

没有互联网共享的AP:

create_ap -n wlan0 MyAccessPoint MyPassPhrase

安装:

您应该安装依赖项:

bash (to run this script)
util-linux (for getopt)
procps or procps-ng
hostapd
iproute2
iw
iwconfig (you only need this if 'iw' can not recognize your adapter)
haveged (optional)
dnsmasq
iptables

然后:

git clone https://github.com/oblique/create_ap
cd create_ap
make install

create_ap为 gentoo 和 archlinux 打包。

相关内容