SlideShare una empresa de Scribd logo
1 de 14
Descargar para leer sin conexión
Network Topology Offload with 
       Intelligent NICs
               Rolf Neugebauer
     (rolf.neugebauer@netronome.com)

          XenSummit June 2008
Motivation
• NICs with multiple queues and Virtualization support:
   • VMDq, Solarflare, Neterion, PCI­SIG SR­IOV etc
• Several physical ports (separate PCI functions)
• Larger number of virtual endpoints: 16, 32, ...
• How are these connected? Typically:
   • Ingress: perform simple classification to determine 
     queue: MAC, VLAN, IP header fields, ...
   • Egress: basic scheduling




             © 2008 Netronome Systems, Inc.               2
Current Xen support




        © 2008 Netronome Systems, Inc.   3
Current Xen support (cont.)
• Complex and difficult to comprehend 
   • e.g. TX switch in FE
• Management of endpoints? SR­IOV?
   • (see other talks in this session)

• Support for different network setup?
   • Firewall, NAT, Load Balancing, Routing
• Support for VLANs?
• Multiple physical ports?
• Different types of endpoints?
   • TAP, (iSCSI), ...
• More complex “flow processing”
   • Cut­Through, early drop, ...

• Intelligent, programmable NPU can help

             © 2008 Netronome Systems, Inc.   4
Netronome NFP3200
                                 SRAM             DDR2/3


           NFP­3200              SRAM          DDR2/3
                               Controller     Controller
  10G         10G                                               8x        PCIe
  PHY       SERDES                                             PCIe       Root
 10G          10G                                             SPI 4.2 /   Fabric
 PHY        SERDES                                             CSIX



                                                           ARM 11
                    Crypto              Microengine         CPU
                                          Clusters




• NFP­3200 evolved from Intel® IXP 28xx family
  • 40 RISC microengines for increased performance 
    and functionality
  • Cost­effective DDR2/3 memory
  • PCIe/SPI for dataplane applications
  • Line interfaces with support for 10G Ethernet


                 © 2008 Netronome Systems, Inc.                                    5
Topology offload vs acceleration
• Network Processors allows complete topology offload
   • Connect VMs using common network elements
   • Ethernet switch, firewall, load­balancer, ...
   • Network element's data­path entirely on NP
   • Controlled by user software in control VM

• Some functions can't be offloaded, but accelerated
   • “Very stateful” firewall/NAT: FTP, SIP etc
   • TCP­Splice/Flow Cut­Through for proxies
   • Approach: accelerate standard Linux functionality
      • e.g. iptables and connection tracking
      • Pass minimum number of packets to host
      • Offer API to process rest on the NP


             © 2008 Netronome Systems, Inc.              6
A simple switch example




• InterVM traffic either via device or separate network
• NB: plenty of spare ME resources for this config

             © 2008 Netronome Systems, Inc.               7
A simple IDS example




• TAP can perform filtering based on rules
• Can be extended to IPS with a TX component per VM

            © 2008 Netronome Systems, Inc.        8
NAT: Topology acceleration
• Previous examples were offload
• Full stateful NAT requires parsing of 
  flow content for some protocols:
    • FTP, SIP, etc
    • Existing implementations in Linux
    • Difficult to do on Mes

• Let Linux NAT take care of this!
   • Pass all flows up to a VM
• Once connection has been 
  established and is deemed
  “safe”
   • Instruct NAT block on device
     to “cut­through” and modify flow

• Not new :) ­> StoreLink 351x
              © 2008 Netronome Systems, Inc.   9
Topology configuration
• Topology is modeled a Nodes connected by Links
• Potentially can implement arbitrary topologies
• Topology elements need to be configured

• Designing a topology description language
• Developing a control daemon
• Daemon has model of topology
   • Topology description
• Configures elements on the device
• API and cmdline




            © 2008 Netronome Systems, Inc.         10
Conclusions
• Programmable network processors offer new 
  functionality for network IO virtualisation
   • Complete topology offload
   • Accelerate networking features

• Existing netchannel architecture does not support these 
  type of network devices
   • But very little support in Xen required

• NFP3200 has significant resources to implement 
  complex topologies.
   • Will provide some example topologies
   • SDK will be available to roll your own


             © 2008 Netronome Systems, Inc.           11
