Changes between Version 17 and Version 18 of Internal/OpenFlow/Controllers/FloodLight
- Timestamp:
- Mar 2, 2013, 9:37:05 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/OpenFlow/Controllers/FloodLight
v17 v18 6 6 [#features Features][[BR]] 7 7 [#modding Adding functionality][[BR]] 8 [#arch Architecture] - the section most likely to change as I figure things out/discover my own misconceptions. [[BR]]9 8 [#vm Floodlight/Mininet VM][[BR]] 9 [#arch Architecture] - the section is heavily under construction. [[BR]] 10 10 11 == Installation. == #install 11 12 The following describes the installation of !FloodLight on an Ubuntu 11.04 (natty) system. Installation is described on their [http://floodlight.openflowhub.org/getting-started/ website], but will be repeated here. If you are using SSH, You may want X11 forwarding to be able to launch Eclipse later on.[[BR]] … … 97 98 1. add classes used by the service e.g. the REST API 98 99 100 = The Floodlight VM = #vm 101 This is a VM image geared towards !VirtualBox containing a running floodlight instance, mininet, and wireshark. [[BR]] 102 It can easily be run on qemu/kvm after conversion to `qcow2` with `qemu-img convert -O` and with the parameters used to run mininet: 103 {{{ 104 kvm-img convert -O qcow2 Mininet-VM.vmdk mininet.qcow2 105 }}} 106 107 99 108 == Architecture and Implementation == #arch 100 109 This section describes the architecture and some of the implementations of the various parts of the controller, with focus on the controller core functions (net.floodlightcontroller.core* area of source code). This section is fairly dense, and is best referenced alongside the source code. … … 161 170 162 171 Alternatively, messageReceived() may call processOFMessage() to invoke handleMessage(). 163 164 = The Floodlight VM = #vm165 This is a VM image geared towards !VirtualBox containing a running floodlight instance, mininet, and wireshark. [[BR]]166 It can easily be run on qemu/kvm after conversion to `qcow2` with `qemu-img convert -O` and with the parameters used to run mininet:167 {{{168 kvm-img convert -O qcow2 Mininet-VM.vmdk mininet.qcow2169 }}}170 171 == temporary mininet info ==172 Using with vnc: requires:173 {{{174 kvm-pxe ssvnc tightvncserver175 }}}