Changes between Version 39 and Version 40 of Internal/OpenFlow/HostSetup


Ignore:
Timestamp:
Jun 2, 2010, 9:33:51 PM (14 years ago)
Author:
akoshibe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/OpenFlow/HostSetup

    v39 v40  
    135135The selftest ''does not'' work in Ubuntu. so don't try it.
    136136
    137 === II: Setup - !OpenFlow components. ===
    138 The !OpenFlow wiki on CentOS NetFPGA setup were followed in conjunction with the netfpga site wiki for the Tunneling OpenFlow NetFPGA. Stes are reiterated here since nothing is permanent.
     137== II: Setup - !OpenFlow components. ==
     138The !OpenFlow wiki on CentOS NetFPGA setup were followed in conjunction with the netfpga site wiki for the Tunneling !OpenFlow NetFPGA. Stes are reiterated here since nothing is permanent.
     139 * [http://netfpga.org/foswiki/bin/view/NetFPGA/OneGig/TunnelingOpenFlowNetFPGA100 Tunneling !OpenFlow NetFPGA ]
     140 * !OpenFlow setup on [http://www.openflowswitch.org/wk/index.php/Ubuntu_Install Ubuntu] and [http://www.openflowswitch.org/wk/index.php/CentOS_NetFPGA_Install CentOS]
    139141
    140142==== 1. dependencies. ====
     
    147149 * m4
    148150
     151==== 2. !OpenFlow package installation ====
     152This happens in the same directory as the netfpga install (here, /home/test). From git repository (automatically pulls the newest version):
     153{{{
     154git clone git://openflowswitch.org/openflow.git
     155cd openflow
     156./boot.sh
     157}}}
    149158
    150  
    151  
     159To make NetFPGA compatible:
     160{{{
     161./configure --enable-hw-lib=nf2
     162}}}
     163
     164Remove avahi-daemon and disable IPv6:
     165{{{
     166sudo apt-get remove avahi-daemon
     167}}}
     168in /etc/sysctl.conf add
     169{{{
     170net.ipv6.conf.all.disable_ipv6 = 1
     171net.ipv6.conf.default.disable_ipv6 = 1
     172}}}
     173and in /etc/modprobe.d/blacklist.conf
     174{{{
     175blacklist net-pf-10
     176blacklist ipv6
     177}}}
    152178[[BR]]
    153179[[BR]]