Questions?



 Also thanks to

 Espen Skoglund
Joshua LeVasseur
Sample topology description
d = NFE3200() # This is for a NFE3200    # Wire everything up
# First the functional blocks            lkpp1 = BiLink(quot;lkflr1quot;, flr1, 0, d.pep[0], 0) # Phys to FC
eth1 = Switch(quot;eth1quot;, 4)                 lkpp2 = BiLink(quot;lkflr2quot;, flr2, 0, d.pep[1], 0)
flst = FlowState(quot;flstquot;)
flr1 = FlowRouter(quot;flr1quot;, 2, flst)       lk1 = BiLink(quot;lki1quot;, eth1, 0, flr1, 1) # FC port 1 to switch
flr2 = FlowRouter(quot;flr2quot;, 2, flst)       lk2 = BiLink(quot;lki2quot;, eth1, 1, flr2, 1)
lb = LoadBalancer(quot;lb1quot;, 2)
                                         lkv1 = BiLink(quot;lkv1quot;, eth1, 2, d.vep[0], 0) # Switch ports 2 & 3 to 
# the next two line are ony needed to    VNICS
make the backends simpler                lkv2 = BiLink(quot;lkv2quot;, eth1, 3, d.vep[1], 0)
d.add_table(flst)
d.add_nodes((eth1, flr1, flr2, lb))      lkv3 = BiLink(quot;lkv3quot;, flr1, 2, d.vep[2], 0) # Tap from flr1 to a 
                                         Capture VNIC
# Instantiate some NICS and VNICS 
d.pep[0] = MAC10g(quot;mac0quot;)                lkl3 = Link(quot;lkl3quot;, flr2, 2, lb, 0)  # Tap from flr2 to load balancer
d.pep[1] = MAC10g(quot;mac1quot;)
                                         lkv4 = Link(quot;lkv4quot;, lb, 1, d.vep[3], 0)   # Load balance across 
d.vep[0] = VNIC(quot;vnic1quot;)                 two Tap VNICs
d.vep[1] = VNIC(quot;vnic2quot;)                 lkv5 = Link(quot;lkv5quot;, lb, 2, d.vep[4], 0)

d.vep[2] = CaptureVNIC(quot;tap1quot;)           # the next two line are ony needed to make the backends 
d.vep[3] = TapVNIC(quot;tap2quot;)               simpler
d.vep[4] = TapVNIC(quot;tap3quot;)               d.add_links((lkpp1, lkpp2, lk1, lk2, lkv1, lkv2, lkv3, lkl3, lkv4, 
                                         lkv5))
Topology (auto generated)
• Generated from topology description (using graphviz)

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

XS Boston 2008 Project Status
XS Boston 2008 Project StatusXS Boston 2008 Project Status
XS Boston 2008 Project Status
 
XS Oracle 2009 Intro Slides
XS Oracle 2009 Intro SlidesXS Oracle 2009 Intro Slides
XS Oracle 2009 Intro Slides
 
XS Japan 2008 Services English
XS Japan 2008 Services EnglishXS Japan 2008 Services English
XS Japan 2008 Services English
 
Ian Pratt Nsdi Keynote Apr2008
Ian Pratt Nsdi Keynote Apr2008Ian Pratt Nsdi Keynote Apr2008
Ian Pratt Nsdi Keynote Apr2008
 
XS Japan 2008 Citrix English
XS Japan 2008 Citrix EnglishXS Japan 2008 Citrix English
XS Japan 2008 Citrix English
 
VMworld 2016: Advances in Remote Display Protocol Technology with VMware Blas...
VMworld 2016: Advances in Remote Display Protocol Technology with VMware Blas...VMworld 2016: Advances in Remote Display Protocol Technology with VMware Blas...
VMworld 2016: Advances in Remote Display Protocol Technology with VMware Blas...
 
XS Oracle 2009 Error Detection
XS Oracle 2009 Error DetectionXS Oracle 2009 Error Detection
XS Oracle 2009 Error Detection
 
How to Fail at VDI
How to Fail at VDIHow to Fail at VDI
How to Fail at VDI
 
XS Boston 2008 VT-D PCI
XS Boston 2008 VT-D PCIXS Boston 2008 VT-D PCI
XS Boston 2008 VT-D PCI
 
