SOFTWARE DEFINED NETWORKS REALITY CHECK. DENOG5, Darmstadt, 14/11/2013 Carsten Michel
|
|
|
- Aleesha Goodman
- 10 years ago
- Views:
Transcription
1 SOFTWARE DEFINED NETWORKS REALITY CHECK DENOG5, Darmstadt, 14/11/2013 Carsten Michel
2 Software Defined Networks (SDN)! Why Software Defined Networking? There s a hype in the industry!! Dispelling some myths SDN does not save CAPEX SDN does not save OPEX SDN is not a provisioning system or configuration management tool SDN is not a new protocol! You can t buy SDN!! It s an architectural approach (Source: Wikipedia, Hype Cycle) 2
3 Problem Statement! Application Awareness Applications implemented as over-the-top for speed, agility and avoidance of network interaction Missing localization (especially true for CDN-traffic)! Service differentiation Difficult to introduce new functionality and services into the network; most often new services require additional boxes! Flexibility in Forwarding! Routing based on business logical rather than shortest-path hard to implement; finest granularity in standard routing is the prefix 3
4 Problem Solution by Abstraction! How do you solve a problem? Divide-and-conquer, i.e. breaking the complex problem into small solvable problems Abstraction, i.e. building a model with information which is relevant to the problem! Short primer on Abstraction: How did programming get simple? Machine language has no abstraction, i.e. have to deal with low-level details High-level programming languages have useful abstraction (e.g. file systems, virtual memory, abstract data types, etc.) Development frameworks and state-of-the-art programming languages add even more abstraction (e.g. object orientation, garbage collection, etc.)! Why is abstraction useful? Well-defined interfaces used to instantiate abstraction Freedom of implementation on both sides of the interface Introduction of modular programming structure! Complexity has not magically disappeared, but is merely hidden 4
5 Do we have Abstraction in Today s Networks?! Data plane abstraction by network layer models (physical, IP, TCP, ) Good abstraction by layered model Individual layer can evolve independently as long as the interface as not changed (e.g. move from 10GE to 100GE on physical layer or from IPv4 to IPv6 on layer-3) Bad interfaces which violate principles of modularity! Control plane abstraction does not exist! Constantly adding complexity to get what we want No clear building blocks, i.e. with every new problem we start from the scratch by defining new protocols Variety of totally different mechanisms like distributed algorithms (e.g. routing protocols), isolation technology (e.g. ACLs, firewalls, ) and traffic engineering Manual operator configuration on individual devices 5
6 SDN Approach to the Control Plane! Remember, control plane is all about computing forwarding state including Detecting how the network looks like globally, i.e. network topology discovery Determine what has to be done to get desired functionality Distribute forwarding state! Separation of control plane and forwarding plane (not new; done before!) Create data model to describe forwarding states Use standard protocols and open interfaces with small set of primitives (forwarding instructions)! Introduce Control Plane Abstraction and Programmability Integration with routing, signaling and policy logic Open standard-based APIs to allow multivendor setup Global network view providing virtualization of network infrastructure and simplification of provisioning! Logically centralize the Control Plane 6
7 SDN Reference Architecture! SDN Controller is a policy-based abstraction between network and application and makes use of re-usable components Northbound API provides interface for SDN application Southbound API provides instructions to the network devices and collects network information (e.g. topology, statistics, etc.) 7
8 SDN Application! SDN application is responsible for the calculation of the forwarding state Might be IP prefixes for routers or NAT entries for firewall! Primary goal: Network operators define what they want to do with the network, not how! Implementation details are hidden inside the SDN controller Distributed routing algorithms running locally on a box in the past evolve into graph algorithms running centrally within the control application! Drawback: Application must respond to topology changes Use network virtualization technologies 8
9 Implementing the Southbound API with OpenFlow! In traditional networking devices, the control processes and forwarding functionality resides on the network device! In OpenFlow architecture, an interface is created on the network device through which an external control process is able to program the packet matching and forwarding operations of the network device A standardized API and communication method between external OpenFlow controller and OpenFlow process on the networking device Flow tables held by the networking device which are populated by the external controller 9
10 Implementing the Southbound API with OpenFlow (2)! OpenFlow tables contain flow entries consisting of Match fields to classify the packet (e.g. ingress port, packet header, or metadata) Priorities defining the precedence of matching Counters for statistics reporting capabilities Actions defining how a matched packet should be handled (including drop/forward, enqueue packet, push/ pop header, etc.) Timeouts Cookies which might by used by the controller 10
11 Implementing the Southbound API with Path Computation Elements (PCE)! Approach to solving the interdomain problem 11 In this context domain also might be hierarchy level (e.g. GMPLS domain)! Formalism of functional architecture An entity (component, application, or network node) that is capable of computing a network path or route based on a network graph and applying computational constraints. (RFC 4655) The ability to perform path computation as a (remote) service Stateless and stateful off-line computation based on TED PCE can issue provisioning commands
12 Implementing the Southbound API with Path Computation Elements (PCE) (2)! PCE Communication Protocol (PCEP) runs between a Path Computation Element (PCE) and Path Computation Client (PCC) PCEP operates over TCP to guarantee reliable messaging and flow control without further protocol work PCC may have PCEP session with more than one PCE! Stateful PCE uses strict synchronization to extract information of active paths and their reserved resources for its computations (e.g. traffic engineering database and existing LSPs) Delegation mechanism available to change controller which is responsible Stateful PCE might also retain information regarding LSPs under construction in order to reduce churn and resource contention. Additional state allows the PCE to compute constrained paths while considering individual LSPs and their interactions 12
13 Implementing the Southbound API with BGP Link State (LS) / Traffic Engineering (TE)! How does PCE/ALTO obtain the traffic engineering database (TED)? Unspecified in the architecture Early implementations participate in IGP Updates may be too frequent Implementations must support IS-IS and OSPF! Most traffic engineered networks have a BGP-capable router BGP nodes are designed to process routing policies! BGP-LS is set of simple extensions to advertise topology info Speaker is possibly route reflector using policy to determine what to advertise and when SDN Server (e.g. PCE/ALTO) uses very lightweight BGP implementation 13
14 Implementing the Southbound API with Interface to the Routing System (I2RS)! Framework for integrating external data into routing Indirection, policy, loop-detection! Filtered events for triggers, verification, and learning about changes to router state! Data models for state Topology model, interface, measurements, etc.! Data model for routing RIB layer (unicast/multicast RIBs, MPLS LFIBs, ) Protocol layer (IS-IS, BGP, etc.)! Device-level and network-level interfaces and protocols 14
15 Implementing the Southbound API with Interface to the Routing System (I2RS) (2)! Data Encoding Language which is parsable, extensible, recursion, programmable (e.g. YANG)! Non-blocking transactions, stateless, duplex, multi-channel Data Exchange Protocol! Different types of operations Read Data from RIB (routes/next-hops, routing tables, etc) Write Data into unicast/multicast routes to RIB (No direct programming of FIB!) RIB manager MAY do next-hop resolution Notification sent by I2RS agent to controller if route changes or next-hop not resolved 15
16 SDN Northbound Interface! Northbound API allows control information of the network to be used by applications Northbound interface allows to make the difference to traditional networking Could be traditional network services, e.g. firewalls, load balancers,... Orchestration (e.g. OpenStack)! Northbound API not constrained by hardware innovation because it s independent from underlying physical infrastructure Allows more agile development! As of today, no standard northbound API available Up to now, proprietary vendor solutions 16
17 SDN Use Case for Data Center! SDN Controller provides centralized touchpoint to enable network virtualization using individual APIs to implement box-specific states 17
18 Conclusion! Abstraction is fundamental concept to solving real-world problems! SDN provides abstraction, centralization and virtualization for the control plane! References Scott Shenker: The Future of Networking and the Past of Protocols, Open Networking Summit 2012 Kireeti Kompella: SDN: OS or Compiler, SDN Summit
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:
CSCI-1680 So ware-defined Networking
CSCI-1680 So ware-defined Networking Rodrigo Fonseca Most content from lecture notes by Scott Shenker SDN For now: a new paradigm for network management SDN widely accepted as future of networking ~1000
An Architecture for Application-Based Network Operations
An Architecture for Application-Based Network Operations Daniel King Old Dog Consulting [email protected] Adrian Farrel - Old Dog Consulting [email protected] www.isocore.com/mpls2013 Control of Today
SDN IN WAN NETWORK PROGRAMMABILITY THROUGH CENTRALIZED PATH COMPUTATION. 1 st September 2014
SDN IN WAN NETWORK PROGRAMMABILITY THROUGH CENTRALIZED PATH COMPUTATION st September 04 Aaron Tong Senior Manager High IQ Networking Centre of Excellence JUNIPER S AUTOMATION HORIZON SDN IS A JOURNEY NOT
Various Alternatives to achieve SDN. Dhruv Dhody, Sr. System Architect, Huawei Technologies
Various Alternatives to achieve SDN Dhruv Dhody, Sr. System Architect, Huawei Technologies Huawei India R&D Dhruv Dhody Who? A multinational networking and telecommunications equipment and services company
Using YANG for the Dissemination of the Traffic Engineering Database within Software Defined Elastic Optical Networks
Using YANG for the Dissemination of the Traffic Engineering Database within Software Defined Elastic Optical Networks ICTON 2015 Budapest, Hungary Tuesday, 7 July, 2015 J.E. López de Vergara, Naudit High
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,
SDN AND SECURITY: Why Take Over the Hosts When You Can Take Over the Network
SDN AND SECURITY: Why Take Over the s When You Can Take Over the Network SESSION ID: TECH0R03 Robert M. Hinden Check Point Fellow Check Point Software What are the SDN Security Challenges? Vulnerability
A Presentation at DGI 2014 Government Cloud Computing and Data Center Conference & Expo, Washington, DC. September 18, 2014.
A Presentation at DGI 2014 Government Cloud Computing and Data Center Conference & Expo, Washington, DC September 18, 2014 Charles Sun www.linkedin.com/in/charlessun @CharlesSun_ 1 What is SDN? Benefits
SDN. Roadmap to Operating SDN-based Networks Workshop July 15, 2015. Kireeti Kompella CTO, JDI. Copyright 2014 Juniper Networks, Inc.
SDN Roadmap to Operating SDN-based Networks Workshop July 15, 2015 Kireeti Kompella CTO, JDI 1 Agenda Three aspects of SDN SDN @ Juniper OpenContrail NorthStar 2 Three aspects of SDN Programmability Automation
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.
Introduction to Software Defined Networking (SDN) and how it will change the inside of your DataCentre
Introduction to Software Defined Networking (SDN) and how it will change the inside of your DataCentre Wilfried van Haeren CTO Edgeworx Solutions Inc. www.edgeworx.solutions Topics Intro Edgeworx Past-Present-Future
HP OpenFlow and SDN Technical Overview
HP OpenFlow and SDN Technical Overview Technical Solution Guide Version: 1 September 2013 Table of Contents Introduction... 2 SDN in a Nutshell... 2 Why SDN?... 2 HP s Vision... 5 Operational Planes...
An Introduction to Software-Defined Networking (SDN) Zhang Fu
An Introduction to Software-Defined Networking (SDN) Zhang Fu Roadmap Reviewing traditional networking Examples for motivating SDN Enabling networking as developing softwares SDN architecture SDN components
SIMPLE NETWORKING QUESTIONS?
DECODING SDN SIMPLE NETWORKING QUESTIONS? Can A talk to B? If so which what limitations? Is VLAN Y isolated from VLAN Z? Do I have loops on the topology? SO SDN is a recognition by the Networking industry
Transforming Evolved Programmable Networks
Transforming Evolved Programmable Networks CKN: New Capabilities in the Evolved Programmable Network (EPN) Greg Nehib, Senior Marketing Manager, Cisco Systems Bertrand Duvivier, Principal Engineer, Cisco
SDN CONTROLLER. Emil Gągała. PLNOG, 30.09.2013, Kraków
SDN CONTROLLER IN VIRTUAL DATA CENTER Emil Gągała PLNOG, 30.09.2013, Kraków INSTEAD OF AGENDA 2 Copyright 2013 Juniper Networks, Inc. www.juniper.net ACKLOWLEDGEMENTS Many thanks to Bruno Rijsman for his
Introduction to Software Defined Networking
Introduction to Software Defined Networking Introduction to SDN Ahmed Maged MENOG 15 Dubai April 2015 @amaged [email protected] Agenda What is SDN and What it is not SDN Trends Getting Ready for SDN 2
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
Introducing Basic MPLS Concepts
Module 1-1 Introducing Basic MPLS Concepts 2004 Cisco Systems, Inc. All rights reserved. 1-1 Drawbacks of Traditional IP Routing Routing protocols are used to distribute Layer 3 routing information. Forwarding
Project 3 and Software-Defined Networking (SDN)
Project 3 and Software-Defined Networking (SDN) EE122 Fall 2011 Scott Shenker http://inst.eecs.berkeley.edu/~ee122/ Materials with thanks to Jennifer Rexford, Ion Stoica, Vern Paxson and other colleagues
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,
Extending the Internet of Things to IPv6 with Software Defined Networking
Extending the Internet of Things to IPv6 with Software Defined Networking Abstract [WHITE PAPER] Pedro Martinez-Julia, Antonio F. Skarmeta {pedromj,skarmeta}@um.es The flexibility and general programmability
Software Defined Networks in SP Environments
Software Defined Networks in SP Environments Architecture, Elements and Use Cases Stefano Previdi ([email protected]) Distinguished Engineer Cisco Systems Darmstadt, October 25, 2012 2010 2012 Cisco and/or
Designing Virtual Network Security Architectures Dave Shackleford
SESSION ID: CSV R03 Designing Virtual Network Security Architectures Dave Shackleford Sr. Faculty and Analyst SANS @daveshackleford Introduction Much has been said about virtual networking and softwaredefined
DEMYSTIFYING ROUTING SERVICES IN SOFTWAREDEFINED NETWORKING
DEMYSTIFYING ROUTING SERVICES IN STWAREDEFINED NETWORKING GAUTAM KHETRAPAL Engineering Project Manager, Aricent SAURABH KUMAR SHARMA Principal Systems Engineer, Technology, Aricent DEMYSTIFYING ROUTING
Testing Software Defined Network (SDN) For Data Center and Cloud VERYX TECHNOLOGIES
Testing Software Defined Network (SDN) For Data Center and Cloud VERYX TECHNOLOGIES Table of Contents Introduction... 1 SDN - An Overview... 2 SDN: Solution Layers and its Key Requirements to be validated...
Using YANG for the Dissemination of the Traffic Engineering Database within Software Defined Elastic Optical Networks
Using YANG for the Dissemination of the Traffic Engineering Database within Software Defined Elastic Networks J.E. López de Vergara Naudit High Performance Computing and Networking, V. López J.P. Fernández-Palacios
OpenFlow and Software Defined Networking presented by Greg Ferro. Software Defined Networking (SDN)
OpenFlow and Software Defined Networking presented by Greg Ferro Software Defined Networking (SDN) would like to thank Greg Ferro and Ivan Pepelnjak for giving us the opportunity to sponsor to this educational
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
Juniper Networks NorthStar Controller
Juniper Networks NorthStar Controller Functionality Test Report Introduction IP/MPLS has been the technology of choice for service providers for the better part of a decade and a half. Backbone network
Qualifying SDN/OpenFlow Enabled Networks
Qualifying SDN/OpenFlow Enabled Networks Dean Lee Senior Director, Product Management Ixia Santa Clara, CA USA April-May 2014 1 Agenda SDN/NFV a new paradigm shift and challenges Benchmarking SDN enabled
software networking Jithesh TJ, Santhosh Karipur QuEST Global
software defined networking Software Defined Networking is an emerging trend in the networking and communication industry and it promises to deliver enormous benefits, from reduced costs to more efficient
SDN: A NEW PARADIGM. Kireeti Kompella CTO, JDI
SDN: A NEW PARADIGM Kireeti Kompella CTO, JDI AGENDA What is SDN? Definition and goals of SDN Analogy with Compute Virtualization Orchestration for Agile Provisioning Unified SDN What parts of the network
The Future of Networking, and the Past of Protocols
1 The Future of Networking, and the Past of Protocols Scott Shenker with Martín Casado, Teemu Koponen, Nick McKeown (and many others.) 2 Software-Defined Networking SDN clearly has advantages over status
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
Conference. Smart Future Networks THE NEXT EVOLUTION OF THE INTERNET FROM INTERNET OF THINGS TO INTERNET OF EVERYTHING
Conference THE NEXT EVOLUTION OF THE INTERNET FROM INTERNET OF THINGS TO INTERNET OF Smart Future Networks www.internet-of-things.no EVERYTHING Patrick Waldemar Vice President Telenor Research and Future
SDN/Virtualization and Cloud Computing
SDN/Virtualization and Cloud Computing Agenda Software Define Network (SDN) Virtualization Cloud Computing Software Defined Network (SDN) What is SDN? Traditional Network and Limitations Traditional Computer
WAN Topologies MPLS. 2006, Cisco Systems, Inc. All rights reserved. Presentation_ID.scr. 2006 Cisco Systems, Inc. All rights reserved.
MPLS WAN Topologies 1 Multiprotocol Label Switching (MPLS) IETF standard, RFC3031 Basic idea was to combine IP routing protocols with a forwarding algoritm based on a header with fixed length label instead
Defining SDN. Overview of SDN Terminology & Concepts. Presented by: Shangxin Du, Cisco TAC Panelist: Pix Xu Jan 2014
Defining SDN Overview of SDN Terminology & Concepts Presented by: Shangxin Du, Cisco TAC Panelist: Pix Xu Jan 2014 2013 Cisco and/or its affiliates. All rights reserved. 2 2013 Cisco and/or its affiliates.
Business Case for Cisco SDN for the WAN
Business Case for Cisco SDN for the WAN s Executive Summary Traffic requirements are growing rapidly because of the widespread acceptance of online video services, cloud computing, and mobile broadband.
SDN Testbed Experiences: Challenges and Next Steps
SDN Testbed Experiences: Challenges and Next Steps SDN Concertation Workshop January 30 th, 2014 Daniel King [email protected] Panagiotis Georgopoulos [email protected] Nicholas Race
YI-CHIH HSU & JEI-WEI CHANG @ ESTINET TECHNOLOGIES
YI-CHIH HSU & JEI-WEI CHANG @ ESTINET TECHNOLOGIES A Professional Company in Software-Defined Networking Copyright 2000-2015, EstiNet Technologies Inc. All Rights Reserved. 1 About EstiNet A Professional
Agile VPN for Carrier/SP Network. ONOS- based SDN Controller for China Unicom MPLS L3VPN Service
Agile VPN for Carrier/SP Network ONOS- based SDN Controller for China Unicom MPLS L3VPN Service Introduction In order to meet strong service demand on their network and respond to the new competition (who
ONOS Open Network Operating System
ONOS Open Network Operating System Architecture Overview Thomas Vachuska [email protected] ONOS: SDN OS for Service Provider Networks Scalability, High Availability & Performance Northbound & Southbound Abstractions
HP OpenFlow Protocol Overview
HP OpenFlow Protocol Overview Technical Solution Guide Version: 1 September 2013 Table of Contents Introduction: Traditional Switch and Openflow... 2 Destination Address-based Switching... 2 Flow-based
TE in action. Some problems that TE tries to solve. Concept of Traffic Engineering (TE)
1/28 2/28 TE in action S-38.3192 Verkkopalvelujen tuotanto S-38.3192 Network Service Provisioning Networking laboratory 3/28 4/28 Concept of Traffic Engineering (TE) Traffic Engineering (TE) (Traffic Management)
The following normative disclaimer shall be included on the front page of a PoC report:
Annex B (normative): NFV ISG PoC #28 Report The following normative disclaimer shall be included on the front page of a PoC report: Submission of this NFV ISG PoC Report as a contribution to the NFV ISG
http://www.openflow.org/wk/index.php/openflow_tutorial
http://www.openflow.org/wk/index.php/openflow_tutorial 2 Tutorial Flow Section 5.1 of OpenFlowTutorial: http://www.openflow.org/wk/index.php/openflow_tutorial 3 Tutorial Setup sudomn--toposingle,3 --mac--switch
Carrier/WAN SDN. SDN Optimized MPLS Demo
Carrier/WAN SDN SDN Optimized MPLS Demo Problem Statement! Service Providers around the world have large investments in highly sophisticated and feature rich IP/MPLS network infrastructures for providing
Software Defined Networking
Software Defined Networking Stefano Giordano Dipartimento di Ingegneria dell Informazione Università di Pisa 3D Reference model of ISDN Hourglass reference model of a TCP/IP network Network Ossification
Simplify IT. With Cisco Application Centric Infrastructure. Roberto Barrera [email protected]. VERSION May, 2015
Simplify IT With Cisco Application Centric Infrastructure Roberto Barrera [email protected] VERSION May, 2015 Content Understanding Software Definded Network (SDN) Why SDN? What is SDN and Its Benefits?
MPLS Concepts. Overview. Objectives
MPLS Concepts Overview This module explains the features of Multi-protocol Label Switching (MPLS) compared to traditional ATM and hop-by-hop IP routing. MPLS concepts and terminology as well as MPLS label
SDN Architecture and Service Trend
2013 SDN 高 峰 論 壇 SDN Architecture and Service Trend Dr. Yu-Huang Chu Broadband Network Lab Chunghwa Telecom Co., Ltd., Taiwan 10/09/13 1 Outlines SDN & NFV introduction Network Architecture Trend SDN Services
Transport SDN Toolkit: Framework and APIs. John McDonough OIF Vice President NEC BTE 2015
Transport SDN Toolkit: Framework and APIs John McDonough OIF Vice President NEC BTE 2015 Transport SDN Toolkit Providing carriers with essential tools in the Transport SDN toolkit How to apply SDN to a
OpenDaylight Project Proposal Dynamic Flow Management
OpenDaylight Project Proposal Dynamic Flow Management Ram (Ramki) Krishnan, Varma Bhupatiraju et al. (Brocade Communications) Sriganesh Kini et al. (Ericsson) Debo~ Dutta, Yathiraj Udupi (Cisco) 1 Table
Business Case for Open Data Center Architecture in Enterprise Private Cloud
Business Case for Open Data Center Architecture in Enterprise Private Cloud Executive Summary Enterprise IT organizations that align themselves with their enterprise s overall goals help the organization
Software-Defined Network (SDN) & Network Function Virtualization (NFV) Po-Ching Lin Dept. CSIE, National Chung Cheng University
Software-Defined Network (SDN) & Network Function Virtualization (NFV) Po-Ching Lin Dept. CSIE, National Chung Cheng University Transition to NFV Cost of deploying network functions: Operating expense
Internet Firewall CSIS 4222. Packet Filtering. Internet Firewall. Examples. Spring 2011 CSIS 4222. net15 1. Routers can implement packet filtering
Internet Firewall CSIS 4222 A combination of hardware and software that isolates an organization s internal network from the Internet at large Ch 27: Internet Routing Ch 30: Packet filtering & firewalls
What is SDN? And Why Should I Care? Jim Metzler Vice President Ashton Metzler & Associates
What is SDN? And Why Should I Care? Jim Metzler Vice President Ashton Metzler & Associates 1 Goals of the Presentation 1. Define/describe SDN 2. Identify the drivers and inhibitors of SDN 3. Identify what
ONOS [Open Source SDN Network Operating System for Service Provider networks]
ONOS [Open Source SDN Network Operating System for Service Provider networks] http://onosproject.org/ Released on December 5 th, 2014 Guru Parulkar [email protected] ONOS Partnership A partnership
Software Defined Networks
Software Defined Networks Dr. Uttam Ghosh, CDAC, Bangalore [email protected] Outline Networking Planes OpenFlow Software Defined Network (SDN) SDN Origin What is SDN? SDN Architecture SDN Operation Why We
Making the Case for Open Source Controllers
White Paper Making the Case for Open Source Controllers Prepared by Roz Roseboro Senior Analyst, Heavy Reading www.heavyreading.com on behalf of www.brocade.com September 2014 Introduction Telcos face
100-101: Interconnecting Cisco Networking Devices Part 1 v2.0 (ICND1)
100-101: Interconnecting Cisco Networking Devices Part 1 v2.0 (ICND1) Course Overview This course provides students with the knowledge and skills to implement and support a small switched and routed network.
Software Defined Networking A quantum leap for Devops?
Software Defined Networking A quantum leap for Devops? TNG Technology Consulting GmbH, http://www.tngtech.com/ Networking is bottleneck in today s devops Agile software development and devops is increasing
The Complete IS-IS Routing Protocol
Hannes Gredler and Walter Goralski The Complete IS-IS Routing Protocol 4y Springer Contents Foreword Credits and Thanks vii ix 1 Introduction, Motivation and Historical Background 1 1.1 Motivation 1 1.2
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]
The State of OpenFlow: Advice for Those Considering SDN. Steve Wallace Executive Director, InCNTRE SDN Lab Indiana University ssw@iu.
The State of OpenFlow: Advice for Those Considering SDN Steve Wallace Executive Director, InCNTRE SDN Lab Indiana University [email protected] 2 3 4 SDN is an architecture Separation of Control and Data Planes
Transform Your Business and Protect Your Cisco Nexus Investment While Adopting Cisco Application Centric Infrastructure
White Paper Transform Your Business and Protect Your Cisco Nexus Investment While Adopting Cisco Application Centric Infrastructure What You Will Learn The new Cisco Application Centric Infrastructure
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
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)
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
Security Challenges & Opportunities in Software Defined Networks (SDN)
Security Challenges & Opportunities in Software Defined Networks (SDN) June 30 th, 2015 SEC2 2015 Premier atelier sur la sécurité dans les Clouds Nizar KHEIR Cyber Security Researcher Orange Labs Products
Network Security: Network Flooding. Seungwon Shin GSIS, KAIST
Network Security: Network Flooding Seungwon Shin GSIS, KAIST Detecting Network Flooding Attacks SYN-cookies Proxy based CAPCHA Ingress/Egress filtering Some examples SYN-cookies Background In a TCP 3-way
Exploring OpenDaylight
Exploring OpenDaylight David Brockus [email protected] Why SDN? New architecture with separate Control and Data planes Open Programmable Networks and APIs New business models and revenue opportunities Efficiency
IxNetwork OpenFlow Solution
IxNetwork OpenFlow Solution Solution Highlights OpenFlow Controller Emulation OpenFlow Switch Emulation OpenFlow Benchmarking Test OpenFlow Switch Conformance Test Key Features Software Defined Networking
Software Defined Network (SDN) for Service Providers
Software Defined Network (SDN) for Service Providers Santanu Dasgupta Sr. Consulting Engineer Global Service Provider HQ SANOG 21 January 28th, 2013 2011 2010 Cisco and/or its affiliates. All rights Cisco
Software Defined Networking Seminar
Software Defined ing Seminar Introduction - Summer Term 2014 Net Jeremias Blendin [email protected] Prof. Dr. David Hausheer [email protected] PS Peer-to-Peer Systems Engineering Prof
Measuring IP Network Routing Convergence. A new approach to the problem
59 Measuring IP Network Routing Convergence A new approach to the problem A Blind Spot In Network Performance Monitoring Today s monitoring technologies tell us how the network performs in steady state
A Coordinated. Enterprise Networks Software Defined. and Application Fluent Programmable Networks
A Coordinated Virtual Infrastructure for SDN in Enterprise Networks Software Defined Networking (SDN), OpenFlow and Application Fluent Programmable Networks Strategic White Paper Increasing agility and
HP Networking BGP and MPLS technology training
Course overview HP Networking BGP and MPLS technology training (HL046_00429577) The HP Networking BGP and MPLS technology training provides networking professionals the knowledge necessary for designing,
Software Defined Networking (SDN) OpenFlow and OpenStack. Vivek Dasgupta Principal Software Maintenance Engineer Red Hat
Software Defined Networking (SDN) OpenFlow and OpenStack Vivek Dasgupta Principal Software Maintenance Engineer Red Hat CONTENTS Introduction SDN and components SDN Architecture, Components SDN Controller
ABNO: The IETF approach for carrier SDN
ABNO: The ITF approach for carrier SDN FIA Athens 2014 Software Defined Networking SDN Network equipment as Black boxes Open interfaces (OpenFlow) for instructing the boxes what to do OPRATING SYSTM OPRATING
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
RFC 2547bis: BGP/MPLS VPN Fundamentals
White Paper RFC 2547bis: BGP/MPLS VPN Fundamentals Chuck Semeria Marketing Engineer Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408 745 2001 or 888 JUNIPER www.juniper.net
How To Switch A Layer 1 Matrix Switch On A Network On A Cloud (Network) On A Microsoft Network (Network On A Server) On An Openflow (Network-1) On The Network (Netscout) On Your Network (
Software- Defined Networking Matrix Switching January 29, 2015 Abstract This whitepaper describes a Software- Defined Networking use case, using an OpenFlow controller and white box switches to implement
BROADCOM SDN SOLUTIONS OF-DPA (OPENFLOW DATA PLANE ABSTRACTION) SOFTWARE
BROADCOM SDN SOLUTIONS OF-DPA (OPENFLOW DATA PLANE ABSTRACTION) SOFTWARE Network Switch Business Unit Infrastructure and Networking Group 1 TOPICS SDN Principles Open Switch Options Introducing OF-DPA
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
On the effect of forwarding table size on SDN network utilization
IBM Haifa Research Lab On the effect of forwarding table size on SDN network utilization Rami Cohen IBM Haifa Research Lab Liane Lewin Eytan Yahoo Research, Haifa Seffi Naor CS Technion, Israel Danny Raz
