centos6 中可以使用 brctl 命令管理本地网桥 例如:brctl delbr xxx, brctl addif xxx xxx
但在 centos8 中貌似使用了 nmcli 命令替代,请问大佬知道如何用 nmcli 创建虚拟网桥以及挂载网桥吗?
1
billlee 2020-12-29 00:44:30 +08:00
可以用 nmuti. nmcli 和 nmtui 都只是 NetworkManager 的前端。一定要用 cli 的话大概是
nmcli connection add connection.id br0 connection.type bridge bridge.stp true ipv4.method manual ipv4.addr 192.0.2.100/24 ipv4.dns 1.1.1.1 ipv4.gateway 192.0.2.1 nmcli connection modify eth0 connection.master br0 参见 //developer.gnome.org/NetworkManager/stable/nmcli.html //developer.gnome.org/NetworkManager/stable/nm-settings-nmcli.html |