XS Oracle 2009 PVOps
XS Oracle 2009 PVOpsXS Oracle 2009 PVOps
XS Oracle 2009 PVOps
 
XS Japan 2008 Oracle VM English
XS Japan 2008 Oracle VM EnglishXS Japan 2008 Oracle VM English
XS Japan 2008 Oracle VM English
 
Nakajima numa-final
Nakajima numa-finalNakajima numa-final
Nakajima numa-final
 
Xen Project 15 Years down the Line
Xen Project 15 Years down the LineXen Project 15 Years down the Line
Xen Project 15 Years down the Line
 
Rootlinux17: An introduction to Xen Project Virtualisation
Rootlinux17:  An introduction to Xen Project VirtualisationRootlinux17:  An introduction to Xen Project Virtualisation
Rootlinux17: An introduction to Xen Project Virtualisation
 
Ian Pratt Usenix 08 Keynote
Ian Pratt Usenix 08 KeynoteIan Pratt Usenix 08 Keynote
Ian Pratt Usenix 08 Keynote
 
XS Oracle 2009 Vm Snapshots
XS Oracle 2009 Vm SnapshotsXS Oracle 2009 Vm Snapshots
XS Oracle 2009 Vm Snapshots
 
VMworld 2016: Troubleshooting 101 for Horizon
VMworld 2016: Troubleshooting 101 for HorizonVMworld 2016: Troubleshooting 101 for Horizon
VMworld 2016: Troubleshooting 101 for Horizon
 
XPDDS19: How TrenchBoot is Enabling Measured Launch for Open-Source Platform ...
XPDDS19: How TrenchBoot is Enabling Measured Launch for Open-Source Platform ...XPDDS19: How TrenchBoot is Enabling Measured Launch for Open-Source Platform ...
XPDDS19: How TrenchBoot is Enabling Measured Launch for Open-Source Platform ...
 
Iaas on xcp
Iaas on xcpIaas on xcp
Iaas on xcp
 
XS Boston 2008 Fault Tolerance
XS Boston 2008 Fault ToleranceXS Boston 2008 Fault Tolerance
XS Boston 2008 Fault Tolerance
 

Destacado (6)

Topologi Ring
Topologi RingTopologi Ring
Topologi Ring
 
Bus topologoy
Bus topologoyBus topologoy
Bus topologoy
 
Topology ppt
Topology pptTopology ppt
Topology ppt
 
Ring topology
Ring topologyRing topology
Ring topology
 
Star topology
Star topologyStar topology
Star topology
 
Topology
TopologyTopology
Topology
 

Similar a XS Boston 2008 Network Topology

26.1.7 lab snort and firewall rules
26.1.7 lab   snort and firewall rules26.1.7 lab   snort and firewall rules
26.1.7 lab snort and firewall rules
Freddy Buenaño
 
The Next Step of OpenStack Evolution for NFV Deployments
The Next Step ofOpenStack Evolution for NFV DeploymentsThe Next Step ofOpenStack Evolution for NFV Deployments
The Next Step of OpenStack Evolution for NFV Deployments
Dirk Kutscher
 

Similar a XS Boston 2008 Network Topology (20)

QsNetIII, An HPC Interconnect For Peta Scale Systems
QsNetIII, An HPC Interconnect For Peta Scale SystemsQsNetIII, An HPC Interconnect For Peta Scale Systems
QsNetIII, An HPC Interconnect For Peta Scale Systems
 
Known basic of NFV Features
Known basic of NFV FeaturesKnown basic of NFV Features
Known basic of NFV Features
 
Approaching hyperconvergedopenstack
Approaching hyperconvergedopenstackApproaching hyperconvergedopenstack
Approaching hyperconvergedopenstack
 
100Gbps OpenStack For Providing High-Performance NFV
100Gbps OpenStack For Providing High-Performance NFV100Gbps OpenStack For Providing High-Performance NFV
100Gbps OpenStack For Providing High-Performance NFV
 
ODSA Use Case - SmartNIC
ODSA Use Case - SmartNICODSA Use Case - SmartNIC
ODSA Use Case - SmartNIC
 
Host Data Plane Acceleration: SmartNIC Deployment Models
Host Data Plane Acceleration: SmartNIC Deployment ModelsHost Data Plane Acceleration: SmartNIC Deployment Models
Host Data Plane Acceleration: SmartNIC Deployment Models
 
