Re: [ovs-discuss] Newbie Questions

2012-07-25 Thread Reid Price
Hi Arindam, About 1/3 of the way through the FAQ there is a section entitled: Configuration Problems The first Q/A answers several of the questions you have asked and gives examples. You might also find luck with the mailing list archive, which is almost certainly the top block of results if y

Re: [ovs-discuss] Newbie Questions

2012-07-19 Thread Arindam Choudhury
all your answers, can you give me some examples or something? On Thu, Jul 19, 2012 at 10:25 PM, Ben Pfaff wrote: > How what? > > On Thu, Jul 19, 2012 at 10:20:16PM +0200, Arindam Choudhury wrote: > > but how? > > > > On Thu, Jul 19, 2012 at 10:16 PM, Ben Pfaff wrote: > > > > > On Thu, Jul 19, 2

Re: [ovs-discuss] Newbie Questions

2012-07-19 Thread Ben Pfaff
How what? On Thu, Jul 19, 2012 at 10:20:16PM +0200, Arindam Choudhury wrote: > but how? > > On Thu, Jul 19, 2012 at 10:16 PM, Ben Pfaff wrote: > > > On Thu, Jul 19, 2012 at 08:42:51PM +0200, Arindam Choudhury wrote: > > > How IP addresses are manipulated in Open Vswitch? > > > > With "ifconfig"

Re: [ovs-discuss] Newbie Questions

2012-07-19 Thread Arindam Choudhury
but how? On Thu, Jul 19, 2012 at 10:16 PM, Ben Pfaff wrote: > On Thu, Jul 19, 2012 at 08:42:51PM +0200, Arindam Choudhury wrote: > > How IP addresses are manipulated in Open Vswitch? > > With "ifconfig" or "ip", normally. > > > If I create virtual machines connected to br0. There IP address will

Re: [ovs-discuss] Newbie Questions

2012-07-19 Thread Ben Pfaff
On Thu, Jul 19, 2012 at 08:42:51PM +0200, Arindam Choudhury wrote: > How IP addresses are manipulated in Open Vswitch? With "ifconfig" or "ip", normally. > If I create virtual machines connected to br0. There IP address will also > be in the same subnet of XX.XX.XX.XX.? They don't have to be.

Re: [ovs-discuss] Newbie Questions

2012-07-19 Thread Arindam Choudhury
I read the FAQ. In my system I have only one NIC through which I am connected to the internet. so I did the following: # ovs-vsctl add-br br0 # ovs-vsctl add-port br0 em1 # ifconfig em1 0.0.0.0 # ifconfig br0 netmask # ip route del default dev em1 # ip route add default dev br0 # dhclient br0

Re: [ovs-discuss] Newbie Questions

2012-07-19 Thread Ben Pfaff
On Thu, Jul 19, 2012 at 10:43:06AM +0200, Arindam Choudhury wrote: > So in OpenVSwitch, we create a bridge and connect it with the ethernet card. > > So, is it mean that the guests will be in the same subnet of the host? Not necessarily. > Is it possible to put guests on a different subnet? Yes

[ovs-discuss] Newbie Questions

2012-07-19 Thread Arindam Choudhury
Hi, So in OpenVSwitch, we create a bridge and connect it with the ethernet card. So, is it mean that the guests will be in the same subnet of the host? Is it possible to put guests on a different subnet? I am very new and trying to understand linux bridging and OpenVSwitch. Can you suggest me s