Changes between Version 12 and Version 13 of HowTo/InstallOVSInProtoGENI


Ignore:
Timestamp:
10/02/13 17:03:42 (11 years ago)
Author:
lnevers@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/InstallOVSInProtoGENI

    v12 v13  
    22= Open vSwitch Installation on ProtoGENI hosts =
    33
    4 This page describes how to install Open vSwitch (OVS) on a ProtoGENI host running an Ubuntu image.
    5 There are two different ways to use OVS within ProtoGENI.
    6   1. Use the `` Image ??. This Image only works with ??, so if there are not nodes available you might  ??
    7  * Download OVS
     4This page describes how to install Open vSwitch (OVS) on a ProtoGENI host running an Ubuntu image. There are different ways to use OVS within ProtoGENI for example experiments see the [wiki:GENIExperimenter/Tutorials/OpenFlowOVS OpenFlow OVS tutorial], which use the image created with these instructions.
     5
     6== How-to ==
     7
     8Captured on an Ubuntu 12.04 system:
     9 1. Download OVS
    810   {{{
    911    wget http://openvswitch.org/releases/openvswitch-1.7.3.tar.gz
     
    1214}}}
    1315
    14   * Follow the instructions at `INSTALL.Linux`
    15      * Install the prerequisets:
     16  2. Follow the instructions at `INSTALL.Linux` file. Install the prerequisets:
    1617     {{{
    1718     sudo apt-get update
    1819     sudo apt-get -y install pkg-config libssl-dev libc-dev
    1920}}}
    20      * Compile and install
     21  3. Compile and install:
    2122     {{{
    2223      ./boot.sh
     
    2526      sudo make install
    2627}}}
    27      * Initialize the configuration database using ovsdb-tool
     28  4. Initialize the configuration database using ovsdb-tool
    2829       {{{
    2930       sudo mkdir -p /usr/local/etc/openvswitch
    3031       sudo ovsdb-tool create /usr/local/etc/openvswitch/conf.db vswitchd/vswitch.ovsschema
    3132}}}
    32      * Startup
     33  5. Startup
    3334      {{{
    3435      sudo ovsdb-server --remote=punix:/usr/local/var/run/openvswitch/db.sock \
     
    4445}}}
    4546
    46 Your host is now ready to run Open vSwitch.
     47  6. Your host is now ready to run Open vSwitch.
     48