Changes between Version 24 and Version 25 of Internal/OpenFlow/HostSetup


Ignore:
Timestamp:
Feb 16, 2010, 9:49:54 PM (14 years ago)
Author:
ssugrim
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/OpenFlow/HostSetup

    v24 v25  
    331331 * bootloader: grub
    332332 
    333 == 2. Installing drivers (NetFPGA, building NF2.ko module)  ==
     333== 2. Installing drivers (NetFPGA, building NF2.ko module)  == #BuildingNF2
    334334The host is named "Netfpga1" because it will be a NetFPGA host. So this is sort of important.
    335335
     
    518518# ./secchan/ofprotocol nl:0 tcp:192.168.203.75:6633
    519519}}}
     520
     521=== Building the L2 Tunnel ===
     522
     523==== 2/15/10 ====
     524
     525James guessed that maybe the tunneling code was rolled up into the 0.9.1 version of the NF2 driver. This was incorrect.
     526
     527Following the directions [#BuildingNF2 above], James rebuilt the nf2 drivers, and installed the updated module. We did not notice any changes in the open flow behavior. But the project directory for tunneling was missing.
     528
     529==== 2/16/10 ====
     530
     531The code for the netfpga to do tunneling is present. It includes a different bitfile and some diffrent startup scritps. They claim to be running off version 0.8.9 of somethig (I'm guessing the open flow code)
     532
     533The main script that needs to be modified is the of_setup_to_site1_and_site2.sh script. I've modified the script to reflect our setup:
     534
     535{{{
     536### Variable Setting
     537SRCIP1=192.168.200.87   #For nf2c1  Change accordingly.
     538#SRCIP2=192.168.100.50   #For nf2c2  Change accordingly.
     539SRCMAC1=00:4e:46:32:43:01
     540#SRCMAC2=00:4e:46:32:43:02
     541DSTIP1=10.50.0.62;# IP address of the tunneling target site 1
     542#DSTIP2=12.13.14.15;   # IP address of the tunneling target site 2
     543# Your local Gateway MAC address
     544DSTMAC1=00:4E:46:32:43:01
     545#DSTMAC2=00:d0:05:5d:24:02
     546
     547TUNIF1=nf2c1 # The tunneling target site 1
     548#TUNIF2=nf2c2 # The tunneling target site 2
     549}}}
     550
     551Examining the rest of the script seems to require a setreg tool, that isn't installed as of yet. mono-devel claims is comes form the package mono-devel.
     552
     553
     554
     555
     556
     557
     558
    520559[[BR]]
    521560[[BR]]