RHEL 7.2:通过 CLI 启动热点

RHEL 7.2:通过 CLI 启动热点

启动无线热点(随软件包附带)的 GUI 方法是众所周知的。

如何在 RHEL 7.2 中通过 CLI 启动无线热点(随软件包一起提供)?

(有已知且有记录的第三方选项,并且有其 CLI 指南。)

答案1

创建和开始从 CLI 获取热点有很多方法:

主机

先决条件:安装dnsmasqhostapd(所有 Linux 发行版),在基于 RHEL 的发行版下运行:

yum install hostapd
yum install dnsmasq

然后你需要安装hotspotd

wget https://github.com/prahladyeri/hotspotd/raw/master/dist/hotspotd-0.1.tar.gz
cd hotspotd-0.1.4
sudo python setup.py install

完成后运行开始hotspotd

sudo hotspotd start

第一次邀请您输入您的 SSID 和密码,下次该命令sudo hotspotd start将自动启动保存的配置。

要停止热点运行:

sudo hotspotd stop

nmtui(无需添加第三方工具)

您可以配置和开始通过nmtui

要配置 AP,请打开终端并运行: nmtui:

选择编辑连接然后添加, 选择无线上网向下滚动并修改模组切入点

nmtui要从终端启动 Hotspot 运行命令,请选择激活连接然后选择您的 AP 的 SSID 并选择激活/停用

                       ┌─┤ NetworkManager TUI ├──┐                          
                       │                         │                          
                       │ Please select an option │                          
                       │                         │                          
                       │ Edit a connection       │                          
                       │ Activate a connection   │                          
                       │ Set system hostname     │                          
                       │                         │                          
                       │ Quit                    │                          
                       │                         │                          
                       │                    <OK> │                          
                       │                         │                          
                       └─────────────────────────┘                          

相关内容