Changes between Version 3 and Version 4 of HowTo/InstallOVSInProtoGENI


Ignore:
Timestamp:
03/10/13 18:50:24 (11 years ago)
Author:
nriga@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/InstallOVSInProtoGENI

    v3 v4  
    2121      sudo make install
    2222}}}
     23     * Initialize the configuration database using ovsdb-tool
     24       {{{
     25       sudo mkdir -p /usr/local/etc/openvswitch
     26       sudo ovsdb-tool create /usr/local/etc/openvswitch/conf.db vswitchd/vswitch.ovsschema
     27}}}
     28    * Startup
     29      {{{
     30      sudo ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \
     31                     --remote=db:Open_vSwitch,manager_options \
     32                     --private-key=db:SSL,private_key \
     33                     --certificate=db:SSL,certificate \
     34                     --bootstrap-ca-cert=db:SSL,ca_cert \
     35                     --pidfile --detach
     36}}}