2018-04-01 14:00:12 +08:00
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
如何在Linux里使用nmcli (NetworkManager) 添加网桥
|
2018-01-30 15:08:50 +08:00
|
|
|
|
======
|
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
我正在电脑上使用Debian Linux 9 “stretch”。 我想用NetworkManager 来建网桥。但是根本就没有添加br0的选项。我该如何在Linux里使用nmcli 来为 NetworkManager 创建或者添加网桥呢?
|
2018-01-30 15:08:50 +08:00
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
网桥没什么特别的,只是把两个网络连在一起。它工作在数据链路层,例如OSI模型的第二层。网桥经常被虚拟机和别的一些软件使用。为了使用网桥而关闭桌面Linux上的NetworkManager 显然是不明智的。nmcli可以创建一个永久的网桥而不编辑任何文件。**本文将展示如何使用NetworkManager 的命令行工具nmcli来创建网桥。**
|
2018-01-30 15:08:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
### 如何使用nmcli来创建/添加网桥
|
2018-01-30 15:08:50 +08:00
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
使用NetworkManager 在Linux上添加网桥接口的步骤如下:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
1. 打开terminal
|
|
|
|
|
2. 获取当前连接状态:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
```
|
|
|
|
|
nmcli con show
|
|
|
|
|
```
|
2018-04-01 16:22:53 +08:00
|
|
|
|
3. 添加新的网桥:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
```
|
|
|
|
|
nmcli con add type bridge ifname br0
|
|
|
|
|
```
|
2018-04-01 16:22:53 +08:00
|
|
|
|
4. 创建子网卡:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
```
|
|
|
|
|
nmcli con add type bridge-slave ifname eno1 master br0
|
|
|
|
|
```
|
2018-04-01 16:33:06 +08:00
|
|
|
|
5. 打开br0:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
```
|
|
|
|
|
nmcli con up br0
|
|
|
|
|
```
|
|
|
|
|
|
2018-04-04 12:09:26 +08:00
|
|
|
|
让我们从细节层面看看如何创建一个名为br0的网桥。
|
2018-01-30 15:08:50 +08:00
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
### 获取当前网络配置
|
2018-01-30 15:08:50 +08:00
|
|
|
|
|
2018-04-01 16:33:06 +08:00
|
|
|
|
你可以通过NetworkManager的GUI来了解本机的网络连接:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
[![Getting Network Info on Linux][1]][1]
|
2018-04-01 16:59:32 +08:00
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
也可以使用如下命令行来查看:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
```
|
|
|
|
|
$ nmcli con show
|
|
|
|
|
$ nmcli connection show --active
|
|
|
|
|
```
|
|
|
|
|
[![View the connections with nmcli][2]][2]
|
2018-04-01 16:33:06 +08:00
|
|
|
|
|
2018-04-04 12:09:26 +08:00
|
|
|
|
我有一个使用网卡eno1的“有线连接”。我的系统还有一个VPN接口。我将要创建一个名为br0的网桥,并连接到eno1.
|
2018-01-30 15:08:50 +08:00
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
### 如何创建一个名为br0的网桥
|
2018-01-30 15:08:50 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ sudo nmcli con add ifname br0 type bridge con-name br0
|
|
|
|
|
$ sudo nmcli con add type bridge-slave ifname eno1 master br0
|
|
|
|
|
$ nmcli connection show
|
|
|
|
|
```
|
|
|
|
|
[![Create bridge interface using nmcli on Linux][3]][3]
|
2018-04-01 16:33:06 +08:00
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
你也可以禁用STP:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
```
|
|
|
|
|
$ sudo nmcli con modify br0 bridge.stp no
|
|
|
|
|
$ nmcli con show
|
|
|
|
|
$ nmcli -f bridge con show br0
|
|
|
|
|
```
|
2018-04-01 16:22:53 +08:00
|
|
|
|
最后一条命令展示了禁用STP后的网桥参数:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
```
|
|
|
|
|
bridge.mac-address: --
|
|
|
|
|
bridge.stp: no
|
|
|
|
|
bridge.priority: 32768
|
|
|
|
|
bridge.forward-delay: 15
|
|
|
|
|
bridge.hello-time: 2
|
|
|
|
|
bridge.max-age: 20
|
|
|
|
|
bridge.ageing-time: 300
|
|
|
|
|
bridge.multicast-snooping: yes
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
### 如何打开网桥
|
2018-01-30 15:08:50 +08:00
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
你必须先关闭"Wired connection 1" ,然后打开br0:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
```
|
|
|
|
|
$ sudo nmcli con down "Wired connection 1"
|
|
|
|
|
$ sudo nmcli con up br0
|
|
|
|
|
$ nmcli con show
|
|
|
|
|
```
|
2018-04-01 16:59:32 +08:00
|
|
|
|
使用 [ip 命令][4] 来查看IP信息:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
```
|
|
|
|
|
$ ip a s
|
|
|
|
|
$ ip a s br0
|
|
|
|
|
```
|
|
|
|
|
[![Build a network bridge with nmcli on Linux][5]][5]
|
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
### 附录: 如何在KVM上使用br0
|
2018-01-30 15:08:50 +08:00
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
现在你可以使用KVM/VirtualBox/VMware workstation创建的VM(虚拟机)来直接连接网络而非通过NAT。使用vi或者cat命令[cat command][6]为虚拟机创建一个名为br0.xml的文件:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
`$ cat /tmp/br0.xml`
|
2018-04-01 16:22:53 +08:00
|
|
|
|
添加以下代码:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
```
|
|
|
|
|
<network>
|
|
|
|
|
<name>br0</name>
|
|
|
|
|
<forward mode="bridge"/>
|
|
|
|
|
<bridge name="br0" />
|
|
|
|
|
</network>
|
|
|
|
|
```
|
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
如下所示运行virsh命令:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
```
|
|
|
|
|
# virsh net-define /tmp/br0.xml
|
|
|
|
|
# virsh net-start br0
|
|
|
|
|
# virsh net-autostart br0
|
|
|
|
|
# virsh net-list --all
|
|
|
|
|
```
|
2018-04-01 16:33:06 +08:00
|
|
|
|
输出:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
```
|
|
|
|
|
Name State Autostart Persistent
|
|
|
|
|
----------------------------------------------------------
|
|
|
|
|
br0 active yes yes
|
|
|
|
|
default inactive no yes
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
阅读man页面获取更多信息:
|
2018-01-30 15:08:50 +08:00
|
|
|
|
```
|
|
|
|
|
$ man ip
|
|
|
|
|
$ man nmcli
|
|
|
|
|
```
|
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
### 关于作者
|
2018-01-30 15:08:50 +08:00
|
|
|
|
|
2018-04-01 16:22:53 +08:00
|
|
|
|
作者是nixCraft的创建者,老练的系统管理员和一个Linux/Unix shell脚本编程培训师。他为全球客户和各种公司工作,包括IT,教育,国防,空间研究以及非营利组织。 他的联系方式[Twitter][7], [Facebook][8], [Google+][9].
|
2018-01-30 15:08:50 +08:00
|
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
via: https://www.cyberciti.biz/faq/how-to-add-network-bridge-with-nmcli-networkmanager-on-linux/
|
|
|
|
|
|
|
|
|
|
作者:[Vivek Gite][a]
|
2018-04-01 16:22:53 +08:00
|
|
|
|
译者:[kennethXia](https://github.com/kennethXia)
|
2018-01-30 15:08:50 +08:00
|
|
|
|
校对:[校对者ID](https://github.com/校对者ID)
|
|
|
|
|
|
|
|
|
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
|
|
|
|
|
|
|
|
|
[a]:https://www.cyberciti.biz
|
|
|
|
|
[1]:https://www.cyberciti.biz/media/new/faq/2018/01/Getting-Network-Info-on-Linux.jpg
|
|
|
|
|
[2]:https://www.cyberciti.biz/media/new/faq/2018/01/View-the-connections-with-nmcli.jpg
|
|
|
|
|
[3]:https://www.cyberciti.biz/media/new/faq/2018/01/Create-bridge-interface-using-nmcli-on-Linux.jpg
|
|
|
|
|
[4]:https://www.cyberciti.biz/faq/linux-ip-command-examples-usage-syntax/ (See Linux/Unix ip command examples for more info)
|
|
|
|
|
[5]:https://www.cyberciti.biz/media/new/faq/2018/01/Build-a-network-bridge-with-nmcli-on-Linux.jpg
|
|
|
|
|
[6]:https://www.cyberciti.biz/faq/linux-unix-appleosx-bsd-cat-command-examples/ (See Linux/Unix cat command examples for more info)
|
|
|
|
|
[7]:https://twitter.com/nixcraft
|
|
|
|
|
[8]:https://facebook.com/nixcraft
|
|
|
|
|
[9]:https://plus.google.com/+CybercitiBiz
|