Changes between Version 7 and Version 8 of JoeSandbox/OpenFlowOVS/Execute


Ignore:
Timestamp:
08/25/14 14:26:32 (10 years ago)
Author:
zwang@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • JoeSandbox/OpenFlowOVS/Execute

    v7 v8  
    126126  {{{
    127127  cd /tmp/ryu
    128   PYTHONPATH=. ./bin/ryu-manager ryu/ext/simple_switch.py
     128  ./bin/ryu-manager ryu/ext/simple_switch.py
    129129  }}}
    130130
     
    252252  2. In the contorller host directory `/tmp/ryu/ryu/ext` you would see three files:
    253253
    254        i. '''(I don't have it yet)'''myDuplicateTraffic.py : this is the file that has instructions about how to complete the missing information, go ahead and try to implement your first controller.
     254       i. myDuplicateTraffic.py : this is the file that has instructions about how to complete the missing information, go ahead and try to implement your first controller.
    255255       ii. !DuplicateTraffic.py : this has the actual solution you can just run this if you don't want to bother with writing a controller.
    256256       iii. duplicate.config : in this file, you specify which port you want to duplicate traffic to. To figure out which port maps to which interface, use "sudo ovs-ofctl show br-switch".
     
    259259  {{{
    260260  cd /tmp/ryu
    261   ./bin/ryu-manager ryu/ext/DuplicateTraffic.py
     261  ./bin/ryu-manager ryu/ext/myDuplicateTraffic.py
    262262  }}}
    263263   
     
    303303  7. And start your port forwarding controller:
    304304  {{{
    305   ./bin/ryu-manager ryu/ext/PortForwarding.py
     305  ./bin/ryu-manager ryu/ext/myPortForwarding.py
    306306  }}}
    307307
     
    331331  {{{
    332332  cd /tmp/ryu
    333   ./bin/ryu-manager ryu/ext/Proxy.py
     333  ./bin/ryu-manager ryu/ext/myProxy.py
    334334  }}}
    335335