QsNetIII Adaptively Routed Network For HPC
QsNetIII Adaptively Routed Network For HPCQsNetIII Adaptively Routed Network For HPC
QsNetIII Adaptively Routed Network For HPC
 
PLNOG16: Obsługa 100M pps na platformie PC , Przemysław Frasunek, Paweł Mała...
PLNOG16: Obsługa 100M pps na platformie PC, Przemysław Frasunek, Paweł Mała...PLNOG16: Obsługa 100M pps na platformie PC, Przemysław Frasunek, Paweł Mała...
PLNOG16: Obsługa 100M pps na platformie PC , Przemysław Frasunek, Paweł Mała...
 
Netsft2017 day in_life_of_nfv
Netsft2017 day in_life_of_nfvNetsft2017 day in_life_of_nfv
Netsft2017 day in_life_of_nfv
 
Virtualization & Network Connectivity
Virtualization & Network Connectivity Virtualization & Network Connectivity
Virtualization & Network Connectivity
 
26.1.7 lab snort and firewall rules
26.1.7 lab   snort and firewall rules26.1.7 lab   snort and firewall rules
26.1.7 lab snort and firewall rules
 
100 M pps on PC.
100 M pps on PC.100 M pps on PC.
100 M pps on PC.
 
如何用k8s打造國產5G NFV平臺? 剖析經濟部5G核網技術的關鍵
如何用k8s打造國產5G NFV平臺?剖析經濟部5G核網技術的關鍵如何用k8s打造國產5G NFV平臺?剖析經濟部5G核網技術的關鍵
如何用k8s打造國產5G NFV平臺? 剖析經濟部5G核網技術的關鍵
 
Network Design patters with Docker
Network Design patters with DockerNetwork Design patters with Docker
Network Design patters with Docker
 
Adding IEEE 802.15.4 and 6LoWPAN to an Embedded Linux Device
Adding IEEE 802.15.4 and 6LoWPAN to an Embedded Linux DeviceAdding IEEE 802.15.4 and 6LoWPAN to an Embedded Linux Device
Adding IEEE 802.15.4 and 6LoWPAN to an Embedded Linux Device
 
Kathará - NOMS 2018
Kathará - NOMS 2018Kathará - NOMS 2018
Kathará - NOMS 2018
 
Dataplane networking acceleration with OpenDataplane / Максим Уваров (Linaro)
Dataplane networking acceleration with OpenDataplane / Максим Уваров (Linaro)Dataplane networking acceleration with OpenDataplane / Максим Уваров (Linaro)
Dataplane networking acceleration with OpenDataplane / Максим Уваров (Linaro)
 
OpenStack and OpenFlow Demos
OpenStack and OpenFlow DemosOpenStack and OpenFlow Demos
OpenStack and OpenFlow Demos
 
CAPI and OpenCAPI Hardware acceleration enablement
CAPI and OpenCAPI Hardware acceleration enablementCAPI and OpenCAPI Hardware acceleration enablement
CAPI and OpenCAPI Hardware acceleration enablement
 
The Next Step of OpenStack Evolution for NFV Deployments
The Next Step ofOpenStack Evolution for NFV DeploymentsThe Next Step ofOpenStack Evolution for NFV Deployments
The Next Step of OpenStack Evolution for NFV Deployments
 

Más de The Linux Foundation

Más de The Linux Foundation (20)

ELC2019: Static Partitioning Made Simple
ELC2019: Static Partitioning Made SimpleELC2019: Static Partitioning Made Simple
ELC2019: Static Partitioning Made Simple
 
XPDDS19 Keynote: Xen in Automotive - Artem Mygaiev, Director, Technology Solu...
XPDDS19 Keynote: Xen in Automotive - Artem Mygaiev, Director, Technology Solu...XPDDS19 Keynote: Xen in Automotive - Artem Mygaiev, Director, Technology Solu...
XPDDS19 Keynote: Xen in Automotive - Artem Mygaiev, Director, Technology Solu...
 
