Scalable Network Virtualization in Software-Defined Networks
|
|
|
- Julian Blair
- 10 years ago
- Views:
Transcription
1 Scalable Network Virtualization in Software-Defined Networks Dmitry Drutskoy Princeton University Eric Keller University of Pennsylvania Jennifer Rexford Princeton University ABSTRACT Network virtualization gives each tenant in a data center its own network topology and control over the flow of its traffic. By offering a standard interface between controller applications and switch forwarding tables, Software Defined Networking (SDN) is a natural platform for network virtualization. Yet, supporting a large number of tenants with different topologies and controller applications raises scalability challenges. In this paper, we present the FlowN architecture, which provides each tenant the illusion of its own address space, topology, and controller. The FlowN controller platform leverages database technology to efficiently store and manipulate mappings between the virtual networks and the physical switches. Rather than running a separate controller per tenant, FlowN performs lightweight containerbased virtualization. Experiments with our FlowN prototype, built as an extension to the NOX OpenFlow controller, show that our solution scales to a large number of tenants. 1. INTRODUCTION Hosted cloud computing has significantly lowered the barrier for creating new networked services. Likewise, experimental facilities like GENI( enable researchers to perform large-scale experiments on a slice of a shared infrastructure. By enabling sharing of physical resources, virtualization is key technology in these infrastructures. While the virtual machine is now the standard abstraction for sharing computing resources, the right abstraction for the network is a subject of ongoing debate. Existing solutions differ in the level of detail they expose to the individual tenants. Amazon EC2 offers a simple abstraction where all of a tenant s virtual machines can reach each other. Nicira [1] extends this one big switch model by offering providing programmatic control at the network edge to enable, for example, improved access control. Oktopus [2] exposes a network topology so tenants can perform customized routing and access control based on knowledge of their own applications and traffic patterns. Each abstraction is most appropriate for a different class of tenants. As more companies move to the cloud, providers must go beyond simple sharing of network bandwidth to support a wider range of abstractions. With a flexible network virtualization layer, a cloud provider can support multiple abstractions ranging from a simple one big switch abstraction (where tenants do not need to configure anything) to arbitrary topologies (where tenants run their own control logic). The key to supporting a variety of abstractions is a flexible virtualization layer that supports arbitrary topologies, address and resource isolation, and custom control logic. Our FlowN system provides this virtualization layer. Supporting a large number of tenants with different abstractions raises scalability challenges. For example, supporting virtual topologies requires a way for tenants to run their own control logic and learn about relevant topology changes. Software Defined Networking (SDN) is an appealing platform for network virtualization, since each tenant s control logic can run on a controller rather than the physical switches. In particular, OpenFlow [3] offers a standard API for installing packet-forwarding rules, querying traffic statistics, and learning about topology changes. Supporting multiple virtual networks with different topologies requires a way to map a rule or query issued on a virtual network to the corresponding physical switches, and to map a physical event (e.g., a link or switch failure) to the affected virtual components. The virtualization solution must perform these mapping operations quickly, to give each tenant real-time control over its virtual network. In this paper we present FlowN, an efficient and scalable virtualization solution. We build on top of SDN technology for programmable control of a network of switches. With FlowN, each tenant can specify its own address space, topology, and control logic. The FlowN architecture leverages advances in database technology for scalably mapping between the virtual and physical networks. Similarly, FlowN uses a shared controller platform, analogous to container-based virtualization, to efficiently run the tenants controller applications. Experiments with our prototype FlowN system, built as an extension to the NOX [4] OpenFlow controller, show that these two design decisions lead to a fast, flex-
2 ible, and scalable solution for network virtualization. 2. NETWORK VIRTUALIZATION For hosted and shared infrastructures, such as cloud computing infrastructure, we argue that full virtualization of a software-defined network is the correct way to represent the network to tenants. In this section we discuss the requirements for virtualization in terms of (i) specification of the virtual infrastructure and (ii) isolation between virtual infrastructures. 2.1 SDN Controller Application To support the widest variety of tenants, the cloud provider should allow each tenant to specify custom control logic on its own network topology. Softwaredefined networking (SDN) is quickly gaining traction as a way to program the network. In SDN, a logicallycentralized controller manages the collection of switches through a standard interface, enabling the software to control switches from a variety of vendors. With the OpenFlow [3] standard, for example, the controller s interface to a hardware switch is effectively a flow table with a prioritized list of rules. Each rule consists of a pattern that matches bits of the incoming packets, and actions that specify how to handle these packets. These actions include, for example, forwarding out of a specific port, dropping the packet, or sending the packet to the controller for further processing. The software controller is responsible for interacting with the switches (e.g., handling packets sent to the controller) and installing the flow table entries (e.g., installing rules in a series of switches to establish a path between two hosts). With FlowN, each tenant can run its own controller application. Of course, not all tenants need this level of control. Tenants wanting a simpler representation of the network can simply choose from default controller applications, such as all-to-all connectivity (similar to what Amazon EC2 offers) or an interface similar to a router (such as with RouteFlow [5]). This default controller application would run on top of the virtualization layer provided by FlowN. As such, the tenants can decide whether they want full control of the network, or a pre-existing abstraction that matches their needs. 2.2 Virtual Network Topology In addition to running a controller application, each tenant also specifies a network topology. This enables each tenant to design a network for its own needs, such as favoring low latency as in high-performance computing workloads or favoring a high bisection bandwidth in data-processing workloads [6]. With FlowN, each virtual topology consists of nodes, interfaces, and links. Virtual nodes can be either a server (virtual machine) or an SDN-based switch. Each node has a set of virtual interfaces that connect to other virtual interfaces via virtual links. Each virtual component can include resource constraints e.g., the maximum number of flow table entries on the switch, the number of cores on a server, or the bandwidth and maximum latency for virtual links. The cloud provider runs an embedding algorithm [7] to map the requested virtual resources to the available physical resources. Importantly, with full virtualization, the virtual topologies are decoupled from the physical infrastructure. This is in contrast to slicing the physical resources (as done with FlowVisor[8]) which also provides tenants with the ability to run their own controller over a portion of the traffic and a subset of the physical network. However, with slicing, the mapping between virtual and physical topologies is visible to the tenants. With FlowN, the mappings are not exposed to the tenants. Instead, the tenants simply see their virtual networks. With this decoupling, the cloud provider can offer virtual topologies with richer connectivity than the physical network, or remap the virtual networks to hide the effects of failures or planned maintenance. Virtual nodes, whether switches or VMs, can move to different physical nodes without changing the tenant s view of the network. 2.3 Address Space and Bandwidth Isolation Each tenant has an address space, defined by the fields in the packet headers (e.g., source and destination IP address, TCP port numbers, etc.). Rather than divide the available address space among the tenants, we virtualize the address space by presenting virtual address spaces to each application. This gives each tenant control over all fields within the header (e.g., two tenants can use the same private IP addresses). To do this, the FlowN virtualization layer provides a mapping between the virtual addresses and the physical addresses. To distinguish between the traffic and rules for different tenants, the edge switches encapsulate incoming packets with a protocol-agnostic extra header, transparent to the tenant s virtual machines and controller application. This extra header (e.g., VLAN) is simply to identify the tenant we do not run the associated protocol logic (e.g., per VLAN spanning-tree protocol). In addition to address-space isolation, the virtualization solution must support bandwidth isolation. While current SDN hardware does not include the ability to limit bandwidth usage, the recent OpenFlow specification includes this capability [9]. Using embedding algorithms, we guarantee bandwidth to each virtual link. As support for enforcing these allocations becomes available, we can incorporate them into our FlowN system. 3. FLOWN ARCHITECTURE OVERVIEW Hosted cloud infrastructures are typically large datacenters that host many tenants. As such, our virtualization solution must scale in both the size of the physical 2
3 network and the number of virtual networks. Being scalable and efficient is especially critical in softwaredefined networks, where packets are not only handled in the hardware switches but also can be sent to the centralized controller for processing. There are two main performance issues with virtualization in the context of SDN. An SDN controller must interact with switches through a reliable communication channel (e.g., SSL over TCP) and maintain a current view of the physical infrastructure (e.g., which switches are alive). This incurs both memory and processing overhead, and introduces latency. With virtualization, any interaction between a tenant s controller application and the physical switches must go through a mapping between the virtual and physical networks. As the number of virtual and physical switches increases, performing this mapping becomes a limiting factor in scalability. In order to overcome these, the FlowN architecture (depicted in Figure 1) is based around two key design decisions. First, as discussed in Section 4, FlowN enables tenants to write arbitrary controller software that has full control over the address space and can target an arbitrary virtual topology. However, we use a shared controller platform (e.g., NOX [4]) rather than running a separate controller for each tenant. This approach is analogous to container-based virtualization such as LXC for Linux or FreeBSD Jails. Second, as discussed in Section 5, we make use of modern database technology for performing the mapping between virtual and physical address space. This provides a scalable solution that is easily extensible as new functionality is needed. Figure 1: System design 4. CONTAINER-BASED VIRTUALIZATION Each tenant has a controller application that runs on top of its virtual topology. This application consists of handlers that respond to network events (e.g., topology changes, packet arrivals, and new traffic statistics) by sending new commands to the underlying switches. Each application should have the illusion of running on its own controller. However, running a full-fledged controller for each tenant is unnecessarily expensive. Instead, FlowN supports container-based virtualization by mapping API calls in the NOX controller back and forth between the physical and virtual networks. 4.1 Overhead of Full Controller Virtualization Running a separate controller for each tenant seems like a natural way to support network virtualization. In this solution, the virtualization system exchanges Open- Flow messages directly with the underlying switches, and exchanges OpenFlow messages with each tenant s controller. This system keeps track of the relationships between physical and virtual components, and whatever encapsulation is applied to each tenant s traffic. When events happen in the network, the system translates these physical events to one or more virtual events (e.g., the failure of a virtual link or switch, or a packetin event for a particular virtual network), and sends the corresponding OpenFlow message to the appropriate tenant(s). Similarly, when a tenant s controller sends an OpenFlow message, the virtualization system converts the message (e.g., mapping virtual switch identifiers to physical switch identifiers, including the tenant-specific encapsulation header in the packet-handling rules) before sending a message to the physical switch. The FlowVisor [8] system follows this approach, virtualizing the switch data plane by mapping OpenFlow messages sent between the switches and the per-tenant controllers. Using the OpenFlow standard as the interface to the virtualization system has some advantages (e.g., tenants can select any controller platform), but introduces unnecessary overhead. Repeatedly marshalling and unmarshalling parameters in OpenFlow messages incurs extra latency. Running a complete instance of a controller for each tenant involves running a large code base which consumes extra memory. Periodically checking for liveness of the separate controllers incurs additional overhead. The overhead for supporting a single tenant may not that significant. However, when you consider that the virtualization layer will now have to provide the full interface of switches for each virtual switch (which will outnumber the number of physical switches by at least an order of magnitude), the cumulative overhead is significant requiring more computing resources and incurring extra, unnecessary latency. 4.2 Container-Based Controller Virtualization Instead, we adopt a solution inspired by containerbased virtualization, where a shared kernel runs multiple user-space containers with independent name spaces 3
4 and resource scheduling. FlowN is a modified NOX controller that can run multiple applications, each with its own address space, virtual topology, and event handlers. Rather than map OpenFlow protocol messages, FlowN maps between the NOX API calls. In essence, FlowN is a special NOX application that runs its own event handlers that call tenant-specific event handlers. For example, when a packet arrives at the controller, the FlowN packet-in event handler runs. This handler identifies the appropriate tenant (e.g., based on the VLAN tag on the packet) and invokes that tenant s own packet-in handler. Similarly, if a physical port fails, FlowN s portstatus event handler identifies the virtual links traversing the failed physical port, and invokes the port-status event handler for each affected tenant with the id of its failed virtual port. Similarly, when a tenant s event handler invokes an API call, FlowN intercepts the call and translates between the virtual and physical components. For example, suppose a tenant calls a function that installs a packet-handling rule in a switch. FlowN maps the virtual switch id to the identifier of the corresponding physical switch, checks that the tenant has not exceeded its share of space for rules on that switch, and modifies the pattern and action(s) in the rule. When modifying a rule, FlowN changes the pattern to include the tenant-specific VLAN tag, and the actions to forward on the physical port(s) associated with the tenant s virtual port(s). Then, FlowN invokes the underlying NOX function to install the modified rule in the associated physical switch. FlowN follows a similar approach to intercept other API calls for removing rules, querying traffic statistics, sending packets, etc. Each tenant s event handlers run within its own thread. While we have not incorporated any strict resource limits, CPU scheduling does provide fairness among the threads. Further, running a separate thread per tenant protects against a tenant s controller application from not returning (e.g., having an infinite loop) and preventing other controller applications from running. 5. DATABASE-DRIVEN MAPPINGS Container-based controller virtualization reduces the overhead of running multiple controller applications. However, any interaction between a virtual topology and the physical network still requires performing a mapping between the virtual and physical spaces. This can easily become a bottleneck. FlowN leverages advances in database technology to overcome this bottleneck. 5.1 Overhead of Virtual Network Mapping To provide each tenant with its own address space and topology, FlowN performs a mapping between virtual and physical resources. The tenants packets are encapsulated with a unique header field (e.g., a VLAN tag) asthey enter the network. To support alargenumber of tenants, the switches swap the labels at each hop in the network. This allows a switch to classify packets based on the (i) physical interface port, (ii) label in the encapsulation header, and (iii) fields specified by the tenant application. This enables each switch to uniquely determine the appropriate actions to perform. Determining these labels is the responsibility of the virtualization software running on controller. A virtualto-physical mapping occurs when an application modifies the flow table (e.g., adding a new flow rule). The virtualization layer must alter the rules to uniquely identify the virtual link or virtual switch. A physical-tovirtual mapping occurs when the physical switch sends a message to the controller (e.g., when a packet does not match any flow table rule). The virtualization layer must demultiplex the packet to the right tenant (and identify the right virtual port and virtual switch). These mappings can either be one-to-one (as in the case of installing a new rule or handling a packet sent to the controller) or one-to-many (as in the case of link failures that affect multiple tenants). In general, these mappings are based on various combinations of input parameters and output parameters. Using a custom data structure with custom code to perform these mappings can easily become unwieldy, leading to software that is difficult to maintain and extend. More importantly, this custom software would need to scale across multiple physical controllers. Depending on the complexity of the mappings, a single controller machine eventually hits a limit on the number of mappings per second that it can perform. To scale further, the controller can run on multiple physical servers. With custom code and in-memory data structures, distributing the state and logic in a consistent fashion becomes extremely difficult. This custom data structure is the approach taken by FlowVisor [8]. Though FlowVisor does not provide full virtualzation (it instead slices the network resources), it must still map an incoming packet to the appropriate slice. In some cases, hashing can be used to perform a fast lookup, However, this is not always possible. For example, for the one-to-many physical to virtual mappings (e.g., link failure), FlowVisor iterates over all tenants, and for each tenant it performs a lookup with the physical identifier. 5.2 Topology Mapping With a Database Instead of using an in-memory data structure with custom mapping code, FlowN uses modern database technology. Both the topology descriptions and the assignment to physical resources lend themselves directly to the relational model of a database. Each virtual topology is uniquely identified by some key, and consists of a number of nodes, interfaces, and links. Nodes con- 4
5 tain the corresponding interfaces, and links connect one interface to another. The physical topology is described in a similarfashion. Eachvirtualnodeis mapped toone physical node; each virtual link becomes a path, which is a collection of physical links and a hop counter giving the ordering of physical links. FlowN stores mapping information in two tables. The first table stores the node assignments, mapping each virtual node to one physical node. The second table stores the path assignment, by mapping each virtual link to a set of physical links, each with a hop count number that increases in the direction of the path. Mapping between virtual and physical space then becomes a simple matter of issuing an SQL query. For example, for packets received at the controller for software processing, we must remove the encapsulation tag and modify the identifier of which switch and port the packet was received on. This can be realized with the following query: SELECT L.Tenant_ID, L.node_ID1, L.node_port1 FROM Tenant_Link L, Node_T2P_Mapping M WHERE VLAN_tag = x AND M.physical_node_ID = y AND M.tenant_ID = L.tenant_ID AND L.node_ID1 = M.tenant_node_ID Other events are handled in similar manner, including lookups which yield multiple results (e.g., when a physical switch fails and we must fail all virtual switches currently mapped to that physical switch). While using a relational database reduces code complexity, the real advantage of using a database is that we can capitalize on years of research to achieve durable state and a highly scalable system. As we expect many more reads than writes in this database, we can run a master database server that handles any writes to the database (e.g., for topology changes and adding new virtual networks). Multiple slave servers are then used to replicate the state across multiple servers. Since the mappings do not change often, caching can then be utilized to optimize for mappings that frequently occur. With a replicated database, the FlowN virtualization layer can be partitioned across multiple physical servers (co-located with each replica of the database). Each physical server interfaces with a subset of the physical switches and performs the necessary physical to virtual mappings. Each physical server is also responsible for running the controller application for a subset of tenants and performing the associated virtual to physical mappings. In some cases, a tenant s virtual network may span physical switches handled by different controller servers. In that case, FlowN simply sends a message from one controller server (say, responsible for the physical switch) to another (say, running the tenant s controller application), over a TCP connection. More efficient algorithms for assigning tenants and switches to servers is an interesting area for future research. 6. EVALUATION FlowN a scalable and efficient software-defined network virtualization system In this section, we compare our FlowN prototype with unvirtualized NOX (to determine the overhead of the virtualization layer) and FlowVisor (to evaluate scalability and efficiency). WebuiltaprototypeofFlowNbyextendingthePython NOX version 1.0 OpenFlow controller [4]. This controller runs without any applications initially, instead providing an interface to add applications (i.e., for each tenant) at run time. Our algorithm for embedding new virtual networks is based on the work of Chowdhury, et. al. [7]. The embedder populates a MySQL version database with the mappings between virtual and physical spaces. We implement all schemes using the InnoDB engine. For encapsulation, we use the VLAN header, pushing a new header at the ingress of the physical network, swapping labels as necessary in the core, and popping the header at the egress. Alongside each database replica, we run a memcached instance which gets populated with the database lookup results and provides faster access times should a lookup be repeated. We run our prototype on a virtual machine running Ubuntu LTS given full resources of three processors of a i GHz, 2 GB of memory, and an SSD drive (Crucial m4 SSD 64GB). We perform tests by simulating OpenFlow network operation on another VM (running on an isolated processor with its own memory space) using a modified cbench [10] to generate packets with the correct encapsulation tags. We then measure the latency by measuring the time between when cbench generates a packet-in event and when cbench receives a response to the event. The virtual network controllers for each network are simple learning switches that operate on individual switches. In our setup, each new packet-in event triggers a rule installation, which is received by the cbench application. While it is difficult to directly compare FlowN and FlowVisor since they are performing different functionality, as seen in Figure 2, FlowN has a much slower increase in latency than FlowVisor as more virtual networks are run. FlowVisor has lower latency for small numbers of virtual networks as the overhead of using a database, as compared to a custom data structure, dominates at these small scales. However, at larger sizes (e.g., around 100 virtual networks and greater), the scalability of the database approach used in FlowN wins out. We also note that the overall increase in latency over the unvirtualized case is less than 0.2ms for the prototype using memcached and 0.3ms for the one without. 7. RELATED WORK Network virtualization has been proposed in various contexts. In early work, ATM switches are partitioned 5
6 Figure 2: Latency vs. Virtual Network count into switchlets to enable dynamic creation of virtual networks [11]. In industry, router virtualization is already available in commercial routers [12]. This then enables the use of virtualization to enable multiple service providers to share the same physical infrastructure, as with VINI [13], or as a means for a single provider to simplify management of a single physical infrastructure among many services, as with ShadowNet [14]. More recently, network virtualization solutions in the context of software-defined networks have been introduced [1, 8, 15] to compliment the virtualized computing infrastructure in multi-tenant datacenters. While a lot of work has been done for network virtualization in the SDN environment, the current solutions differ from our approach in their approach to splitting the address space and virtual topology representation. With FlowN we provide full virtualization of the address space and the topology, with a scalable and efficient system. 8. CONCLUSIONS In this paper we presented FlowN which provides a full network virtualization solution for software defined networks. The FlowN architecture is based around the use of namespaces where the controller platform is shared by each virtual network for an efficient solution. We make use of database technology which has been developed to support such features as replication and caching for mappings between virtual and physical spaces. The evaluation of our prototype shows that FlowN is a scalable and efficient solution. 9. REFERENCES [1] Nicira, Network virtualization platform. network-virtualization-platform. [2] C. Wilson, H. Ballani, T. Karagiannis, and A. Rowstron, Better never than late: Meeting deadlines in datacenter networks, in ACM SIGCOMM, August [3] N. McKeown, T. Anderson, H. Balakrishnan, G. Parulkar, L. Peterson, J. Rexford, S. Shenker, and J. Turner, OpenFlow: Enabling innovation in campus networks, ACM SIGCOMM CCR, vol. 38, no. 2, pp , [4] N. Gude, T. Koponen, J. Pettit, B. Pfaff, M. Casado, N. McKeown, and S. Shenker, NOX: Towards an operating system for networks, ACM SIGCOMM CCR, vol. 38, no. 3, [5] M. R. Nascimento, C. E. Rothenberg, M. R. Salvador, C. N. A. Corrêa, S. C. de Lucena, and M. F. Magalhães, Virtual routers as a service: The RouteFlow approach leveraging software-defined networks, in Conference on Future Internet Technologies (CFI), June [6] K. Webb, A. Snoeren,, and K. Yocum, Topology switching for data center networks, [7] N. Chowdhury, M. Rahman, and R. Boutaba, Virtual network embedding with coordinated node and link mapping, in IEEE INFOCOM, pp , April [8] R. Sherwood, G. Gibb, K.-K. Yap, G. Appenzeller, M. Casado, N. McKeown, and G. Parulkar, Can the production network be the testbed?, in Operating Systems Design and Implementation, October [9] Openflow switch specification stories/downloads/specification/ openflow-spec-v1.3.0.pdf, April [10] Openflow operations per second controller benchmark. http: // March [11] J. van der Merwe and I. Leslie, Switchlets and dynamic virtual ATM networks, in IFIP/IEEE International Symposium on Integrated Network Management, May [12] Configuring virtual routers. erx/junose80/swconfig-system-basics/html/ virtual-router-config.html. [13] A. Bavier, N. Feamster, M. Huang, L. Peterson, and J. Rexford, In VINI veritas: Realistic and controlled network experimentation, in ACM SIGCOMM, August [14] X. Chen, Z. M. Mao, and J. van der Merwe, ShadowNet: A platform for rapid and safe network evolution, in USENIX Annual Technical Conference, June [15] NEC, ProgrammableFlow Controller. PFlowController. 6
Hosted cloud computing has significantly. Scalable Network Virtualization in Software- Defined Networks FPO. Virtualization
Virtualization FPO Scalable Network Virtualization in Software- Defined Networks Network virtualization gives each tenant in a data center its own network topology and control over its traffic flow. Software-defined
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
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
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
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
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]
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
Information- Centric Networks. Section # 13.2: Alternatives Instructor: George Xylomenos Department: Informatics
Information- Centric Networks Section # 13.2: Alternatives Instructor: George Xylomenos Department: Informatics Funding These educational materials have been developed as part of the instructors educational
基 於 SDN 與 可 程 式 化 硬 體 架 構 之 雲 端 網 路 系 統 交 換 器
基 於 SDN 與 可 程 式 化 硬 體 架 構 之 雲 端 網 路 系 統 交 換 器 楊 竹 星 教 授 國 立 成 功 大 學 電 機 工 程 學 系 Outline Introduction OpenFlow NetFPGA OpenFlow Switch on NetFPGA Development Cases Conclusion 2 Introduction With the proposal
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
Live Migration of an Entire Network (and its Hosts)
Live Migration of an Entire Network (and its Hosts) Eric Keller, Soudeh Ghorbani, Matt Caesar, Jennifer Rexford University of Colorado UIUC Princeton University ABSTRACT Live virtual machine (VM) migration
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
Network Virtualization
Network Virtualization What is Network Virtualization? Abstraction of the physical network Support for multiple logical networks running on a common shared physical substrate A container of network services
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
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
Ethernet-based Software Defined Network (SDN) Cloud Computing Research Center for Mobile Applications (CCMA), ITRI 雲 端 運 算 行 動 應 用 研 究 中 心
Ethernet-based Software Defined Network (SDN) Cloud Computing Research Center for Mobile Applications (CCMA), ITRI 雲 端 運 算 行 動 應 用 研 究 中 心 1 SDN Introduction Decoupling of control plane from data plane
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
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
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
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],
OpenFlow: Enabling Innovation in Campus Networks
OpenFlow: Enabling Innovation in Campus Networks Nick McKeown Stanford University Presenter: Munhwan Choi Table of contents What is OpenFlow? The OpenFlow switch Using OpenFlow OpenFlow Switch Specification
Software Defined Networking
Software Defined Networking Richard T. B. Ma School of Computing National University of Singapore Material from: Scott Shenker (UC Berkeley), Nick McKeown (Stanford), Jennifer Rexford (Princeton) CS 4226:
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
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
Autonomicity Design in OpenFlow Based Software Defined Networking
GC'12 Workshop: The 4th IEEE International Workshop on Management of Emerging Networks and Services Autonomicity Design in OpenFlow Based Software Defined Networking WANG Wendong, Yannan HU, Xirong QUE,
The Internet: A Remarkable Story. Inside the Net: A Different Story. Networks are Hard to Manage. Software Defined Networking Concepts
The Internet: A Remarkable Story Software Defined Networking Concepts Based on the materials from Jennifer Rexford (Princeton) and Nick McKeown(Stanford) Tremendous success From research experiment to
Software Defined Networks
Software Defined Networks Damiano Carra Università degli Studi di Verona Dipartimento di Informatica Acknowledgements! Credits Part of the course material is based on slides provided by the following authors
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
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? Many slides stolen from Jennifer Rexford, Nick McKeown, Scott Shenker, Teemu Koponen, Yotam Harchol and David Hay Agenda
Programmable Networking with Open vswitch
Programmable Networking with Open vswitch Jesse Gross LinuxCon September, 2013 2009 VMware Inc. All rights reserved Background: The Evolution of Data Centers Virtualization has created data center workloads
Mobility Management Framework in Software Defined Networks
, pp. 1-10 http://dx.doi.org/10.14257/ijseia.2014.8.8,01 Mobility Management Framework in Software Defined Networks Kyoung-Hee Lee Department of Computer Engineering, Pai Chai University, Korea [email protected]
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
Network Virtualization and Resource Allocation in OpenFlow-based Wide Area Networks
Network Virtualization and Resource Allocation in OpenFlow-based Wide Area Networks Pontus Sköldström Acreo AB, Kista, Sweden Email: [email protected] Kiran Yedavalli Ericsson Research, San Jose, CA, USA
Outline. Institute of Computer and Communication Network Engineering. Institute of Computer and Communication Network Engineering
Institute of Computer and Communication Network Engineering Institute of Computer and Communication Network Engineering Communication Networks Software Defined Networking (SDN) Prof. Dr. Admela Jukan Dr.
A Method for Load Balancing based on Software- Defined Network
, pp.43-48 http://dx.doi.org/10.14257/astl.2014.45.09 A Method for Load Balancing based on Software- Defined Network Yuanhao Zhou 1, Li Ruan 1, Limin Xiao 1, Rui Liu 1 1. State Key Laboratory of Software
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
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
Large-scale Network Protocol Emulation on Commodity Cloud
Large-scale Network Protocol Emulation on Commodity Cloud Anirup Dutta University of Houston [email protected] Omprakash Gnawali University of Houston [email protected] ABSTRACT Network emulation allows us
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
IPOP-TinCan: User-defined IP-over-P2P Virtual Private Networks
IPOP-TinCan: User-defined IP-over-P2P Virtual Private Networks Renato Figueiredo Advanced Computing and Information Systems Lab University of Florida ipop-project.org Unit 3: Intra-cloud Virtual Networks
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,
VXLAN: Scaling Data Center Capacity. White Paper
VXLAN: Scaling Data Center Capacity White Paper Virtual Extensible LAN (VXLAN) Overview This document provides an overview of how VXLAN works. It also provides criteria to help determine when and where
Network Virtualization and Software-defined Networking. Chris Wright and Thomas Graf Red Hat June 14, 2013
Network Virtualization and Software-defined Networking Chris Wright and Thomas Graf Red Hat June 14, 2013 Agenda Problem Statement Definitions Solutions She can't take much more of this, captain! Challenges
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
Control-Plane Slicing Methods in Multi-Tenant Software Defined Networks
Control-Plane Slicing Methods in Multi-Tenant Software Defined Networks C. Argyropoulos, S. Mastorakis, K. Giotis, G. Androulidakis, D. Kalogeras, V. Maglaris Network Management & Optimal Design Laboratory
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
Network performance in virtual infrastructures
Network performance in virtual infrastructures A closer look at Amazon EC2 Alexandru-Dorin GIURGIU University of Amsterdam System and Network Engineering Master 03 February 2010 Coordinators: Paola Grosso
Cloud Networking Disruption with Software Defined Network Virtualization. Ali Khayam
Cloud Networking Disruption with Software Defined Network Virtualization Ali Khayam In the next one hour Let s discuss two disruptive new paradigms in the world of networking: Network Virtualization Software
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
A Study on Software Defined Networking
A Study on Software Defined Networking Yogita Shivaji Hande, M. Akkalakshmi Research Scholar, Dept. of Information Technology, Gitam University, Hyderabad, India Professor, Dept. of Information Technology,
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
Software Defined Networking & Openflow
Software Defined Networking & Openflow Autonomic Computer Systems, HS 2015 Christopher Scherb, 01.10.2015 Overview What is Software Defined Networks? Brief summary on routing and forwarding Introduction
SDN. WHITE PAPER Intel Ethernet Switch FM6000 Series - Software Defined Networking. Recep Ozdag Intel Corporation
WHITE PAPER Intel Ethernet Switch FM6000 Series - Software Defined Networking Intel Ethernet Switch FM6000 Series - Software Defined Networking Recep Ozdag Intel Corporation Software Defined Networking
SWIM: SWItch Manager For Data Center Networks
SWIM: SWItch Manager For Data Center Networks Chao-Chih Chen, Peng Sun, Lihua Yuan, David A. Maltz and Chen-Nee Chuah and Prasant Mohapatra Department of Computer Science, University of California, Davis
Ten Things to Look for in an SDN Controller
Ten Things to Look for in an SDN Controller Executive Summary Over the last six months there has been significant growth in the interest that IT organizations have shown in Software-Defined Networking
Software-Defined Networking Architecture Framework for Multi-Tenant Enterprise Cloud Environments
Software-Defined Networking Architecture Framework for Multi-Tenant Enterprise Cloud Environments Aryan TaheriMonfared Department of Electrical Engineering and Computer Science University of Stavanger
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]
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,
SOFTWARE-DEFINED NETWORKING AND OPENFLOW
SOFTWARE-DEFINED NETWORKING AND OPENFLOW Freddie Örnebjär TREX Workshop 2012 2012 Brocade Communications Systems, Inc. 2012/09/14 Software-Defined Networking (SDN): Fundamental Control
SDN CENTRALIZED NETWORK COMMAND AND CONTROL
SDN CENTRALIZED NETWORK COMMAND AND CONTROL Software Defined Networking (SDN) is a hot topic in the data center and cloud community. The geniuses over at IDC predict a $2 billion market by 2016
The Platform as a Service Model for Networking
The Platform as a Service Model for Networking Eric Keller Princeton University [email protected] Jennifer Rexford Princeton University [email protected] Abstract Decoupling infrastructure management
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]
OpenFlow: Concept and Practice. Dukhyun Chang ([email protected])
OpenFlow: Concept and Practice Dukhyun Chang ([email protected]) 1 Contents Software-Defined Networking (SDN) Overview of OpenFlow Experiment with OpenFlow 2/24 Software Defined Networking.. decoupling
From Active & Programmable Networks to.. OpenFlow & Software Defined Networks. Prof. C. Tschudin, M. Sifalakis, T. Meyer, M. Monti, S.
From Active & Programmable Networks to.. OpenFlow & Software Defined Networks Prof. C. Tschudin, M. Sifalakis, T. Meyer, M. Monti, S. Braun University of Basel Cs321 - HS 2012 (Slides material from www.bigswitch.com)
Open Source Tools & Platforms
Open Source Tools & Platforms Open Networking Lab Ali Al-Shabibi Agenda Introduction to ON.Lab; Who we are? What we are doing? ONOS Overview OpenVirtex Overview ONRC Organizational Structure Berkeley Scott
Securing Local Area Network with OpenFlow
Securing Local Area Network with OpenFlow Master s Thesis Presentation Fahad B. H. Chowdhury Supervisor: Professor Jukka Manner Advisor: Timo Kiravuo Department of Communications and Networking Aalto University
Cloud Computing Security: What Changes with Software-Defined Networking?
Cloud Computing Security: What Changes with Software-Defined Networking? José Fortes Center for Cloud and Autonomic Computing Advanced Computing and Information Systems Lab ARO Workshop on Cloud Security
The Lagopus SDN Software Switch. 3.1 SDN and OpenFlow. 3. Cloud Computing Technology
3. The Lagopus SDN Software Switch Here we explain the capabilities of the new Lagopus software switch in detail, starting with the basics of SDN and OpenFlow. 3.1 SDN and OpenFlow Those engaged in network-related
Applying SDN to Network Management Problems. Nick Feamster University of Maryland
Applying SDN to Network Management Problems Nick Feamster University of Maryland 1 Addressing the Challenges of Network Management Challenge Approach System Frequent Changes Event-Based Network Control
OpenFlow - the key standard of Software-Defined Networks. Dmitry Orekhov, Epam Systems
OpenFlow - the key standard of Software-Defined Networks Dmitry Orekhov, Epam Systems Software-defined network The Need for a New Network Architecture Limitations of Current Networking Technologies Changing
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
OpenFlow-Based Dynamic Server Cluster Load Balancing with Measurement Support
OpenFlow-Based Dynamic Server Cluster Load Balancing with Measurement Support Qingwei Du and Huaidong Zhuang College of Computer Science and Technology, Nanjing University of Aeronautics and Astronautics,
Dynamic Security Traversal in OpenFlow Networks with QoS Guarantee
International Journal of Science and Engineering Vol.4 No.2(2014):251-256 251 Dynamic Security Traversal in OpenFlow Networks with QoS Guarantee Yu-Jia Chen, Feng-Yi Lin and Li-Chun Wang Department of
Design and Implementation of Dynamic load balancer on OpenFlow enabled SDNs
IOSR Journal of Engineering (IOSRJEN) e-issn: 2250-3021, p-issn: 2278-8719 Vol. 3, Issue 8 (August. 2013), V4 PP 32-41 Design and Implementation of Dynamic load balancer on OpenFlow enabled SDNs Ragalatha
Wedge Networks: Transparent Service Insertion in SDNs Using OpenFlow
Wedge Networks: EXECUTIVE SUMMARY In this paper, we will describe a novel way to insert Wedge Network s multiple content security services (such as Anti-Virus, Anti-Spam, Web Filtering, Data Loss Prevention,
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
Software Defined Networking Subtitle: Network Virtualization Terry Slattery Chesapeake NetCraftsmen Principal Consultant CCIE #1026.
Software Defined Networking Subtitle: Network Virtualization Terry Slattery Chesapeake NetCraftsmen Principal Consultant CCIE #1026 1 What is Virtualization? Virtual Existing or resulting in essence or
Data Analysis Load Balancer
Data Analysis Load Balancer Design Document: Version: 1.0 Last saved by Chris Small April 12, 2010 Abstract: The project is to design a mechanism to load balance network traffic over multiple different
Survey: Software Defined Networks with Emphasis on Network Monitoring
Survey: Software Defined Networks with Emphasis on Network Monitoring Prashanth [email protected] Indian Institute of Technology, Bombay (IIT-B) Powai, Mumbai, Maharastra India 31 Oct 2015 Abstract
Quantifying the Performance Degradation of IPv6 for TCP in Windows and Linux Networking
Quantifying the Performance Degradation of IPv6 for TCP in Windows and Linux Networking Burjiz Soorty School of Computing and Mathematical Sciences Auckland University of Technology Auckland, New Zealand
Enhancing Hypervisor and Cloud Solutions Using Embedded Linux Iisko Lappalainen MontaVista
Enhancing Hypervisor and Cloud Solutions Using Embedded Linux Iisko Lappalainen MontaVista Setting the Stage This presentation will discuss the usage of Linux as a base component of hypervisor components
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
Analysis on Virtualization Technologies in Cloud
Analysis on Virtualization Technologies in Cloud 1 V RaviTeja Kanakala, V.Krishna Reddy, K.Thirupathi Rao 1 Research Scholar, Department of CSE, KL University, Vaddeswaram, India I. Abstract Virtualization
Virtualization, SDN and NFV
Virtualization, SDN and NFV HOW DO THEY FIT TOGETHER? Traditional networks lack the flexibility to keep pace with dynamic computing and storage needs of today s data centers. In order to implement changes,
SOFTWARE-DEFINED NETWORKING AND OPENFLOW
SOFTWARE-DEFINED NETWORKING AND OPENFLOW Eric Choi < [email protected]> Senior Manager, Service Provider Business Unit, APJ 2012 Brocade Communications Systems, Inc. EPF 7 2012/09/17 Software-Defined Networking
Autonomous Fast Rerouting for Software Defined Network
Autonomous ast Rerouting for Software Defined Network 2012.10.29 NTT Network Service System Laboratories, NTT Corporation Shohei Kamamura, Akeo Masuda, Koji Sasayama Page 1 Outline 1. Background and Motivation
Optimizing Data Center Networks for Cloud Computing
PRAMAK 1 Optimizing Data Center Networks for Cloud Computing Data Center networks have evolved over time as the nature of computing changed. They evolved to handle the computing models based on main-frames,
MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM?
MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM? Ashutosh Shinde Performance Architect [email protected] Validating if the workload generated by the load generating tools is applied
Towards Software Defined Cellular Networks
Towards Software Defined Cellular Networks Li Erran Li (Bell Labs, Alcatel-Lucent) Morley Mao (University of Michigan) Jennifer Rexford (Princeton University) 1 Outline Critiques of LTE Architecture CellSDN
Virtual Machine Monitors. Dr. Marc E. Fiuczynski Research Scholar Princeton University
Virtual Machine Monitors Dr. Marc E. Fiuczynski Research Scholar Princeton University Introduction Have been around since 1960 s on mainframes used for multitasking Good example VM/370 Have resurfaced
Software Defined Networking: Advanced Software Engineering to Computer Networks
Software Defined Networking: Advanced Software Engineering to Computer Networks Ankush V. Ajmire 1, Prof. Amit M. Sahu 2 1 Student of Master of Engineering (Computer Science and Engineering), G.H. Raisoni
Extending Networking to Fit the Cloud
VXLAN Extending Networking to Fit the Cloud Kamau WangŨ H Ũ Kamau Wangũhgũ is a Consulting Architect at VMware and a member of the Global Technical Service, Center of Excellence group. Kamau s focus at
The libfluid OpenFlow Driver Implementation
The libfluid OpenFlow Driver Implementation Allan Vidal 1, Christian Esteve Rothenberg 2, Fábio Luciano Verdi 1 1 Programa de Pós-graduação em Ciência da Computação, UFSCar, Sorocaba 2 Faculdade de Engenharia
Software Defined Networking (SDN) - Open Flow
Software Defined Networking (SDN) - Open Flow Introduction Current Internet: egalitarian routing/delivery based on destination address, best effort. Future Internet: criteria based traffic management,
Rackspace Cloud Databases and Container-based Virtualization
Rackspace Cloud Databases and Container-based Virtualization August 2012 J.R. Arredondo @jrarredondo Page 1 of 6 INTRODUCTION When Rackspace set out to build the Cloud Databases product, we asked many
