ubuntu18.04 配置桥接开启AP热点
[TOC]
设备及网络说明
- 工控机双网口带wifi
目标
- 工控机自身可上网
- 可提供wifi ap
- pc通过工控机有线上网
操作
- 配置两个网卡为网桥,一个上外网,一个让pc上外网,生效并查看是否有错误
netplan --debug apply
network:
version: 2
renderer: networkd
ethernets:
eth0:
optional: true
dhcp4: no
eth1:
optional: true
dhcp4: no
bridges:
br0:
dhcp4: no
addresses:
- 192.168.1.10/24
gateway4: 192.168.1.1
interfaces: [eth0,eth1] #ubuntu实际接口
- 安装 create_ap
- create_ap介绍
- 会提示没有安装相关软件直接install安装即可
- 创建AP
create_ap wlan0 eth0 ssidname passwd
- 提示"ERROR: hostapd not found." 直接安装即可
sudo apt-get install hostapd
- 其中wlan0为无线网卡;eth0为无线网卡提供外网,可以为eth0,eth1,br0,都不影响上网
- 提示"ERROR: hostapd not found." 直接安装即可
其他说明
- Ubuntu18.04 的netplan不能直接配置AP
网友评论