Hi,

You need to configure two bridges say cloudbr0 and cloudbr1 using the two 
interfaces present on the KVM host. 
Use these bridge names as traffic labels in the Physical Network you create 
during zone creation in CloudStack.

Eg. If cloudbr0 is on eth0 and cloudbr1 is on eth1 then use cloudbr0 as traffic 
lable for guest and public traffic and cloudbr1 for management traffic.

Following configuration might help you in configuring bridges:

Configure network interfaces:

/etc/sysconfig/network-scripts/ifcfg-eth0
 DEVICE=eth0
 BOOTPROTO=none
 IPV6INIT=no
 NM_CONTROLLED=no
 ONBOOT=yes
 TYPE=OVSPort
 DEVICETYPE=ovs
 OVS_BRIDGE=cloudbr0
 
/etc/sysconfig/network-scripts/ifcfg-eth1
 DEVICE=eth1
 BOOTPROTO=none
 IPV6INIT=no
 NM_CONTROLLED=no
 ONBOOT=yes
 TYPE=OVSPort
 DEVICETYPE=ovs
 OVS_BRIDGE=cloudbr1
 
/etc/sysconfig/network-scripts/ifcfg-cloudbr0
 DEVICE=cloudbr0
 ONBOOT=yes
 DEVICETYPE=ovs
 TYPE=OVSBridge
 BOOTPROTO=static
 IPADDR=172.16.10.10
 GATEWAY=172.16.10.1
 NETMASK=255.255.255.0
 HOTPLUG=no
 
/etc/sysconfig/network-scripts/ifcfg-cloudbr1
 DEVICE=cloudbr1
 ONBOOT=yes
 DEVICETYPE=ovs
 TYPE=OVSBridge
 BOOTPROTO=none
 HOTPLUG=no

Thanks,
Sanjeev
-----Original Message-----
From: Jake G. [mailto:dj_dark_jungl...@yahoo.com] 
Sent: Friday, September 06, 2013 10:05 AM
To: users@cloudstack.apache.org
Subject: Help with host network config KVM + Centos

Hi all,

I have a single centOS 6.4 KVM host with two NICs

eth0: 192.168.100.131/24 GW 192.168.100.254 is for public access (internet 
access)
eth1: 10.3.9.50/8 no GW is for management access

Could someone please help me with the initial configuration to work with KVM 
and Cloudstack?
This setup is different than the documentation.

Thank you for your help in advance!

Reply via email to