一、场景描述

最近在测试CloudStack高级网络模式的配置,期间网络这块的确对我造成了一些困扰,现将其整理出来,供大家分享。

两块物理网卡:ifcfg-eno1以及ifcfg-eno2

两块桥接网卡:ifcfg-mbr0以及ifcfg-cloudbr0

其中ifcfg-eno1-->ifcfg-mbr0 (物理接口配置为access口,用于管理网络)

另外ifcfg-eno2-->ifcfg-cloudbr0 (物理网卡配置为trunk口,便于高级网络模式下网络的配置)


二、配置信息

[root@cloudstack-new-01 network-scripts]# cat ifcfg-eno1 
DEVICE=eno1
TYPE=Ethernet
BOOTPROTO=none
ONBOOT=yes
BRIDGE=mbr0
[root@cloudstack-new-01 network-scripts]# cat ifcfg-eno2 
DEVICE=eno2
TYPE=Ethernet
BOOTPROTO=none
ONBOOT=yes
BRIDGE=cloudbr0
[root@cloudstack-new-01 network-scripts]# cat ifcfg-cloudbr0 
DEVICE=cloudbr0
TYPE=Bridge
ONBOOT=yes
BOOTPROTO=none
IPV6INIT=no
IPV6_AUTOCONF=no
DELAY=5
STP=yes
[root@cloudstack-new-01 network-scripts]# cat ifcfg-mbr0 
DEVICE=mbr0
TYPE=Bridge
ONBOOT=yes
BOOTPROTO=none
DELAY=5
STP=yes
IPADDR=172.16.3.100
PREFIX=24
NETWORK=172.16.3.0
GATEWAY=172.16.3.254
DNS1=172.16.2.154
NM_CONTROLLED=no

说明:可以通过brctl show查看桥接的对应关系