Changes between Version 7 and Version 8 of JoeSandbox/OpenFlowOVS/Execute
- Timestamp:
- 08/25/14 14:26:32 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
JoeSandbox/OpenFlowOVS/Execute
v7 v8 126 126 {{{ 127 127 cd /tmp/ryu 128 PYTHONPATH=../bin/ryu-manager ryu/ext/simple_switch.py128 ./bin/ryu-manager ryu/ext/simple_switch.py 129 129 }}} 130 130 … … 252 252 2. In the contorller host directory `/tmp/ryu/ryu/ext` you would see three files: 253 253 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. 255 255 ii. !DuplicateTraffic.py : this has the actual solution you can just run this if you don't want to bother with writing a controller. 256 256 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". … … 259 259 {{{ 260 260 cd /tmp/ryu 261 ./bin/ryu-manager ryu/ext/ DuplicateTraffic.py261 ./bin/ryu-manager ryu/ext/myDuplicateTraffic.py 262 262 }}} 263 263 … … 303 303 7. And start your port forwarding controller: 304 304 {{{ 305 ./bin/ryu-manager ryu/ext/ PortForwarding.py305 ./bin/ryu-manager ryu/ext/myPortForwarding.py 306 306 }}} 307 307 … … 331 331 {{{ 332 332 cd /tmp/ryu 333 ./bin/ryu-manager ryu/ext/ Proxy.py333 ./bin/ryu-manager ryu/ext/myProxy.py 334 334 }}} 335 335