$ apt-get update $ apt-get install openvswitch-datapath-source bridge-utils $ module-assistant auto-install openvswitch-datapath $ apt-get install openvswitch-brcompat openvswitch-common $ apt-get install curl traceroute
the 3rd command, that is: $ module-assistant auto-install openvswitch-datapath fails
screenshot is attached with email.For node 4 which already has ovs installed in it, the following commands (to configure Open vSwitch to use those interfaces as if they were the interfaces of a switch) were meant to be attempted. The very first command gave an error:
ovs-vsctl add-br br-int ovs-vsctl add-port br-int eth2 ifconfig eth2 0 ifconfig br-int 10.10.1.2 netmask 255.255.255.0 route add -net 10.10.1.0 netmask 255.255.255.0 dev br-int ovs-vsctl add-br br-int2 ovs-vsctl add-port br-int2 eth4 ifconfig eth4 0 ifconfig br-int2 10.10.2.1 netmask 255.255.255.0 route add -net 10.10.2.0 netmask 255.255.255.0 dev br-int2which command sequence may be used to configure a switch node (one that has ovs installed) so that its ethernet interfaces can be used for switch interfaces?Thanks & RegardsSanghamitra
You received this message because you are subscribed to a topic in the Google Groups "emulab-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/emulab-users/xU2m6C9LaKE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to emulab-users...@googlegroups.com.
ovs-vsctl add-br br-int ovs-vsctl add-port br-int eth2 ifconfig eth2 0 ifconfig br-int 10.10.1.2 netmask 255.255.255.0 route add -net 10.10.1.0 netmask 255.255.255.0 dev br-int ovs-vsctl add-br br-int2 ovs-vsctl add-port br-int2 eth4 ifconfig eth4 0 ifconfig br-int2 10.10.2.1 netmask 255.255.255.0 route add -net 10.10.2.0 netmask 255.255.255.0 dev br-int2
5) where exactly (for e.g. inside /user) may I save the .py files written for controller. Say for e.g. if my controller is residing in the same node which is also a switch for a lan then exactly inside which folder do i save the py file with the controller code?6) how may the switches be connected to each other and to the rest of the nodes for e.g. like connecting the ethernet of the nodes or connecting the in_port of one node with the out_port of a switch and so on........?ovs-vsctl add-br br-int ovs-vsctl add-port br-int eth2 ifconfig eth2 0 ifconfig br-int 10.10.1.2 netmask 255.255.255.0 route add -net 10.10.1.0 netmask 255.255.255.0 dev br-int ovs-vsctl add-br br-int2 ovs-vsctl add-port br-int2 eth4 ifconfig eth4 0 ifconfig br-int2 10.10.2.1 netmask 255.255.255.0 route add -net 10.10.2.0 netmask 255.255.255.0 dev br-int2
so these codes too should reside in the start file (that runs to set up the expt.) along with the code for building an image that loads each node with ovs????
Sorry ... too long queries form my end. & the last post got send incomplete (accidental press of the send button)
Thanks & Regards
Sanghamitra## Download, configure,
compile, and install Open vSwitch.
wget http://openvswitch.org/releases/openvswitch-2.3.0.tar.gz
tar zxf openvswitch-2.3.0.tar.gz
cd openvswitch-2.3.0
./configure
make
sudo make install
## Clean up.
cd /
sudo rm -rf /work
## Logout, use Emulab web interface to make a
disk image.
and made the disk image following the instructions at: https://wiki.emulab.net/wiki/Tutorial#section-24
So I'll now try the modified sequence as:?
## Download, configure, compile, and install Open vSwitch.
wget http://openvswitch.org/releases/openvswitch-2.3.0.tar.gz
tar zxf openvswitch-2.3.0.tar.gz
cd openvswitch-2.3.0
./configure
make modules_install (instead of: make)
sudo /sbin/modprobe openvswitch (instead of: sudo make install)
## Clean up.
cd /
sudo rm -rf /work
## Logout, use Emulab web interface to make a disk image as per: https://wiki.emulab.net/wiki/Tutorial#section-24
& to verify that the modules have been loaded, run "/sbin/lsmod" and check that openvswitch is listed.
For a node which already has ovs installed in it, trying to run the following commands (to configure Open vSwitch to use those interfaces as if they were the interfaces of a switch) were meant to be attempted. The very first command gave an error. The comand & error are:
Command given: apt-get install openvswitch-datapath-source bridge-utils module-assistant auto-install openvswitch-datapath
error generated is : E: Unable to locate package auto-install
E: Unable to locate package openvswitch-datapath
I will let you know how things turn out after running the modified command.
Thanks & Regards
## Download, configure, compile, and install Open vSwitch.
wget http://openvswitch.org/releases/openvswitch-2.3.0.tar.gz
tar zxf openvswitch-2.3.0.tar.gz
cd openvswitch-2.3.0
./configure
make modules_install (instead of: make)
sudo /sbin/modprobe openvswitch (instead of: sudo make install)
## Clean up.
cd /
sudo rm -rf /work
## Logout, use Emulab web interface to make a disk image as per: https://wiki.emulab.net/wiki/Tutorial#section-24
& to verify that the modules have been loaded, run "/sbin/lsmod" and check that openvswitch is listed.
However, on trying to execute the command: make modules_install (marked in red) instead of make the following error is produced:
make: Nothing to be done for modules_install
So then i changed the sequence a bit and ran the following:
wget http://openvswitch.org/releases/openvswitch-2.3.0.tar.gz
tar zxf openvswitch-2.3.0.tar.gz
cd openvswitch-2.3.0
./configure
make
make modules_install
sudo /sbin/modprobe openvswitch (instead of: sudo make install)
make modules_install gives the same error (in green as shown above).
On running /sbin/lsmod openvswitch and modules like gre, vxlan & libcrc32c which use openvswitch are listed
1) what will be the modified sequence of commands that i need to run?
2) will the modified sequence also enable a successful execution of the following commands & writing and working of controllers in pox environment?
ovs-vsctl add-br br-int ovs-vsctl add-port br-int eth2 ifconfig eth2 0 ifconfig br-int 10.10.1.2 netmask 255.255.255.0 route add -net 10.10.1.0 netmask 255.255.255.0 dev br-int ovs-vsctl add-br br-int2 ovs-vsctl add-port br-int2 eth4 ifconfig eth4 0 ifconfig br-int2 10.10.2.1 netmask 255.255.255.0 route add -net 10.10.2.0 netmask 255.255.255.0 dev br-int2
#ovsdb-tool create /usr/local/etc/openvswitch/conf.db vswitchd/vswitch.ovsschema
(ALL the commands were run at: root@node1:/users/peertest/# )
and it gives an error saying=>
ovsdb-tool: failed to read schema: "vswitchd/vswitch.ovsschema" could not be read as JSON (error opening "vswitchd/vswitch.ovsschema" : No such file or directory)
Now what to do??!!! Am I trying to run the commands inside the wrong directory?sudo ovs-vsctl add-br OVSbr1 sudo ovs-vsctl add-br OVSbr2
sudo ifconfig eth1 0 sudo ifconfig eth2 0sudo ovs-vsctl add-port OVSbr1 eth1 sudo ovs-vsctl add-port OVSbr2 eth2
% ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \
--remote=db:Open_vSwitch,Open_vSwitch,manager_options \
--pidfile --detachi.e. added the % sign before the command, but then corrected and i guess the commands executed fine. I gave the 1st command without the --private-key, --certificate, and --bootstrap-ca-cert.
Then gave:% ovs-vsctl --no-wait initand % ovs-vswitchd --pidfile --detachthese too went well. From:http://groups.geni.net/geni/wiki/GENIExperimenter/Tutorials/OpenFlowOVS/DesignSetupand http://docs.openstack.org/havana/install-guide/install/yum/content/install-neutron.install-plug-in.ovs.htmli gave:# ovs-vsctl add-br br-int
sudo ifconfig eth2 0sudo ifconfig eth3 0#ovsdb-tool create /usr/local/etc/openvswitch/conf.db /users/peertest/openvswitch-2.3.0/vswitchd/vswitch.ovsschema
# ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \
--remote=db:Open_vSwitch,Open_vSwitch,manager_options \
--private-key=db:Open_vSwitch,SSL,private_key \
--certificate=db:Open_vSwitch,SSL,certificate \
--bootstrap-ca-cert=db:Open_vSwitch,SSL,ca_cert \
--pidfile --detach
# ovs-vsctl --no-wait init
# ovs-vswitchd --pidfile --detach
# ovs-vsctl add-br br-int
sudo ifconfig eth2 0sudo ifconfig eth3 0# ovs-vsctl add-br br-int
# ovs-vsctl add-br br0
# ovs-vsctl add-br br1
# ovs-vsctl list-br
br-int
br0
br1
In, fact preconfig2.jpeg shows that # ovs-vsctl list-br gives:
br-int # ovs-vsctl add-br br-int
# ovs-vsctl add-br br0
ovs-vsctl: Error detected while setting up 'br0'. See ovs-vswitchd log for details
# ovs-vsctl add-br br1
ovs-vsctl: Error detected while setting up 'br1'. See ovs-vswitchd log for details
# ovs-vsctl list-br
br-int
br0
br1
# ovs-vsctl add-br br0
ovs-vsctl: Error detected while setting up 'br0'. See ovs-vswitchd log for details
# ovs-vsctl add-br br1
ovs-vsctl: Error detected while setting up 'br1'. See ovs-vswitchd log for details
why is there problem while trying to create br-int or br0, br1 for that matter?
Thanks & Regards
Sanghamitra
wget http://openvswitch.org/releases/openvswitch-2.3.0.tar.gz
tar zxf openvswitch-2.3.0.tar.gz
cd openvswitch-2.3.0
./configure
make
sudo make install
make modules_install
sudo /sbin/modprobe openvswitch
/sbin/lsmod
/sbin/lsmod shows openvswitch was indeed installed. No errors were resulted by running:
sudo /sbin/modprobe openvswitch
BUT...
make modules_install
gives something like:
Nothing to be done for 'modules-install'
As per step 5 of : https://github.com/openvswitch/ovs/blob/master/INSTALL.md#building-the-sources
as per this link: If the modprobe operation fails, look at the last few kernel log messages (e.g. with dmesg | tail):
I checked kern.log and it said something about : module verification failed: signature &/or required key missing- tainting kernel
dmesg log gives:
init: failed to obtain startpar-bridge instance: Unknown parameter: INSTANCE
On trying to run:
/sbin/modinfo openvswitch.komodinfo: ERROR: Module openvswitch.ko not found
/sbin/rmmod bridge gives:
Module bridge is not currently loadedSo something is wrong-- the modules dont get loaded/installed properly though the sequence of instructions are more or less the same. Does this mean that OVS does not support this configuration and that it was built for a different module than the one it is being tried on? How may i solve this?Thanks & Regards
Sanghamitra
./configure --with-linux=/lib/modules/`uname -r`/build
./configure --with-linux=/lib/modules/`uname -r`/build
sudo mkdir /work
cd /work
## Download, configure, compile, and install
Open vSwitch.
wget http://openvswitch.org/releases/openvswitch-2.3.0.tar.gz
tar zxf openvswitch-2.3.0.tar.gz
cd openvswitch-2.3.0
./configure --with-linux=/lib/modules/`uname -r`/build
make modules_install
sudo /sbin/modprobe openvswitch
/sbin/lsmod
apt-get install openvswitch-switch
#ovsdb-tool create /usr/local/etc/openvswitch/conf.db /users/peertest/openvswitch-2.3.0/vswitchd/vswitch.ovsschema
# ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \
--remote=db:Open_vSwitch,Open_vSwitch,manager_options \
--pidfile --detach
sudo ovs-vswitchd --pidfile --detach --log-filesudo ovs-vsctl add-br OVSbr1sudo ovs-vsctl add-br OVSbr2sudo ifconfig eth1 0sudo ifconfig eth2 0sudo ovs-vsctl add-port OVSbr1 eth1sudo ovs-vsctl add-port OVSbr2 eth2sudo ovs-vsctl show#ovsdb-tool create /usr/local/etc/openvswitch/conf.db /users/peertest/openvswitch-2.3.0/vswitchd/vswitch.ovsschema
2nd place:
# ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \
--remote=db:Open_vSwitch,Open_vSwitch,manager_options \
--pidfile --detach
--
wget http://openvswitch.org/releases/openvswitch-2.3.1.tar.gz
tar zxf openvswitch-2.3.1.tar.gz
cd openvswitch-2.3.1
./configure --with-linux=/lib/modules/`uname -r`/build
sudo /sbin/modprobe openvswitch
/sbin/lsmod
cd /
sudo rm -rf /work
Then logged out and used Emulab web interface to make a disk image
#ovsdb-tool create /usr/local/etc/openvswitch/conf.db /users/peertest/openvswitch-2.3.1/vswitchd/vswitch.ovsschema
# ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \
--remote=db:Open_vSwitch,Open_vSwitch,manager_options \
--pidfile --detach
sudo ovs-vsctl add-br OVSbr1sudo ovs-vsctl add-br OVSbr2sudo ifconfig eth2 0sudo ifconfig eth3 0sudo ovs-vsctl add-port OVSbr1 eth2sudo ovs-vsctl add-port OVSbr2 eth3sudo ovs-vsctl showsudo apt-get -y install graphviz
sudo apt-get install build-essential fakeroot dpkg-checkbuilddeps sudo apt-get install python-all python-qt4 python-zopeinterface python-twisted-conch fakeroot debian/rules binary dpkg-checkbuilddeps make distclean fakeroot debian/rules binaryThen I reserved a new node with Ubuntu 14.04 and transferred the .deb packages to the new node. This is where my notes are not great
sudo apt-get install graphviz python-all python-qt4 python-zopeinterface python-twisted-conchand I believe that I installed these packages in this order:
Hi,Thanks!! So if i install version 2.3.1 and eliminate that step it would be ok? I think Im gonna do that and report back.Thanks & Best WishesSanghamitra
wget http://openvswitch.org/releases/openvswitch-2.3.1.tar.gz
tar zxf openvswitch-2.3.1.tar.gz
cd openvswitch-2.3.1
./configure --with-linux=/lib/modules/`uname -r`/build
sudo /sbin/modprobe openvswitch
/sbin/lsmod
cd /
sudo rm -rf /work
After this i have used the Emulab web interface to make the disc image and load it in select nodes.
Niky, if the above command set is ok. then will You send me the command set which is required for configuring OVS-2.3.1 loaded on a node with preinstalled with Ubuntu 14.04 LTS 64 bit?
I have gone through the notes that You have sent...
" save the kernel modules.... and then write an install script to load these modules.
Make debian packages out of the source and install the packages"--- these do not sound easy
I'm really sorry to ask but could you just (like you listed out command sequence about how you installed them in GENI) provide me the command sequence which need to be run after the above sequence (in blue) has been run?
If the above sequence in blue is not what should be done then can you provide me both command sequences-- ie the sequence required before creating the disc image and the sequence after the disc image is created (i.e the one to configure OVS).
Its just that I've been struggling with this installation... for so long... this seems like a never ending struggle. I'm not even through with the installation and configuration.. i dont know if i'll be getting my experiments started any time soon....
Thank You
Sanghamitra
wget http://openvswitch.org/releases/openvswitch-2.3.1.tar.gz
tar zxf
openvswitch-2.3.1.tar.gz
cd
openvswitch-2.3.1
./configure --with-linux=/lib/modules/`uname -r`/build
sudo /sbin/modprobe openvswitch
/sbin/lsmod
After that try to
start the ovs service and see
if that works. If it does try taking an image and use that. If that does
not
work you might have to go down the package road.
I am sorry you are
having troubles with installing OVS, it can be a tricky process that is
why I suggested if you
could use the image made in the GENI side to make this easier.
Good luck,
Niky
Hi Niky,I went through the README file that comes with OVS-2.3.1. It says that the main components of this distribution are: ovs-vswitchd, ovsdb-server, ovs-dpctl and scripts and specs for building RPMs for Citrix XenServer & RHEL.That should mean that these components get installed when i run the following command sequence:sudo mkdir /work
cd /workwget http://openvswitch.org/releases/openvswitch-2.3.1.tar.gz
tar zxf openvswitch-2.3.1.tar.gz
cd openvswitch-2.3.1./configure --with-linux=/lib/modules/`uname -r`/build
sudo make modules_installsudo /sbin/modprobe openvswitch
/sbin/lsmod
cd /
sudo rm -rf /work
After this i have used the Emulab web interface to make the disc image and load it in select nodes.
Niky, if the above command set is ok. then will You send me the command set which is required for configuring OVS-2.3.1 loaded on a node with preinstalled with Ubuntu 14.04 LTS 64 bit?
I have gone through the notes that You have sent...
" save the kernel modules.... and then write an install script to load these modules.
Make debian packages out of the source and install the packages"--- these do not sound easy
I'm really sorry to ask but could you just (like you listed out command sequence about how you installed them in GENI) provide me the command sequence which need to be run after the above sequence (in blue) has been run?
If the above sequence in blue is not what should be done then can you provide me both command sequences-- ie the sequence required before creating the disc image and the sequence after the disc image is created (i.e the one to configure OVS).
Its just that I've been struggling with this installation... for so long... this seems like a never ending struggle. I'm not even through with the installation and configuration.. i dont know if i'll be getting my experiments started any time soon....
Thank You
Sanghamitra
% mkdir -p /usr/local/etc/openvswitch% ovsdb-tool create /usr/local/etc/openvswitch/conf.db vswitchd/vswitch.ovsschema#ovsdb-tool create /usr/local/etc/openvswitch/conf.db /users/peertest/openvswitch-2.3.1/vswitchd/vswitch.ovsschema
but that too didin't work... Isn't the source tree or the absolute pathname supposed to be : /users/peertest/openvswitch-2.3.1/vswitchd/vswitch.ovsschema
Also, when i did sudo rm -rf /work i guess i removed the source package along with /work
what to do now?
I tried the command along with the other command immediately before it:% mkdir -p /usr/local/etc/openvswitch% ovsdb-tool create /usr/local/etc/openvswitch/conf.db vswitchd/vswitch.ovsschemaand it gives an error saying=>
ovsdb-tool: failed to read schema: "vswitchd/vswitch.ovsschema" could not be
read as JSON (error opening "vswitchd/vswitch.ovsschema" : No such file or
directory)
I recalled that the "vswitchd/vswitch.ovsschema" file is found in the OVS source tree. So, either i need to issue the "ovsdb-tool" command from the root directory of my OVS source tree, or name the file via an absolute filename.So i tried it with:#ovsdb-tool create /usr/local/etc/openvswitch/conf.db /users/peertest/openvswitch-2.3.1/vswitchd/vswitch.ovsschema
but that too didin't work... Isn't the source tree or the absolute pathname supposed to be : /users/peertest/openvswitch-2.3.1/vswitchd/vswitch.ovsschema
Also, when i did sudo rm -rf /work i guess i removed the source package along with /work
what to do now?
I am not sure about your setup but the instructions that come with OVS:
https://github.com/openvswitch/ovs/blob/master/INSTALL.md
Say to run:
ovsdb-tool create /usr/local/etc/openvswitch/conf.db vswitchd/vswitch.ovsschema
Note that there is another command before that. I would suggest following the instructions
on the above file carefully. OVS comes with pretty good documentation.
Good luck,
Niky
--
You received this message because you are subscribed to a topic in the Google Groups "emulab-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/emulab-users/xU2m6C9LaKE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to emulab-users...@googlegroups.com.
To post to this group, send email to emulab...@googlegroups.com.
Visit this group at http://groups.google.com/group/emulab-users.
For more options, visit https://groups.google.com/d/optout.
#ovsdb-tool create /usr/local/etc/openvswitch/conf.db /users/peertest/openvswitch-2.3.1/vswitchd/vswitch.ovsschema
else it was giving error. The above command ran ok.
2nd change:
gave the partial command only:
# ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \
--remote=db:Open_vSwitch,Open_vSwitch,manager_options \
--pidfile --detach
This also ran fine
Unfortunately I don't know what is wrong with your setup. I just reserved an Ubuntu 14 node and went
through the steps and it just worked for me. I also paste here the history of the commands I ran.
Cheers,
niky
sudo apt-get update
sudo apt-get -y install graphviz
wget http://openvswitch.org/releases/openvswitch-2.3.1.tar.gz
tar xvfz openvswitch-2.3.1.tar.gz
cd openvswitch-2.3.1/
./boot.sh
./configure --with-linux=/lib/modules/`uname -r`/build
make
sudo make install
sudo make modules_install
sudo /sbin/modprobe openvswitch
/sbin/lsmod
sudo mkdir -p /usr/local/etc/openvswitch
sudo ovsdb-tool create /usr/local/etc/openvswitch/conf.db vswitchd/vswitch.ovsschema
sudo ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock --remote=db:Open_vSwitch,Open_vSwitch,manager_options --private-key=db:Open_vSwitch,SSL,private_key --certificate=db:Open_vSwitch,SSL,certificate --bootstrap-ca-cert=db:Open_vSwitch,SSL,ca_cert --pidfile --detach
sudo ovs-vsctl --no-wait init
sudo ovs-vswitchd --pidfile --detach
sudo ovs-vsctl add-br br0
Unfortunately I don't know what is wrong with your setup. I just reserved an Ubuntu 14 node and went
through the steps and it just worked for me. I also paste here the history of the commands I ran.
Cheers,
niky
sudo apt-get update
sudo apt-get -y install graphviz
wget http://openvswitch.org/releases/openvswitch-2.3.1.tar.gz
tar xvfz openvswitch-2.3.1.tar.gz
cd openvswitch-2.3.1/
./boot.sh
./configure --with-linux=/lib/modules/`uname -r`/build
make
sudo make install
sudo make modules_install
sudo /sbin/modprobe openvswitch
/sbin/lsmod
sudo mkdir -p /usr/local/etc/openvswitch
sudo ovsdb-tool create /usr/local/etc/openvswitch/conf.db vswitchd/vswitch.ovsschema
sudo ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock --remote=db:Open_vSwitch,Open_vSwitch,manager_options --private-key=db:Open_vSwitch,SSL,private_key --certificate=db:Open_vSwitch,SSL,certificate --bootstrap-ca-cert=db:Open_vSwitch,SSL,ca_cert --pidfile --detach
sudo ovs-vsctl --no-wait init
sudo ovs-vswitchd --pidfile --detach
sudo ovs-vsctl add-br br0
I log into a node say node1. In this the following commands are run:sudo apt-get update
sudo apt-get -y install graphviz
wget http://openvswitch.org/releases/openvswitch-2.3.1.tar.gz
tar xvfz openvswitch-2.3.1.tar.gz
cd openvswitch-2.3.1/
./boot.sh
./configure --with-linux=/lib/modules/`uname -r`/build
make
sudo make install
sudo make modules_install
sudo /sbin/modprobe openvswitch
/sbin/lsmod
Then I create a disk image using Emulab web interface of node 1. The following image is created: https://www.emulab.net/showimageid.php3?imageid=4643Then the .ns file for the expt. is modified, so that some of the nodes are loaded with this image. After that login to node 1 and run the following commands:
sudo mkdir -p /usr/local/etc/openvswitch
sudo ovsdb-tool create /usr/local/etc/openvswitch/conf.db vswitchd/vswitch.ovsschema
the last command gives:ovsdb-tool: failed to read schema: “vswitchd/vswitch.ovsschema” could not be read as JSON (error opening “vswitchd/vswitch.ovsschema”: No such file or directory)So I make a little change and instead give the command:#ovsdb-tool create /usr/local/etc/openvswitch/conf.db /users/peertest/openvswitch-2.3.1/vswitchd/vswitch.ovsschemaThis executed fine. Then the following commands are given:# ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \
--remote=db:Open_vSwitch,Open_vSwitch,manager_options \
--pidfile --detach
sudo ovs-vsctl --no-wait init
sudo ovs-vswitchd --pidfile --detach
sudo ovs-vsctl add-br br0last line gives following error:ovs-vsctl: Error detected while setting up ‘br0’. See ovs-vswitchd log for detailsThen following commands are issued:sudo ovs-vswitchd --pidfile --detach --log-file
cat /usr/local/var/log/openvswitch/ovs-vswitchd.log sudo ovs-vsctl add-br br0ovs-vsctl: cannot create a bridge named br0 because a bridge named br0 already exists.sudo ovs-vsctl showgives :f2cac22c-1ea1-4f04-921b-522097ccae1c Bridge “br0” Port “br0” Interface “br0” type: internalovs-vsctl: Error detected while setting up ‘br0’. See ovs-vswitchd log for details& laterovs-vsctl: cannot create a bridge named br0 because a bridge named br0 already exists.
I wonder what is going wrong...
Thank You once again.Sanghamitra