-
Notifications
You must be signed in to change notification settings - Fork 7
Home
jgrunert edited this page Oct 31, 2015
·
105 revisions
| Name | Summary | Dependencies on modules |
|---|---|---|
| SwitchAdapter | Wraps an OpenFlow switch as a module. | - |
| SwitchRegistryModule | Provides detailed information about all switches in the network | - |
| DeviceModule | Knows about all devices in the network (excluding switches). | - |
| ARPModule | Answers ARP-Requests directly to reduce flooding in the network. | DeviceModule |
| SimpleForwardingModule | Packets are forwarded to their destinations using PacketOut messages. (Layer 2 forwarding) | DeviceModule |
| LinkDiscoveryModule | Finds out about links between switches. | SwitchRegistryModule |
| TopologyModule | Provides a full topology of the network, including switches and links between them. | SwitchRegistryModule, LinkDiscoveryModule |
| SwitchAdapterServer | A module which listens on the openFlow port in order to start SwitchAdapter modules from incoming switch connections. | - |
| StatisticsModule | Collects port- and tablestatistics from Switches | - |
| ForwardingModule | Installs routes based on layer-2 info(dst-mac). | TopologyModule, DeviceModule |
| FlowRegistryModule | Knows what flows are currently installed on all switches. | |
| LoggingModule | Logs all zmf pub/sub traffic. | - |
| RestAdminModule | provides REST-interface for enabling and disabling modules in the network | - |