Kandoo: A Framework for Efficient and Scalable Offloading of Control Applications
|
|
|
- Crystal McBride
- 10 years ago
- Views:
Transcription
1 Kandoo: A Framework for Efficient and Scalable Offloading of Control s Soheil Hassas Yeganeh University of Toronto [email protected] Yashar Ganjali University of Toronto [email protected] ABSTRACT Limiting the overhead of frequent events on the control plane is essential for realizing a scalable Software-Defined Network. One way of limiting this overhead is to process frequent events in the data plane. This requires modifying switches and comes at the cost of visibility in the control plane. Taking an alternative route, we propose Kandoo, a framework for preserving scalability without changing switches. Kandoo has two layers of controllers: (i) the bottom layer is a group of controllers with no interconnection, and no knowledge of the network-wide state, and (ii) the top layer is a logically centralized controller that maintains the network-wide state. s at the bottom layer run only local control applications (i.e., applications that can function using the state of a single switch) near datapaths. These controllers handle most of the frequent events and effectively shield the top layer. Kandoo s design enables network operators to replicate local controllers on demand and relieve the load on the top layer, which is the only potential bottleneck in terms of scalability. Our evaluations show that a network controlled by Kandoo has an order of magnitude lower control channel consumption compared to normal OpenFlow networks. Categories and Subject Descriptors C.2 [Computer-communication networks]: Network Architecture and Design Keywords Software-Defined Networks, Data Center Networks, Distributed Control Plane 1. INTRODUCTION Frequent and resource-exhaustive events, such as flow arrivals and network-wide statistics collection events, stress the control plane and consequently limit the scalability of OpenFlow networks [5, 18, 4]. Although one can Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation on the first page. To copy otherwise, to republish, to post on servers or to redistribute to lists, requires prior specific permission and/or a fee. HotSDN 12, August 13, 212, Helsinki, Finland. Copyright 212 ACM /12/8...$15.. suppress flow arrivals by proactively pushing the network state, this approach falls short when it comes to other types of frequent events such as network-wide statistics collection. Current solutions either view this as an intrinsic limitation or try to address it by modifying switches. For instance, HyperFlow [18] can handle a few thousand events per second, and anything beyond that is considered a scalability limitation. In contrast, DIFANE [21] and DevoFlow [5] introduce new functionalities in switches to suppress frequent events and to reduce the load on the control plane. To limit the load on the controller, frequent events should be handled in the closest vicinity of datapaths, preferably without modifying switches. Adding new primitives to switches is undesirable. It breaks the general principles of Software-Defined Networks (SDNs), requires changes to the standards, and necessitates the costly process of modifying switches. Thus, the important question is: How can we move control functionalities toward datapaths, without introducing new datapath mechanisms in switches? To answer this question, we focus on: (i) environments where processing power is readily available close to switches (such as data center networks) or can be easily added (such as enterprise networks), and (ii) applications that are local in scope, i.e., applications that process events from a single switch without using the network-wide state. We show that under these two conditions one can offload local event processing to local resources, and therefore realize a control plane that handles frequent events at scale. We note that some applications, such as routing, require the network-wide state, and cannot be offloaded to local processing resources. However, a large class of applications are either local (e.g., local policy enforcer and Link Layer Discovery Protocol [2]) or can be decomposed to modules that are local (e.g., elephant flow detection module in an elephant flow rerouting application). Kandoo. In this paper, we present the design and implementation of Kandoo, a novel distributed control plane that offloads control applications over available resources in the network with minimal developer intervention and without violating any requirements of control applications. Kandoo s control plane essentially distinguishes local control applications (i.e., applications that process events locally) from non-local applications (i.e., applications that require access to the network-wide state). Kandoo creates a twolevel hierarchy for controllers: (i) local controllers execute local applications as close as possible to switches, and (ii) a logically centralized root controller runs non-local 19
2 Rare Root Legend Logical Control Channel Datapath Connection Root App reroute Flow-Entry E elephant Flow-Entry Frequent Figure 1: Kandoo s Two Levels of s. controllers handle frequent events, while a logically centralized root controller handles rare events. control applications. As illustrated in Figure 1, several local controllers are deployed throughout the network; each of these controllers controls one or a handful of switches. The root controller, on the other hand, controls all local controllers. It is easy to realize local controllers since they are merely switch proxies for the root controller, and they do not need the network-wide state. They can even be implemented directly in OpenFlow switches. Interestingly, local controllers can linearly scale with the number of switches in a network. Thus, the control plane scales as long as we process frequent events in local applications and shield the root controller from these frequent events. Needless to say, Kandoo cannot help any control applications that require network-wide state (even though it does not hurt them, either). We believe such applications are intrinsically hard to scale, and solutions like Onix [8] and HyperFlow [18] provide the right frameworks for running such applications. Our implementation of Kandoo is completely compliant with the OpenFlow specifications. Data and control planes are decoupled in Kandoo. es can operate without having a local controller; control applications function regardless of their physical location. The main advantage of Kandoo is that it gives network operators the freedom to configure the deployment model of control plane functionalities based on the characteristics of control applications. The design and implementation of Kandoo are presented in Sections 2. Our experiments confirm that Kandoo scales an order of magnitude better than a normal OpenFlow network and would lead to more than 9% of events being processed locally under reasonable assumptions, as described in Section 3. s of Kandoo are not limited to the evaluation scenarios presented in this paper. In Section 4, we briefly discuss other potential applications of Kandoo and compare it to existing solutions. We conclude our discussion in Section DESIGN AND IMPLEMENTATION Design objectives. Kandoo is designed with the following goals in mind. First, Kandoo must be compatible with OpenFlow: we do not introduce any new data plane functionality in switches, and, as long as they support OpenFlow, Kandoo supports them, as well. Second, Kandoo automatically distributes control applications without any manual intervention. In other words, Kandoo control End-host End-host Figure 2: Toy example for Kandoo s design: In this example, two hosts are connected using a simple line topology. Each switch is controlled by one local Kandoo controller. The root controller controls the local controllers. In this example, we have two control applications: is a local control application, but App reroute is non-local. applications are not aware of how they are deployed in the network, and application developers can assume their applications would be run on a centralized OpenFlow controller. The only extra information Kandoo needs is a flag showing whether a control application is local or not. In what follows, we explain Kandoo s design using a toy example. We show how Kandoo can be used to reroute elephant flows in a simple network of three switches (Figure 2). Our example has two applications: (i), and (ii) App reroute. constantly queries each switch to detect elephant flows. Once an elephant flow is detected, notifies App reroute, which in turn may install or update flow-entries on network switches. It is extremely challenging, if not impossible, to implement this application in current OpenFlow networks without modifying switches [5]. If switches are not modified, a (logically) centralized control needs to frequently query all switches, which would place a considerable load on control channels. Kandoo. As shown in Figure 3, Kandoo has a controller component at its core. This component has the same role as a general OpenFlow controller, but it has Kandoo-specific extensions for identifying application requirements, hiding the complexity of the underlying distributed application model, and propagating events in the network. A network controlled by Kandoo has multiple local controllers and a logically centralized root controller. 1 These controllers collectively form Kandoo s distributed control plane. Each switch is controlled by only one Kandoo controller, and each Kandoo controller can control multiple switches. If the root controller needs to install flow-entries on switches of a local controller, it delegates the requests to the respective local controller. Note that for high availability, the root controller can register itself as the slave controller for a specific switch (this behavior is supported in OpenFlow 1.2 [1]). 1 We note that the root controller in Kandoo can itself be logically/physically distributed. In fact, it is straightforward to implement Kandoo s root controller using Onix [8] or Hyperflow [18]. 2
3 Non-local Non-local Non-local s s Register Actions Register Actions API API Relay Root Subscribe to OpenFlow Packets Data-path Data-path Element Element es Kandoo s Legend Logical Control Channel End-Host VM VM Data Path Links Software VM Root Physical Physical Processing Resource Figure 3: Kandoo s high level architecture. Deployment Model. The deployment model of Kandoo controllers depends on the characteristics of a network. For software switches, local controllers can be directly deployed on the same end-host. Similarly, if we can change the software of a physical switch, we can deploy Kandoo directly on the switch. Otherwise, we deploy Kandoo local controllers on the processing resources closest to the switches. In such a setting, one should provision the number of local controllers based on the workload and available processing resources. Note that we can use a hybrid model in real settings. For instance, consider a virtualized deployment environment depicted in Figure 4, where virtual machines are connected to the network using software switches. In this environment, we can place local controllers in end-hosts next to software switches and in separate nodes for other switches. In our toy example (Figure 2), we have four Kandoo controllers: three local controllers controlling the switches and a root controller. The local controllers can be physically positioned using any deployment model explained above. Note that, in this example, we have the maximum number of local controllers required. Control s. Control applications function using the abstraction provided by the controller and are not aware of Kandoo internals. They are generally OpenFlow applications and can therefore send OpenFlow messages and listen on events. Moreover, they can emit Kandoo events (i.e., internal events), which can be consumed by other applications, and they can reply to the application that emitted an event. Control applications are loaded in local name spaces and can communicate using only Kandoo events. This is to ensure that Kandoo does not introduce faults by offloading applications. In our example, E elephant is a Kandoo event that carries matching information about the detected elephant flow (e.g., its OpenFlow match structure) and is emitted by. A local controller can run an application only if the application is local. In our example, App reroute is not local, i.e., it may install flow-entires on any switch in the network. Thus, the root controller is the only controller able to run App reroute. In contrast, is local; therefore, all controllers can run it. Event Propagation. The root controller can subscribe Figure 4: Kandoo in a virtualized environment. For software switches, we can leverage the same endhost for local controllers, and, for physical switches, we use separate processing resources. to specific events in the local controllers using a simple messaging channel plus a filtering component. Once the local controller receives and locally processes an event, it relays the event to the root controller for further processing. Note that all communications between Kandoo controllers are event-based and asynchronous. In our example, the root controller subscribes to events of type E elephant in the local controllers since it is running App reroute listening on E elephant. E elephant is fired by an instance deployed on one of the local controllers and is relayed to root controller. Note that if the root controller does not subscribe to E elephant, the local controllers will not relay E elephant events. It is important to note that the data flow in Kandoo is not always bottom-up. A local application can explicitly request data from an application deployed on the root controller by emitting an event, and applications on the root controllers can send data by replying to that event. For instance, we can have a topology service running on the root controller that sends topology information to local applications by replying to events of a specific type. Reactive vs. Proactive. Although Kandoo provides a scalable method for event handling, we strongly recommend pushing network state proactively. We envision Kandoo to be used as a scalable, adaptive control plane, where the default configuration is pushed proactively and is adaptively refined afterwards. In our toy example, default paths can be pushed proactively, while elephant flows will be rerouted adaptively. Implementation Details. We implemented Kandoo in a mixture of C, C++, and Python. Our implementation has a low memory footprint and supports dynamically loadable plug-ins, which can be implemented in C, Python, and Java. It also provides an RPC API for more general integration scenarios. Our implementation of Kandoo is extremely modular; any component or back-end can be easily replaced, which simplifies porting Kandoo to physical switches. Currently, Kandoo supports OpenFlow 1. (OpenFlow 1.1 and 1.2 support is under development). For the applications, we created a central application repository and developed a simple package management 21
4 system, which supports application dependency. When booting up, a controller downloads the information about all applications from the repository and then retrieves the applications it can run. Single-node Performance. Single-node performance of Kandoo is of significant importance since local controllers process frequent events from single switches. For this reason, our implementation is efficient and has low overhead. A single Kandoo controller can reach a throughput of more than 1M pkt-in per second from 512 switches using a single thread on a Xeon E EVALUATION We have evaluated Kandoo using different applications in an emulated environment. For the sake of space, we present only the results obtained for the elephant flow detection problem. This evaluation demonstrates the feasibility of Kandoo to distribute the control plane at scale and strongly supports our argument. Setup. In our experiments, we realize a two-layer hierarchy of Kandoo controllers as shown in Figure 5. In each experiment, we emulate an OpenFlow network using a slightly modified version of Mininet [9] hosted on a physical server equipped with 64G of RAM and 4 Intel Xeon(R) E7-487 CPUs (each with 6 cores). We use OpenV 1.4 [11] as our kernel-level software switch. App reroute Root Learning 1 ToR 1 Learning Core Learning N ToR N Host Host Host Host Figure 5: Experiment Setup. We use a simple tree topology. Each switch is controlled by one local Kandoo controller. The root Kandoo controller manages the local controllers. Elephant Flow Detection. We implemented Elephant Flow Detection applications (i.e., App reroute and ) as described in Section 2. As depicted in Figure 5, is deployed on all Kandoo local controllers, whereas App reroute is deployed only on the root controller. Our implementation of queries only the top-of-rack (ToR) switches to detect the elephant flows. To distinguish ToR switches from the core switch, we implemented a simple link discovery technique. fires one query per flow per second and reports a flow as elephant if it has sent more than 1MB of data. Our implementation of App reroute installs new flow entries on all switches for the detected elephant flow. Learning. In addition to these two applications, we use a simple learning switch application on all controllers to setup paths. This application associates MAC addresses to ports and installs respective flow entries on the switch. We note that the bandwidth consumed for path setup is negligible compared to the bandwidth consumption for elephant flow detection. Thus, our evaluation results would still apply, even if we install all paths proactively. Methodology. In our experiments, we aim to study how this control plane scales with respect to the number of elephant flows and network size compared to a normal Open- Flow network (where all three applications are on a single controller). We measure the number of requests processed by each controller and their bandwidth consumption. We note that our goal is to decrease the load on the root controller in Kandoo. controllers handle events locally, which consume far less bandwidth compared to events sent to the root controller. Moreover, Kandoo s design makes it easy to add local controllers when needed, effectively making the root controller the only potential bottleneck in terms of scalability. Our first experiment studies how these applications scale with respect to the number of elephant flows in the network. In this experiment, we use a tree topology of depth 2 and fanout 6 (i.e., 1 core switch, 6 top-of-rack switches, and 36 end-hosts). Each end-host initiates one hundred UDP flows to any other host in the network. This synthetic workload stresses Kandoo since most flows are not local. As reported in [3], data center traffic has locality, and Kandoo would therefore perform better in practice. As depicted in Figure 6, control channel consumption and the load on the central controller are considerably lower for Kandoo, even when all flows are elephant 2 : five times smaller in terms of packets (Figure 6(a)), and an order of magnitude in terms of bytes (Figure 6(b)). The main reason is that, unlike the normal OpenFlow, the central controller does not need to query the ToR switches. Moreover, fires one event for each elephant flow, which results in significantly less events. To study Kandoo s scalability based on the number of nodes in the network, we fix ratio of the elephant flows at 2% and experiment with networks of different fanouts. As illustrated in Figure 7, the role of local controllers is more pronounced when we have larger networks. These controllers scale linearly with the size of the network and effectively shield the control channels from frequent events. Consequently, Kandoo s root controller handles significantly less events compared to a normal OpenFlow network. Based on these two experiments, Kandoo scales significantly better than a normal OpenFlow network. It is important to note that the performance of Kandoo can be improved further by simple optimization in. For example, the load on the central controller can be halved if queries only the flow-entries initiated by the hosts directly connected to the respective switch. 2 When all flows are elephant, fires an event for each flow. Thus, it reflects the maximum number of events Kandoo will fire for elephant flow detection. 22
5 Messages Per Second Normal OpenFlow Kandoo's Root 1% 2% 3% 4% 5% 6% 7% 8% 9% 1% Ratio of Elephant to Mouse Flows (a) Average number of messages received by the controllers Bandwidth Consumptions (kb/s) Normal OpenFlow Kandoo's Root 1% 2% 3% 4% 5% 6% 7% 8% 9% 1% Ratio of Elephant to Mouse Flows (b) Average number of bytes received by the controllers Figure 6: Control Plane Load for the Elephant Flow Detection Scenario. The load is based on the number of elephant flows in the network. Messages Per Second Bandwidth Consumption (kb/s) Normal Openflow Root Fanout (a) Average number of packets received by the controllers Normal Openflow Root Fanout (b) Average number of bytes received by the controllers Figure 7: Control Plane Load for the Elephant Flow Detection Scenario. The load is based on the number of nodes in the network. also provide a platform to run any local control application in their context. 4. RELATED WORK Datapath Extensions. The problem that we tackle in this paper is a generalization of several previous attempts at scaling SDNs. A class of solutions, such as DIFANE [21] and DevoFlow [5], address this problem by extending data plane mechanisms of switches with the objective of reducing the load towards the controller. DIFANE tries to partly offload forwarding decisions from the controller to special switches, called authority switches. Using this approach, network operators can reduce the load on the controller and the latencies of rule installation. DevoFlow, on the other hand, introduces new mechanisms in switches to dispatch far fewer important events to the control plane. Kandoo has the same goal, but, in contrast to DIFANE and DevoFlow, it does not extend switches; instead, it moves control plane functions closer to switches. Kandoo s approach is more general and works well in data centers, but it might have a lower throughput than specific extensions implemented in hardware. Interestingly, we can use Kandoo to prototype and test DIFANE, DevoFlow, or other potential hardware extensions. For instance, an authority switch in DIFANE can be emulated by a local Kandoo controller that manages a subset of switches in the network. As another example, DevoFlow s extensions can also be emulated using Kandoo controllers directly installed on switches. These controllers not only replace the functionality of DIFANE or DevoFlow, but they Distributed s. HyperFlow [18], Onix [8], SiBF [1], and Devolved s [17] try to distribute the control plane while maintaining logically centralized, eventually consistent network state. Although these approaches have their own merits, they impose limitations on applications they can run. This is because they assume that all applications require the network-wide state; hence, they cannot be of much help when it comes to local control applications. That said, the distributed controllers can be used to realize a scalable root controller, the controller that runs non-local applications in Kandoo. Middleboxes. Middlebox architectures, such as Flow- Stream [7], SideCar [15] and CoMb [13], provide scalable programmability in data plane by intercepting flows using processing nodes in which network applications are deployed. Kandoo is orthogonal to these approaches in the sense that it operates in the control plane, but it provides a similar distribution for control applications. In a network equipped with FlowStream, SideCar or CoMb, Kandoo can share the processing resources with middleboxes (given that control and data plane applications are isolated) in order to increase resource utilization and decrease the number of nodes used by Kandoo. Active Networks. Active Networks (AN) and SDNs represent different schools of thought on programmable networks. SDNs provide programmable control planes, whereas ANs allow programmability in networking elements at packet 23
6 transport granularity by running code encapsulated in the packet [2, 12, 19] or installed on the switches [16, 6]. An extreme deployment of Kandoo can deploy local controllers on all switches in the network. In such a setting, we can emulate most functionality of ANs. That said, Kandoo differs from active networks in two ways. First, Kandoo does not provide in-bound packet processing; instead, it follows the fundamentally different approach proposed by SDNs. Second, Kandoo is not an all-or-nothing solution (i.e., there is no need to have Kandoo support on switches). Using Kandoo, network operators can still gain efficiency and scalability using commodity middle boxes, each controlling a partition of switches. 5. CONCLUSION Kandoo is a highly configurable and scalable control plane. It uses a simple yet effective approach for creating a distributed control plane: it processes frequent events in highly replicated local control applications and rare events in a central location. As confirmed by our experiments, Kandoo scales remarkably better than a normal OpenFlow implementation, without modifying switches or using sampling techniques. Kandoo can co-exist with other controllers by using either FlowVisor [14] or customized Kandoo adapters. Having said that, extra measures should be taken to ensure consistency. The major issue is that Kandoo local controllers do not propagate an OpenFlow event unless the root controller subscribes to that event. Thus, without subscribing to all OpenFlow events in all local controllers, we cannot guarantee that existing OpenFlow applications work as expected. Moving forward, we are extending Kandoo to support new categories of control applications that are not necessarily local but that have a limited scope. Such applications can operate by having access to the events generated by a subset of switches. Using a hierarchy of controllers (as opposed to the two-level hierarchy presented in this paper), we can extend Kandoo to run such applications. Finally, we have started porting Kandoo to physical switches. es equipped with Kandoo can natively run local control applications. 6. REFERENCES [1] OpenFlow Specification, Version 1.2 (Wire Protocol x3). [2] Station and Media Access Control Connectivity Discovery, IEEE Standard 82.1AB. [3] M. Alizadeh, A. Greenberg, D. A. Maltz, J. Padhye, P. Patel, B. Prabhakar, S. Sengupta, and M. Sridharan. Data center tcp (dctcp). In Proceedings of the ACM SIGCOMM 21 conference, pages 63 74, 21. [4] A. R. Curtis, W. Kim, and P. Yalagandula. Mahout: Low-overhead datacenter traffic management using end-host-based elephant detection. In Proceedings of the IEEE INFOCOM 211 conference, pages , 211. [5] A. R. Curtis, J. C. Mogul, J. Tourrilhes, P. Yalagandula, P. Sharma, and S. Banerjee. DevoFlow: scaling flow management for high-performance networks. In Proceedings of the ACM SIGCOMM 211 conference, pages , 211. [6] D. Decasper and B. Plattner. DAN: distributed code caching for active networks. In Proceedings of the IEEE INFOCOM 98 conference, volume 2, pages , [7] A. Greenhalgh, F. Huici, M. Hoerdt, P. Papadimitriou, M. Handley, and L. Mathy. Flow processing and the rise of commodity network hardware. SIGCOMM Comput. Commun. Rev., 39(2):2 26, 29. [8] T. Koponen, M. Casado, N. Gude, J. Stribling, L. Poutievski, M. Zhu, R. Ramanathan, Y. Iwata, H. Inoue, T. Hama, and S. Shenker. Onix: a distributed control platform for large-scale production networks. In Proceedings of the 9th USENIX OSDI conference, pages 1 6, 21. [9] B. Lantz, B. Heller, and N. McKeown. A network in a laptop: rapid prototyping for software-defined networks. In Proceedings of the ACM SIGCOMM HotNets workshop, pages 19:1 19:6, 21. [1] C. A. B. Macapuna, C. E. Rothenberg, and F. Magalh. In-packet bloom filter based data center networking with distributed openflow controllers. In Proceedings of IEEE International Workshop on Management of Emerging Networks and Services, pages , 21. [11] B. Pfaff, J. Pettit, T. Koponen, K. Amidon, M. Casado, and S. Shenker. Extending networking into the virtualization layer. In Proceedings of the ACM SIGCOMM HotNets workshop, 29. [12] B. Schwartz, A. W. Jackson, W. T. Strayer, W. Zhou, R. D. Rockwell, and C. Partridge. Smart packets: applying active networks to network management. ACM Transactions on Computer Systems, 18(1):67 88, Feb. 2. [13] V. Sekar, N. Egi, S. Ratnasamy, M. K. Reiter, and G. Shi. Design and implementation of a consolidated middlebox architecture. In Proceedings of NSDI 12, 212. [14] R. Sherwood, M. Chan, A. Covington, G. Gibb, M. Flajslik, N. Handigol, T. Huang, P. Kazemian, M. Kobayashi, J. Naous, S. Seetharaman, D. Underhill, T. Yabe, K. Yap, Y. Yiakoumis, H. Zeng, G. Appenzeller, R. Johari, N. McKeown, and G. Parulkar. Carving research slices out of your production networks with OpenFlow. SIGCOMM CCR, 4(1):129 13, Jan 21. [15] A. Shieh, S. Kandula, and E. G. Sirer. Sidecar: building programmable datacenter networks without programmable switches. In Proceedings of the ACM HotNets worksop, pages 21:1 21:6, 21. [16] J. M. Smith, D. J. Farber, C. A. Gunter, S. M. Nettles, D. C. Feldmeier, and W. D. Sincoskie. Ware: accelerating network evolution (White paper). Technical report, [17] A.-W. Tam, K. Xi, and H. Chao. Use of devolved controllers in data center networks. In Processings of the IEEE Computer Communications Workshops, pages , 211. [18] A. Tootoonchian and Y. Ganjali. Hyperflow: a distributed control plane for openflow. In Proceedings of the 21 INM conference, pages 3 3, 21. [19] D. J. Wetherall, J. V. Guttag, and D. L. Tennenhouse. ANTS: a toolkit for building and dynamically deploying network protocols. In Proceedings of the IEEE Open Architectures and Network Programming conference, pages , [2] D. J. Wetherall and D. L. Tennenhouse. The ACTIVE IP option. In Proceedings of the 7th ACM SIGOPS European workshop on systems support for worldwide applications, pages 33 4, [21] M. Yu, J. Rexford, M. J. Freedman, and J. Wang. Scalable flow-based networking with DIFANE. In Proceedings of the ACM SIGCOMM 21 conference, pages ,
Scalability of Control Planes for Software Defined Networks:Modeling and Evaluation
of Control Planes for Software Defined Networks:Modeling and Evaluation Jie Hu, Chuang Lin, Xiangyang Li, Jiwei Huang Department of Computer Science and Technology, Tsinghua University Department of Computer
Orion: A Hybrid Hierarchical Control Plane of Software-Defined Networking for Large-Scale Networks
2014 IEEE 22nd International Conference on Network Protocols Orion: A Hybrid Hierarchical Control Plane of Software-Defined Networking for Large-Scale Networks Yonghong Fu 1,2,3, Jun Bi 1,2,3, Kai Gao
Enabling Software Defined Networking using OpenFlow
Enabling Software Defined Networking using OpenFlow 1 Karamjeet Kaur, 2 Sukhveer Kaur, 3 Vipin Gupta 1,2 SBS State Technical Campus Ferozepur, 3 U-Net Solutions Moga Abstract Software Defined Networking
On Scalability of Software-Defined Networking
SOFTWARE DEFINED NETWORKS On Scalability of Software-Defined Networking Soheil Hassas Yeganeh, Amin Tootoonchian, and Yashar Ganjali, University of Toronto ABSTRACT In this article, we deconstruct scalability
Multiple Service Load-Balancing with OpenFlow
2012 IEEE 13th International Conference on High Performance Switching and Routing Multiple Service Load-Balancing with OpenFlow Marc Koerner Technische Universitaet Berlin Department of Telecommunication
OMNI: OpenFlow MaNagement Infrastructure
OMNI: OpenFlow MaNagement Infrastructure Diogo M. F. Mattos, Natalia C. Fernandes, Victor T. da Costa, Leonardo P. Cardoso, Miguel Elias M. Campista, Luís Henrique M. K. Costa, Otto Carlos M. B. Duarte
HyperFlow: A Distributed Control Plane for OpenFlow
HyperFlow: A Distributed Control Plane for OpenFlow Amin Tootoonchian University of Toronto [email protected] Yashar Ganjali University of Toronto [email protected] Abstract OpenFlow assumes a
SDN Security Design Challenges
Nicolae Paladi SDN Security Design Challenges SICS Swedish ICT! Lund University In Multi-Tenant Virtualized Networks Multi-tenancy Multiple tenants share a common physical infrastructure. Multi-tenancy
Towards an Elastic Distributed SDN Controller
Towards an Elastic Distributed SDN Controller Advait Dixit, Fang Hao, Sarit Mukherjee, T.V. Lakshman, Ramana Kompella Purdue University, Bell Labs Alcatel-Lucent ABSTRACT Distributed controllers have been
A collaborative model for routing in multi-domains OpenFlow networks
A collaborative model for routing in multi-domains OpenFlow networks Xuan Thien Phan, Nam Thoai Faculty of Computer Science and Engineering Ho Chi Minh City University of Technology Ho Chi Minh city, Vietnam
SDN. What's Software Defined Networking? Angelo Capossele
SDN What's Software Defined Networking? Angelo Capossele Outline Introduction to SDN OpenFlow Network Functions Virtualization Some examples Opportunities Research problems Security Case study: LTE (Mini)Tutorial
ASIC: An Architecture for Scalable Intra-domain Control in OpenFlow
ASIC: An Architecture for Scalable Intra-domain Control in Pingping Lin, Jun Bi, Hongyu Hu Network Research Center, Department of Computer Science, Tsinghua University Tsinghua National Laboratory for
OpenFlow based Load Balancing for Fat-Tree Networks with Multipath Support
OpenFlow based Load Balancing for Fat-Tree Networks with Multipath Support Yu Li and Deng Pan Florida International University Miami, FL Abstract Data center networks are designed for satisfying the data
HyperFlex: An SDN Virtualization Architecture with Flexible Hypervisor Function Allocation
c 2015 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media, including reprinting/republishing this material for advertising
Empowering Software Defined Network Controller with Packet-Level Information
Empowering Software Defined Network Controller with Packet-Level Information Sajad Shirali-Shahreza, Yashar Ganjali Department of Computer Science, University of Toronto, Toronto, Canada Abstract Packet
Funded in part by: NSF, Cisco, DoCoMo, DT, Ericsson, Google, Huawei, NEC, Xilinx
Funded in part by: NSF, Cisco, DoCoMo, DT, Ericsson, Google, Huawei, NEC, Xilinx Nick McKeown, Guru Parulkar, Guido Appenzeller, Nick Bastin, David Erickson, Glen Gibb, Nikhil Handigol, Brandon Heller,
Enabling Practical SDN Security Applications with OFX (The OpenFlow extension Framework)
Enabling Practical SDN Security Applications with OFX (The OpenFlow extension Framework) John Sonchack, Adam J. Aviv, Eric Keller, and Jonathan M. Smith Outline Introduction Overview of OFX Using OFX Benchmarks
Enhancing Responsiveness and Scalability for OpenFlow Networks via Control-Message Quenching
Enhancing Responsiveness and Scalability for OpenFlow Networs via Control-Message Quenching Tie Luo, Hwee-Pin Tan, Philip C. Quan, Yee Wei Law and Jiong Jin Institute for Infocomm Research, A*STAR, Singapore
HERCULES: Integrated Control Framework for Datacenter Traffic Management
HERCULES: Integrated Control Framework for Datacenter Traffic Management Wonho Kim Princeton University Princeton, NJ, USA Email: [email protected] Puneet Sharma HP Labs Palo Alto, CA, USA Email:
OPENFLOW-BASED LOAD BALANCING GONE WILD
OPENFLOW-BASED LOAD BALANCING GONE WILD RICHARD WANG MASTER S THESIS IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE MASTER OF SCIENCE IN ENGINEERING DEPARTMENT OF COMPUTER SCIENCE PRINCETON UNIVERSITY
On Controller Performance in Software-Defined Networks
On Controller Performance in Software-Defined Networks Amin Tootoonchian University of Toronto/ICSI Martin Casado Nicira Networks Sergey Gorbunov University of Toronto Rob Sherwood Big Switch Networks
Scalable Network Virtualization in Software-Defined Networks
Scalable Network Virtualization in Software-Defined Networks Dmitry Drutskoy Princeton University Eric Keller University of Pennsylvania Jennifer Rexford Princeton University ABSTRACT Network virtualization
Failover Mechanisms for Distributed SDN Controllers
Failover Mechanisms for Distributed SDN Controllers Mathis Obadia, Mathieu Bouet, Jérémie Leguay, Kévin Phemius, Luigi Iannone Thales Communications & Security {firstname.name}@thalesgroup.com Telecom
Software-Defined Networking in Mobile Access Networks
Software-Defined Networking in Mobile Access Networks Yanhe Liu, Aaron Yi Ding, Sasu Tarkoma Technical Report C-2013-1 University of Helsinki Department of Computer Science Helsinki, September 19, 2013
Virtualizing the Network Forwarding Plane
Virtualizing the Network Forwarding Plane Martín Casado Nicira Teemu Koponen Nicira Rajiv Ramanathan Google Scott Shenker UC Berkeley 1 Introduction Modern system design often employs virtualization to
Dynamic Controller Provisioning in Software Defined Networks
Dynamic Controller Provisioning in Software Defined Networks Md. Faizul Bari, Arup Raton Roy, Shihabur Rahman Chowdhury, Qi Zhang, Mohamed Faten Zhani, Reaz Ahmed, and Raouf Boutaba David R. Cheriton School
Network Management through Graphs in Software Defined Networks
Network Management through Graphs in Software Defined Networks Gustavo Pantuza, Frederico Sampaio, Luiz F. M. Vieira, Dorgival Guedes, Marcos A. M. Vieira Departament of Computer Science Universidade Federal
EventBus Module for Distributed OpenFlow Controllers
EventBus Module for Distributed OpenFlow Controllers Igor Alekseev Director of the Internet Center P.G. Demidov Yaroslavl State University Yaroslavl, Russia [email protected] Mikhail Nikitinskiy System
OpenFlow and Onix. OpenFlow: Enabling Innovation in Campus Networks. The Problem. We also want. How to run experiments in campus networks?
OpenFlow and Onix Bowei Xu [email protected] [1] McKeown et al., "OpenFlow: Enabling Innovation in Campus Networks," ACM SIGCOMM CCR, 38(2):69-74, Apr. 2008. [2] Koponen et al., "Onix: a Distributed Control
CloudWatcher: Network Security Monitoring Using OpenFlow in Dynamic Cloud Networks
CloudWatcher: Network Security Monitoring Using OpenFlow in Dynamic Cloud Networks (or: How to Provide Security Monitoring as a Service in Clouds?) Seungwon Shin SUCCESS Lab Texas A&M University Email:
Software Defined Networking What is it, how does it work, and what is it good for?
Software Defined Networking What is it, how does it work, and what is it good for? slides stolen from Jennifer Rexford, Nick McKeown, Michael Schapira, Scott Shenker, Teemu Koponen, Yotam Harchol and David
Xperience of Programmable Network with OpenFlow
International Journal of Computer Theory and Engineering, Vol. 5, No. 2, April 2013 Xperience of Programmable Network with OpenFlow Hasnat Ahmed, Irshad, Muhammad Asif Razzaq, and Adeel Baig each one is
Implementation of Address Learning/Packet Forwarding, Firewall and Load Balancing in Floodlight Controller for SDN Network Management
Research Paper Implementation of Address Learning/Packet Forwarding, Firewall and Load Balancing in Floodlight Controller for SDN Network Management Raphael Eweka MSc Student University of East London
OpenFlow: Load Balancing in enterprise networks using Floodlight Controller
OpenFlow: Load Balancing in enterprise networks using Floodlight Controller Srinivas Govindraj, Arunkumar Jayaraman, Nitin Khanna, Kaushik Ravi Prakash [email protected], [email protected],
Software Defined Networks (SDN)
Software Defined Networks (SDN) Nick McKeown Stanford University With: Martín Casado, Teemu Koponen, Scott Shenker and many others With thanks to: NSF, GPO, Stanford Clean Slate Program, Cisco, DoCoMo,
Soheil Hassas Yeganeh
Simple Distributed Programming for Scalable Software-Defined Networks by Soheil Hassas Yeganeh A thesis submitted in conformity with the requirements for the degree of Doctor of Philosophy Graduate Department
Limitations of Current Networking Architecture OpenFlow Architecture
CECS 572 Student Name Monday/Wednesday 5:00 PM Dr. Tracy Bradley Maples OpenFlow OpenFlow is the first open standard communications interface that enables Software Defined Networking (SDN) [6]. It was
Virtualization and SDN Applications
Virtualization and SDN lications 2 Virtualization Sharing physical hardware or software resources by multiple users and/or use cases Examples system shares physical hardware resources Virtual machine shares
Dynamic Controller Deployment in SDN
Dynamic Controller Deployment in SDN Marc Huang, Sherrill Lin, Dominic Yan Department of Computer Science, University of Toronto Table of Contents Introduction... 1 Background and Motivation... 1 Problem
Improving Flow Completion Time for Short Flows in Datacenter Networks
Improving Flow Completion Time for Short Flows in Datacenter Networks Sijo Joy, Amiya Nayak School of Electrical Engineering and Computer Science, University of Ottawa, Ottawa, Canada {sjoy028, nayak}@uottawa.ca
ElastiCon: An Elastic Distributed SDN Controller
ElastiCon: An Elastic Distributed SDN Controller Advait Dixit, Fang Hao, Sarit Mukherjee, T. V. Lakshman, Ramana Rao Kompella Dept. of Computer Science, Purdue University, West Lafayette, IN, USA {dixit,
Software Defined Networking Basics
Software Defined Networking Basics Anupama Potluri School of Computer and Information Sciences University of Hyderabad Software Defined Networking (SDN) is considered as a paradigm shift in how networking
HybNET: Network Manager for a Hybrid Network Infrastructure
HybNET: Network Manager for a Hybrid Network Infrastructure Hui Lu, Nipun Arora, Hui Zhang, Cristian Lumezanu, Junghwan Rhee, Guofei Jiang Purdue University NEC Laboratories America [email protected] {nipun,huizhang,lume,rhee,gfj}@nec-labs.com
The Evolution of SDN and OpenFlow: A Standards Perspective
The Evolution of SDN and OpenFlow: A Standards Perspective Jean Tourrilhes, Puneet Sharma, Sujata Banerjee HP- Labs - {FirstName.LastName}@hp.com Justin Pettit VMware [email protected] 1. Introduction
How To Make A Vpc More Secure With A Cloud Network Overlay (Network) On A Vlan) On An Openstack Vlan On A Server On A Network On A 2D (Vlan) (Vpn) On Your Vlan
Centec s SDN Switch Built from the Ground Up to Deliver an Optimal Virtual Private Cloud Table of Contents Virtualization Fueling New Possibilities Virtual Private Cloud Offerings... 2 Current Approaches
OpenFlow Based Load Balancing
OpenFlow Based Load Balancing Hardeep Uppal and Dane Brandon University of Washington CSE561: Networking Project Report Abstract: In today s high-traffic internet, it is often desirable to have multiple
Traffic-based Malicious Switch Detection in SDN
, pp.119-130 http://dx.doi.org/10.14257/ijsia.2014.8.5.12 Traffic-based Malicious Switch Detection in SDN Xiaodong Du 1, Ming-Zhong Wang 1, Xiaoping Zhang 2* and Liehuang Zhu 1 1 Beijing Engineering Research
Department of Computer Science and Engineering, Indian Institute of Technology, Delhi
Applications of Software Defined Networks in IIT-Delhi Campus Network A Project Report submitted in partial fulfilment of the Requirements for the Degree of Bachelor + Master of Technology Submitted to
Dynamic Controller Provisioning in Software Defined Networks
Dynamic Controller Provisioning in Software Defined Networks Md. Faizul Bari, Arup Raton Roy, Shihabur Rahman Chowdhury, Qi Zhang, Mohamed Faten Zhani, Reaz Ahmed, and Raouf Boutaba David R. Cheriton School
Network Virtualization History. Network Virtualization History. Extending networking into the virtualization layer. Problem: Isolation
Network irtualization History Network irtualization and Data Center Networks 263-3825-00 SDN Network irtualization Qin Yin Fall Semester 203 Reference: The Past, Present, and Future of Software Defined
Open Source Network: Software-Defined Networking (SDN) and OpenFlow
Open Source Network: Software-Defined Networking (SDN) and OpenFlow Insop Song, Ericsson LinuxCon North America, Aug. 2012, San Diego CA Objectives Overview of OpenFlow Overview of Software Defined Networking
ORAN: OpenFlow Routers for Academic Networks
ORAN: OpenFlow Routers for Academic Networks A. Rostami,T.Jungel,A.Koepsel,H.Woesner,A.Wolisz Telecommunication Networks Group (TKN), Technical University of Berlin, Germany {rostami, wolisz}@tkn.tu-berlin.de
Comparisons of SDN OpenFlow Controllers over EstiNet: Ryu vs. NOX
Comparisons of SDN OpenFlow Controllers over EstiNet: Ryu vs. NOX Shie-Yuan Wang Hung-Wei Chiu and Chih-Liang Chou Department of Computer Science, National Chiao Tung University, Taiwan Email: [email protected]
On Scaling Software-Defined Networking in Wide-Area Networks
TSINGHUA SCIENCE AND TECHNOLOGY ISSNll1007-0214ll01/10llpp221-232 Volume 20, Number 3, June 2015 On Scaling Software-Defined Networking in Wide-Area Networks Shuhao Liu and Baochun Li Abstract: Software-Defined
Software Defined Networking Architecture
Software Defined Networking Architecture Brighten Godfrey CS 538 October 8 2013 slides 2010-2013 by Brighten Godfrey The Problem Networks are complicated Just like any computer system Worse: it s distributed
Netvisor Software Defined Fabric Architecture
Netvisor Software Defined Fabric Architecture Netvisor Overview The Pluribus Networks network operating system, Netvisor, is designed to power a variety of network devices. The devices Netvisor powers
CS6204 Advanced Topics in Networking
CS6204 Advanced Topics in Networking Assoc Prof. Chan Mun Choon School of Computing National University of Singapore Aug 14, 2015 CS6204 Lecturer Chan Mun Choon Office: COM2, #04-17 Email: [email protected]
FlowSense: Monitoring Network Utilization with Zero Measurement Cost
FlowSense: Monitoring Network Utilization with Zero Measurement Cost Curtis Yu 1, Cristian Lumezanu 2, Yueping Zhang 2, Vishal Singh 2, Guofei Jiang 2, and Harsha V. Madhyastha 1 1 University of California,
Software Defined Networking for Telecom Operators: Architecture and Applications
2013 8th International Conference on Communications and Networking in China (CHINACOM) Software Defined Networking for Telecom Operators: Architecture and Applications Jian-Quan Wang China Unicom Research
OFTEN Testing OpenFlow Networks
OFTEN Testing OpenFlow Networks Maciej Kuźniar EPFL Marco Canini TU Berlin / T-Labs Dejan Kostić EPFL Abstract Software-defined networking and OpenFlow in particular enable independent development of network
Performance Evaluation of OpenDaylight SDN Controller
Performance Evaluation of OpenDaylight SDN Controller Zuhran Khan Khattak, Muhammad Awais and Adnan Iqbal Department of Computer Science Namal College Mianwali, Pakistan Email: {zuhran2010,awais2010,adnan.iqbal}@namal.edu.pk
Data Center Network Topologies: FatTree
Data Center Network Topologies: FatTree Hakim Weatherspoon Assistant Professor, Dept of Computer Science CS 5413: High Performance Systems and Networking September 22, 2014 Slides used and adapted judiciously
Software-Defined Networking for the Data Center. Dr. Peer Hasselmeyer NEC Laboratories Europe
Software-Defined Networking for the Data Center Dr. Peer Hasselmeyer NEC Laboratories Europe NW Technology Can t Cope with Current Needs We still use old technology... but we just pimp it To make it suitable
Research Article Dynamic Server Cluster Load Balancing in Virtualization Environment with OpenFlow
International Journal of Distributed Sensor Networks Volume 215, Article ID 531538, 9 pages http://dx.doi.org/1.1155/215/531538 Research Article Dynamic Server Cluster Load Balancing in Virtualization
FlowSense: Monitoring Network Utilization with Zero Measurement Cost
FlowSense: Monitoring Network Utilization with Zero Measurement Cost Curtis Yu 1, Cristian Lumezanu 2, Yueping Zhang 2, Vishal Singh 2, Guofei Jiang 2, and Harsha V. Madhyastha 1 1 University of California,
Languages for Software-Defined Networks
1 Languages for Software-Defined Networks Nate Foster, Michael J. Freedman, Arjun Guha, Rob Harrison, Naga Praveen Katta, Christopher Monsanto, Joshua Reich, Mark Reitblatt, Jennifer Rexford, Cole Schlesinger,
Load Balancing Mechanisms in Data Center Networks
Load Balancing Mechanisms in Data Center Networks Santosh Mahapatra Xin Yuan Department of Computer Science, Florida State University, Tallahassee, FL 33 {mahapatr,xyuan}@cs.fsu.edu Abstract We consider
The Evolution of SDN and OpenFlow: A Standards Perspective
The Evolution of SDN and OpenFlow: A Standards Perspective Jean Tourrilhes; Puneet Sharma; Sujata Banerjee; Justin Pettit HP Laboratories HPL-2014-41 Keyword(s): SDN; OpenFlow; Networking Abstract: SDN
Network Virtualization in the Data Center
EDIC RESEARCH PROPOSAL 1 Network Virtualization in the Data Center Sam Whitlock EB Group, I&C, EPFL Abstract Modern data centers are abstracted into different pools of resources: compute, storage, and
Extensible and Scalable Network Monitoring Using OpenSAFE
Extensible and Scalable Network Monitoring Using OpenSAFE Jeffrey R. Ballard [email protected] Ian Rae [email protected] Aditya Akella [email protected] Abstract Administrators of today s networks are
libnetvirt: the network virtualization library
libnetvirt: the network virtualization library Daniel Turull, Markus Hidell, Peter Sjödin KTH Royal Institute of Technology, School of ICT Stockholm, Sweden Email: {danieltt,mahidell,psj}@kth.se Abstract
Bootstrapping Software Defined Network for Flexible and Dynamic Control Plane Management
Bootstrapping Software Defined Network for Flexible and Dynamic Control Plane Management Prithviraj Patil, Aniruddha Gokhale and Akram Hakiri ISIS, Dept of EECS, Vanderbilt University, Nashville, TN, USA.
A Survey of SDN Security Research
A Survey of SDN Security Research Michael Coughlin University of Colorado Boulder [email protected] ABSTRACT Software defined networking (SDN) has established a new method for creating and
Solving I/O Bottlenecks to Enable Superior Cloud Efficiency
WHITE PAPER Solving I/O Bottlenecks to Enable Superior Cloud Efficiency Overview...1 Mellanox I/O Virtualization Features and Benefits...2 Summary...6 Overview We already have 8 or even 16 cores on one
Improving Network Management with Software Defined Networking
Improving Network Management with Software Defined Networking Hyojoon Kim and Nick Feamster, Georgia Institute of Technology 2013 IEEE Communications Magazine Presented by 101062505 林 瑋 琮 Outline 1. Introduction
Reactive Logic in Software-Defined Networking: Measuring Flow-Table Requirements
Reactive Logic in Software-Defined Networking: Measuring Flow-Table Requirements Maurizio Dusi, Roberto Bifulco, Francesco Gringoli, Fabian Schneider NEC Laboratories Europe, Germany E-mail: @neclab.eu
Towards Efficient Load Distribution in Big Data Cloud
Towards Efficient Load Distribution in Big Data Cloud Zhi Liu *, Xiang Wang *, Weishen Pan *, Baohua Yang, Xiaohe Hu * and Jun Li * Department of Automation, Tsinghua University, Beijing, China Research
a new sdn-based control plane architecture for 5G
a new sdn-based control plane architecture for 5G With a Case Study on Connectivity Management m. outline what is sdn? 5G proposed control plane connectivity control software-defined networking The needs
East-West Bridge for SDN Network Peering
East-West Bridge for SDN Network Peering Pingping Lin, Jun Bi, and Yangyang Wang Institute for Network Sciences and Cyberspace, Department of Computer Science, Tsinghua University Tsinghua National Laboratory
Steroid OpenFlow Service: Seamless Network Service Delivery in Software Defined Networks
Steroid OpenFlow Service: Seamless Network Service Delivery in Software Defined Networks Aaron Rosen and Kuang-Ching Wang Holcombe Department of Electrical and Computer Engineering Clemson University Clemson,
The Software Defined Hybrid Packet Optical Datacenter Network SDN AT LIGHT SPEED TM. 2012-13 CALIENT Technologies www.calient.
The Software Defined Hybrid Packet Optical Datacenter Network SDN AT LIGHT SPEED TM 2012-13 CALIENT Technologies www.calient.net 1 INTRODUCTION In datacenter networks, video, mobile data, and big data
CastFlow: Clean-Slate Multicast Approach using In-Advance Path Processing in Programmable Networks
CastFlow: Clean-Slate Multicast Approach using In-Advance Path Processing in Programmable Networks Cesar A. C. Marcondes, Tiago P. C. Santos, Arthur P. Godoy, Caio C. Viel and Cesar A. C. Teixeira Computer
Data Center Infrastructure of the future. Alexei Agueev, Systems Engineer
Data Center Infrastructure of the future Alexei Agueev, Systems Engineer Traditional DC Architecture Limitations Legacy 3 Tier DC Model Layer 2 Layer 2 Domain Layer 2 Layer 2 Domain Oversubscription Ports
Michael Jarschel, Thomas Zinner, Tobias Hoßfeld, Phuoc Tran Gia University of Würzburg, Institute of Computer Science, Würzburg, Germany.
2014 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media, including reprinting/republishing this material for advertising
Towards an Ethernet Learning Switch and Bandwidth Optimization using POX Controller
Towards an Ethernet Learning Switch and Bandwidth Optimization using POX Controller Abhishek Bagewadi 1, Dr. K N Rama Mohan Babu 2 M.Tech Student, Department Of ISE, Dayananda Sagar College of Engineering,
Advanced Study of SDN/OpenFlow controllers
Advanced Study of SDN/OpenFlow controllers Alexander Shalimov [email protected] Vasily Pashkov [email protected] Dmitry Zuikov [email protected] Ruslan Smeliansky [email protected] Daria Zimarina [email protected]
Frenetic: A Programming Language for OpenFlow Networks
Frenetic: A Programming Language for OpenFlow Networks Jennifer Rexford Princeton University http://www.frenetic-lang.org/ Joint work with Nate Foster, Dave Walker, Rob Harrison, Michael Freedman, Chris
Achieving a High-Performance Virtual Network Infrastructure with PLUMgrid IO Visor & Mellanox ConnectX -3 Pro
Achieving a High-Performance Virtual Network Infrastructure with PLUMgrid IO Visor & Mellanox ConnectX -3 Pro Whitepaper What s wrong with today s clouds? Compute and storage virtualization has enabled
Auto-Configuration of SDN Switches in SDN/Non-SDN Hybrid Network
Auto-Configuration of SDN Switches in SDN/Non-SDN Hybrid Network Rohit Katiyar [email protected] Prakash Pawar [email protected] Kotaro Kataoka [email protected] Abhay Gupta [email protected]
How To Understand The Power Of The Internet
DATA COMMUNICATOIN NETWORKING Instructor: Ouldooz Baghban Karimi Course Book: Computer Networking, A Top-Down Approach, Kurose, Ross Slides: - Course book Slides - Slides from Princeton University COS461
