Enabling Innovation Inside the Network Jennifer Rexford Princeton University

Slides:



Advertisements
Similar presentations
Towards Software Defined Cellular Networks
Advertisements

SDN Applications Jennifer Rexford Princeton University.
Programming Protocol-Independent Packet Processors
CloudWatcher: Network Security Monitoring Using OpenFlow in Dynamic Cloud Networks or: How to Provide Security Monitoring as a Service in Clouds? Seungwon.
Composing Software Defined Networks
Jennifer Rexford Princeton University
Slick: A control plane for middleboxes Bilal Anwer, Theophilus Benson, Dave Levin, Nick Feamster, Jennifer Rexford Supported by DARPA through the U.S.
An Overview of Software-Defined Network Presenter: Xitao Wen.
Jennifer Rexford Princeton University Future of SDN.
Programming Abstractions for Software-Defined Networks Jennifer Rexford Princeton University.
SDN and Openflow.
Scalable Flow-Based Networking with DIFANE 1 Minlan Yu Princeton University Joint work with Mike Freedman, Jennifer Rexford and Jia Wang.
A Routing Control Platform for Managing IP Networks Jennifer Rexford Princeton University
Software-Defined Networking
An Overview of Software-Defined Network
The Future of the Internet Jennifer Rexford ’91 Computer Science Department Princeton University
Jennifer Rexford Princeton University MW 11:00am-12:20pm Data-Center Traffic Management COS 597E: Software Defined Networking.
Enabling Innovation Inside the Network Jennifer Rexford Princeton University
Enabling Innovation Inside the Network Jennifer Rexford Princeton University
A Survey on Interfaces to Network Security
Data Center Network Redesign using SDN
Cellular Core Network Architecture
Enabling Innovation Inside the Network Jennifer Rexford Princeton University
Composing Software Defined Networks Jennifer Rexford Princeton University With Joshua Reich, Chris Monsanto, Nate Foster, and.
Enabling Innovation Inside the Network Jennifer Rexford Princeton University
Serval: Software Defined Service-Centric Networking Jen Rexford Erik Nordstrom, David Shue, Prem Gopalan, Rob Kiefer, Mat Arye, Steven Ko, Mike Freedman.
Frenetic: A Programming Language for Software Defined Networks Jennifer Rexford Princeton University Joint work with Nate.
Software-Defined Networks Jennifer Rexford Princeton University.
Software Defined Networks and OpenFlow SDN CIO Summit 2010 Nick McKeown & Guru Parulkar Stanford University In collaboration with Martin Casado and Scott.
Higher-Level Abstractions for Software-Defined Networks Jennifer Rexford Princeton University.
Professor Yashar Ganjali Department of Computer Science University of Toronto Some slides courtesy.
Reasoning about Software Defined Networks Mooly Sagiv Tel Aviv University Thursday (Physics 105) Monday Schrieber.
Jennifer Rexford Fall 2014 (TTh 3:00-4:20 in CS 105) COS 561: Advanced Computer Networks TCP.
Software Defined Networking Mike Freedman COS 461: Computer Networks
Copyright 2013 Open Networking User Group. All Rights Reserved Confidential Not For Distribution Programming Abstractions for Software-Defined Networks.
Programming Abstractions for Software-Defined Networks Jennifer Rexford Princeton University
SDX: A Software-Defined Internet eXchange Jennifer Rexford Princeton University
SDN AND OPENFLOW SPECIFICATION SPEAKER: HSUAN-LING WENG DATE: 2014/11/18.
Programming Languages for Software Defined Networks Jennifer Rexford and David Walker Princeton University Joint work with the.
Evolving Toward a Self-Managing Network Jennifer Rexford Princeton University
High-Level Abstractions for Programming Software Defined Networks Joint with Nate Foster, David Walker, Arjun Guha, Rob Harrison, Chris Monsanto, Joshua.
Programming Abstractions for Software-Defined Networks Jennifer Rexford Princeton University.
CellSDN: Software-Defined Cellular Core networks Xin Jin Princeton University Joint work with Li Erran Li, Laurent Vanbever, and Jennifer Rexford.
Evolving Toward a Self-Managing Network Jennifer Rexford Princeton University
Enabling Innovation Inside the Network Jennifer Rexford Princeton University
Jennifer Rexford Princeton University MW 11:00am-12:20pm SDN Programming Languages COS 597E: Software Defined Networking.
Enabling Innovation Inside the Network Jennifer Rexford Princeton University
NEWS: Network Function Virtualization Enablement within SDN Data Plane.
SDN and Beyond Ghufran Baig Mubashir Adnan Qureshi.
Programming Assignment 2 Zilong Ye. Traditional router Control plane and data plane embed in a blackbox designed by the vendor high-seed switching fabric.
Preliminaries: EE807 Software-defined Networked Computing KyoungSoo Park Department of Electrical Engineering KAIST.
Data Center Networks and Software-defined Networking
SDN challenges Deployment challenges
Yotam Harchol The Hebrew University of Jerusalem
CIS 700-5: The Design and Implementation of Cloud Networks
Martin Casado, Nate Foster, and Arjun Guha CACM, October 2014
ETHANE: TAKING CONTROL OF THE ENTERPRISE
Software Defined Networking (SDN)
Stanford University Software Defined Networks and OpenFlow SDN CIO Summit 2010 Nick McKeown & Guru Parulkar In collaboration with Martin Casado and Scott.
Software Defined Networking
Programming the Networks of the Future
Cloud Computing and Cloud Networking
Software Defined Networking (SDN)
Software Defined Networking
Enabling Innovation Inside the Network
Programmable Networks
Chapter 5 Network Layer: The Control Plane
Enabling Innovation Inside the Network
An Introduction to Software Defined Networking and OpenFlow
Control-Data Plane Separation
Presentation transcript:

Enabling Innovation Inside the Network Jennifer Rexford Princeton University

The Internet: A Remarkable Story Tremendous success –From research experiment to global infrastructure Brilliance of under-specifying –Network: best-effort packet delivery –Hosts: arbitrary applications Enables innovation –Apps: Web, P2P, VoIP, social networks, … –Links: Ethernet, fiber optics, WiFi, cellular, … 2

Inside the ‘Net: A Different Story… Closed equipment –Software bundled with hardware –Vendor-specific interfaces Over specified –Slow protocol standardization Few people can innovate –Equipment vendors write the code –Long delays to introduce new features 3

Do We Need Innovation Inside? Many boxes (routers, switches, firewalls, …), with different interfaces.

Software Defined Networking (SDN) 5

Software Defined Networks 6 control plane: distributed algorithms data plane: packet processing

decouple control and data planes Software Defined Networks 7

decouple control and data planes by providing open standard API Software Defined Networks 8

Simple, Open Data-Plane API Prioritized list of rules –Pattern: match packet header bits –Actions: drop, forward, modify, send to controller –Priority: disambiguate overlapping patterns –Counters: #bytes and #packets 9 1.src=1.2.*.*, dest=3.4.5.*  drop 2.src = *.*.*.*, dest=3.4.*.*  forward(2) 3. src= , dest=*.*.*.*  send to controller 1.src=1.2.*.*, dest=3.4.5.*  drop 2.src = *.*.*.*, dest=3.4.*.*  forward(2) 3. src= , dest=*.*.*.*  send to controller

(Logically) Centralized Controller Controller Platform 10

Protocols  Applications Controller Platform 11 Controller Application

Seamless Mobility See host sending traffic at new location Modify rules to reroute the traffic 12

Server Load Balancing Pre-install load-balancing policy Split traffic based on source IP src=0*, dst= src=1*, dst=

Example SDN Applications Seamless mobility and migration Server load balancing Wide-area traffic engineering Network virtualization Dynamic access control Using multiple wireless access points Energy-efficient networking Adaptive traffic monitoring Denial-of-Service attack detection 14 See

Entire backbone runs on SDN A Major Trend in Networking Bought for $1.2 x 10 9 (mostly cash) 15

16

SDN Programming is Hard 17 The Good –Network-wide visibility –Direct control over the switches –Simple data-plane abstraction The Bad – Low-level programming interface – Functionality tied to hardware – Explicit resource control The Ugly –Non-modular, non-compositional –Cannot easily combine multiple apps

Network Control Loop 18 Read state OpenFlow Switches Write policy Compute Policy

Frenetic Language Abstractions 19 Query languag e OpenFlow Switches Consistent updates Composition operators

Modular Controller Applications 20 Controller Platform LB Route Monitor FW Easier to program, test, and debug A module for each task

Network Functions Virtualization (NFV) 21

OpenFlow Switches are Not Enough Only simple packet processing –Reading and writing packet headers –Multiple stages of match-actions tables 22 VersionDate# Headers OF 1.0Dec OF 1.1Feb OF 1.2Dec OF 1.3Jun OF 1.4Oct

More General Functionality Video transcoding Parental controls Intrusion detection systems Firewalls that inspect content Load balancers that act on URLs Web proxy caches Compression/decompression Encryption/decryption … 23

Traditional “Middleboxes” Dedicated appliances –Hardware and software bundled together –Placed at critical junctures (e.g., gateway) Inefficient solution –Expensive equipment –Vendor lock-in –Single point of failure –Must process all packets 24

Network Functions Virtualization Virtualized network functions (VNFs) –Separate the software from the hardware –E.g., run each VNF in a virtual machine (VM) –Leverage commodity server platforms –Mix and match VNFs from different vendors 25 FW DPI Hypervisor

Network Functions Virtualization Service placement –Decide how many VMs to run –… and where to place them 26 FW DPI Hypervisor DPI FW

Network Functions Virtualization Service chaining –Decide which traffic goes through which VNFs –… and configure the switches to steer traffic 27 FW DPI Hypervisor DPI FW

High-Level Programming 28 Controller App for each flow to port 80: apply if DPI triggers an alert: apply DPI Firewall Application: Map group of packets to sequence of elements Element: Perform a virtual network function Optimize placement, chaining, and routing Install rules Place elements

Going Forward 29

Emerging Trends SDN in more settings –Data centers and private backbones –Enterprises, exchange points, cellular core, homes Greater programmability –OpenFlow 1.x with increasing flexibility –Protocol-independence, bare-metal switching, … Distributed controllers –Replicated for reliability –Distributed for scalability –Across administrative domains 30

Emerging Trends Reliable SDN software –Verifying network invariants –Automating the testing process SDN security –Using SDN to improve network security –Improving the security of SDN Software-Defined Infrastructure –Switches, storage, compute, … 31

Separate Service from Infrastructure Industry TrendServiceInfrastructure Cloud computingApplications running in a VM Physical servers Software defined networking Network control software Switches and routers Network functions virtualization Middlebox functions Dedicated appliances 32 Managing a fungible pool of heterogeneous resources

Conclusions Software-defined everything –Enables innovation –Broadens who gets to innovate Key enablers –Simple, open interfaces to components –Reusable, high-level programming abstractions –Platforms for mixing and matching apps –General distributed-systems solutions Shaking up the marketplace –Challenging the dominant vendors –Enabling new networked services 33