On April 18, 2014 at 7:50:46 PM, Junguk Cho (jman...@gmail.com) wrote:
> In FAQ, there is way of configuring one ip address to OVS like this.
> 
> ifconfig eth0 0.0.0.0
> ifconfig br0 192.168.128.5
> 
> 
> There are some sentences.
> 
> "If your only connection to the machine running OVS is through the
> IP address in question, then you would want to run all of these
> commands on a single command line, or put them into a script.
> 
> If there were any additional routes assigned to eth0, then you would
> 
> also want to use commands to adjust these routes to go through br0."
> 
> 
> I did not understand them and it is related to my question.
> Basically, my question is this. Can we assign more ip addresses to
> OVS(br0)??

You can use multiple IP addresses on an inteface using standard Linux IP 
aliasing:

        ifconfig br0 192.168.128.5
        ifconfig br0:1 192.168.128.6
        ifconfig br0:2 192.168.128.9

The FAQ entry above is saying that you need to have your IP addresses on your 
bridge and not attached interfaces.

--Justin



_______________________________________________
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev

Reply via email to