XPDDS19 Keynote: Xen Project Weather Report 2019 - Lars Kurth, Director of Op...
XPDDS19 Keynote: Xen Project Weather Report 2019 - Lars Kurth, Director of Op...XPDDS19 Keynote: Xen Project Weather Report 2019 - Lars Kurth, Director of Op...
XPDDS19 Keynote: Xen Project Weather Report 2019 - Lars Kurth, Director of Op...
 
XPDDS19 Keynote: Unikraft Weather Report
XPDDS19 Keynote:  Unikraft Weather ReportXPDDS19 Keynote:  Unikraft Weather Report
XPDDS19 Keynote: Unikraft Weather Report
 
XPDDS19 Keynote: Secret-free Hypervisor: Now and Future - Wei Liu, Software E...
XPDDS19 Keynote: Secret-free Hypervisor: Now and Future - Wei Liu, Software E...XPDDS19 Keynote: Secret-free Hypervisor: Now and Future - Wei Liu, Software E...
XPDDS19 Keynote: Secret-free Hypervisor: Now and Future - Wei Liu, Software E...
 
XPDDS19 Keynote: Xen Dom0-less - Stefano Stabellini, Principal Engineer, Xilinx
XPDDS19 Keynote: Xen Dom0-less - Stefano Stabellini, Principal Engineer, XilinxXPDDS19 Keynote: Xen Dom0-less - Stefano Stabellini, Principal Engineer, Xilinx
XPDDS19 Keynote: Xen Dom0-less - Stefano Stabellini, Principal Engineer, Xilinx
 
XPDDS19 Keynote: Patch Review for Non-maintainers - George Dunlap, Citrix Sys...
XPDDS19 Keynote: Patch Review for Non-maintainers - George Dunlap, Citrix Sys...XPDDS19 Keynote: Patch Review for Non-maintainers - George Dunlap, Citrix Sys...
XPDDS19 Keynote: Patch Review for Non-maintainers - George Dunlap, Citrix Sys...
 
XPDDS19: Memories of a VM Funk - Mihai Donțu, Bitdefender
XPDDS19: Memories of a VM Funk - Mihai Donțu, BitdefenderXPDDS19: Memories of a VM Funk - Mihai Donțu, Bitdefender
XPDDS19: Memories of a VM Funk - Mihai Donțu, Bitdefender
 
OSSJP/ALS19: The Road to Safety Certification: Overcoming Community Challeng...
OSSJP/ALS19:  The Road to Safety Certification: Overcoming Community Challeng...OSSJP/ALS19:  The Road to Safety Certification: Overcoming Community Challeng...
OSSJP/ALS19: The Road to Safety Certification: Overcoming Community Challeng...
 
OSSJP/ALS19: The Road to Safety Certification: How the Xen Project is Making...
 OSSJP/ALS19: The Road to Safety Certification: How the Xen Project is Making... OSSJP/ALS19: The Road to Safety Certification: How the Xen Project is Making...
OSSJP/ALS19: The Road to Safety Certification: How the Xen Project is Making...
 
XPDDS19: Speculative Sidechannels and Mitigations - Andrew Cooper, Citrix
XPDDS19: Speculative Sidechannels and Mitigations - Andrew Cooper, CitrixXPDDS19: Speculative Sidechannels and Mitigations - Andrew Cooper, Citrix
XPDDS19: Speculative Sidechannels and Mitigations - Andrew Cooper, Citrix
 
XPDDS19: Keeping Coherency on Arm: Reborn - Julien Grall, Arm ltd
XPDDS19: Keeping Coherency on Arm: Reborn - Julien Grall, Arm ltdXPDDS19: Keeping Coherency on Arm: Reborn - Julien Grall, Arm ltd
XPDDS19: Keeping Coherency on Arm: Reborn - Julien Grall, Arm ltd
 
XPDDS19: QEMU PV Backend 'qdevification'... What Does it Mean? - Paul Durrant...
XPDDS19: QEMU PV Backend 'qdevification'... What Does it Mean? - Paul Durrant...XPDDS19: QEMU PV Backend 'qdevification'... What Does it Mean? - Paul Durrant...
XPDDS19: QEMU PV Backend 'qdevification'... What Does it Mean? - Paul Durrant...
 
XPDDS19: Status of PCI Emulation in Xen - Roger Pau Monné, Citrix Systems R&D
XPDDS19: Status of PCI Emulation in Xen - Roger Pau Monné, Citrix Systems R&DXPDDS19: Status of PCI Emulation in Xen - Roger Pau Monné, Citrix Systems R&D
XPDDS19: Status of PCI Emulation in Xen - Roger Pau Monné, Citrix Systems R&D
 
XPDDS19: [ARM] OP-TEE Mediator in Xen - Volodymyr Babchuk, EPAM Systems
XPDDS19: [ARM] OP-TEE Mediator in Xen - Volodymyr Babchuk, EPAM SystemsXPDDS19: [ARM] OP-TEE Mediator in Xen - Volodymyr Babchuk, EPAM Systems
XPDDS19: [ARM] OP-TEE Mediator in Xen - Volodymyr Babchuk, EPAM Systems
 
XPDDS19: Bringing Xen to the Masses: The Story of Building a Community-driven...
XPDDS19: Bringing Xen to the Masses: The Story of Building a Community-driven...XPDDS19: Bringing Xen to the Masses: The Story of Building a Community-driven...
XPDDS19: Bringing Xen to the Masses: The Story of Building a Community-driven...
 
XPDDS19: Will Robots Automate Your Job Away? Streamlining Xen Project Contrib...
XPDDS19: Will Robots Automate Your Job Away? Streamlining Xen Project Contrib...XPDDS19: Will Robots Automate Your Job Away? Streamlining Xen Project Contrib...
XPDDS19: Will Robots Automate Your Job Away? Streamlining Xen Project Contrib...
 
XPDDS19: Client Virtualization Toolstack in Go - Nick Rosbrook & Brendan Kerr...
XPDDS19: Client Virtualization Toolstack in Go - Nick Rosbrook & Brendan Kerr...XPDDS19: Client Virtualization Toolstack in Go - Nick Rosbrook & Brendan Kerr...
XPDDS19: Client Virtualization Toolstack in Go - Nick Rosbrook & Brendan Kerr...
 
XPDDS19: Core Scheduling in Xen - Jürgen Groß, SUSE
XPDDS19: Core Scheduling in Xen - Jürgen Groß, SUSEXPDDS19: Core Scheduling in Xen - Jürgen Groß, SUSE
XPDDS19: Core Scheduling in Xen - Jürgen Groß, SUSE
 
XPDDS19: Implementing AMD MxGPU - Jonathan Farrell, Assured Information Security
XPDDS19: Implementing AMD MxGPU - Jonathan Farrell, Assured Information SecurityXPDDS19: Implementing AMD MxGPU - Jonathan Farrell, Assured Information Security
XPDDS19: Implementing AMD MxGPU - Jonathan Farrell, Assured Information Security
 

Último

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Último (20)

Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 

XS Boston 2008 Network Topology

  • 1. Network Topology Offload with  Intelligent NICs Rolf Neugebauer (rolf.neugebauer@netronome.com) XenSummit June 2008
  • 2. Motivation • NICs with multiple queues and Virtualization support: • VMDq, Solarflare, Neterion, PCI­SIG SR­IOV etc • Several physical ports (separate PCI functions) • Larger number of virtual endpoints: 16, 32, ... • How are these connected? Typically: • Ingress: perform simple classification to determine  queue: MAC, VLAN, IP header fields, ... • Egress: basic scheduling © 2008 Netronome Systems, Inc. 2
  • 3. Current Xen support © 2008 Netronome Systems, Inc. 3
  • 4. Current Xen support (cont.) • Complex and difficult to comprehend  • e.g. TX switch in FE • Management of endpoints? SR­IOV? • (see other talks in this session) • Support for different network setup? • Firewall, NAT, Load Balancing, Routing • Support for VLANs? • Multiple physical ports? • Different types of endpoints? • TAP, (iSCSI), ... • More complex “flow processing” • Cut­Through, early drop, ... • Intelligent, programmable NPU can help © 2008 Netronome Systems, Inc. 4
  • 5. Netronome NFP3200 SRAM DDR2/3 NFP­3200 SRAM DDR2/3 Controller Controller 10G 10G 8x PCIe PHY SERDES PCIe Root 10G 10G SPI 4.2 / Fabric PHY SERDES CSIX ARM 11 Crypto Microengine CPU Clusters • NFP­3200 evolved from Intel® IXP 28xx family • 40 RISC microengines for increased performance  and functionality • Cost­effective DDR2/3 memory • PCIe/SPI for dataplane applications • Line interfaces with support for 10G Ethernet © 2008 Netronome Systems, Inc. 5
  • 6. Topology offload vs acceleration • Network Processors allows complete topology offload • Connect VMs using common network elements • Ethernet switch, firewall, load­balancer, ... • Network element's data­path entirely on NP • Controlled by user software in control VM • Some functions can't be offloaded, but accelerated • “Very stateful” firewall/NAT: FTP, SIP etc • TCP­Splice/Flow Cut­Through for proxies • Approach: accelerate standard Linux functionality • e.g. iptables and connection tracking • Pass minimum number of packets to host • Offer API to process rest on the NP © 2008 Netronome Systems, Inc. 6
  • 9. NAT: Topology acceleration • Previous examples were offload • Full stateful NAT requires parsing of  flow content for some protocols: • FTP, SIP, etc • Existing implementations in Linux • Difficult to do on Mes • Let Linux NAT take care of this! • Pass all flows up to a VM • Once connection has been  established and is deemed “safe” • Instruct NAT block on device to “cut­through” and modify flow • Not new :) ­> StoreLink 351x © 2008 Netronome Systems, Inc. 9
  • 10. Topology configuration • Topology is modeled a Nodes connected by Links • Potentially can implement arbitrary topologies • Topology elements need to be configured • Designing a topology description language • Developing a control daemon • Daemon has model of topology • Topology description • Configures elements on the device • API and cmdline © 2008 Netronome Systems, Inc. 10
  • 11. Conclusions • Programmable network processors offer new  functionality for network IO virtualisation • Complete topology offload • Accelerate networking features • Existing netchannel architecture does not support these  type of network devices • But very little support in Xen required • NFP3200 has significant resources to implement  complex topologies. • Will provide some example topologies • SDK will be available to roll your own © 2008 Netronome Systems, Inc. 11
  • 13. Sample topology description d = NFE3200() # This is for a NFE3200 # Wire everything up # First the functional blocks lkpp1 = BiLink(quot;lkflr1quot;, flr1, 0, d.pep[0], 0) # Phys to FC eth1 = Switch(quot;eth1quot;, 4) lkpp2 = BiLink(quot;lkflr2quot;, flr2, 0, d.pep[1], 0) flst = FlowState(quot;flstquot;) flr1 = FlowRouter(quot;flr1quot;, 2, flst) lk1 = BiLink(quot;lki1quot;, eth1, 0, flr1, 1) # FC port 1 to switch flr2 = FlowRouter(quot;flr2quot;, 2, flst) lk2 = BiLink(quot;lki2quot;, eth1, 1, flr2, 1) lb = LoadBalancer(quot;lb1quot;, 2) lkv1 = BiLink(quot;lkv1quot;, eth1, 2, d.vep[0], 0) # Switch ports 2 & 3 to  # the next two line are ony needed to  VNICS make the backends simpler lkv2 = BiLink(quot;lkv2quot;, eth1, 3, d.vep[1], 0) d.add_table(flst) d.add_nodes((eth1, flr1, flr2, lb)) lkv3 = BiLink(quot;lkv3quot;, flr1, 2, d.vep[2], 0) # Tap from flr1 to a  Capture VNIC # Instantiate some NICS and VNICS  d.pep[0] = MAC10g(quot;mac0quot;)  lkl3 = Link(quot;lkl3quot;, flr2, 2, lb, 0)  # Tap from flr2 to load balancer d.pep[1] = MAC10g(quot;mac1quot;) lkv4 = Link(quot;lkv4quot;, lb, 1, d.vep[3], 0)   # Load balance across  d.vep[0] = VNIC(quot;vnic1quot;)  two Tap VNICs d.vep[1] = VNIC(quot;vnic2quot;) lkv5 = Link(quot;lkv5quot;, lb, 2, d.vep[4], 0) d.vep[2] = CaptureVNIC(quot;tap1quot;) # the next two line are ony needed to make the backends  d.vep[3] = TapVNIC(quot;tap2quot;) simpler d.vep[4] = TapVNIC(quot;tap3quot;) d.add_links((lkpp1, lkpp2, lk1, lk2, lkv1, lkv2, lkv3, lkl3, lkv4,  lkv5))