Interactions Between TCP and Ethernet Flow Control Over Netgear

Total Page:16

File Type:pdf, Size:1020Kb

Interactions Between TCP and Ethernet Flow Control Over Netgear Interactions between TCP and Ethernet flow control over Netgear XAVB2001 HomePlug AV links Radika Veera Valli, Grenville Armitage, Jason But, Thuy Nguyen Centre for Advanced Internet Architectures, Technical Report 130121A Swinburne University of Technology Melbourne, Australia [email protected], [email protected], [email protected], [email protected] Abstract—HomePlug AV links are usually slower than buffers along network paths. A side-effect of such loss- the surrounding wired LAN links, creating a bottleneck based CC behaviour is that all traffic sharing the bottle- where traffic may be buffered and delayed. To investigate neck will experience additional latency due to increased the interactions between TCP congestion control and average queueing delays [5]. This is particularly prob- Ethernet flow control we trialled four TCP variants over a lematic for real-time application flows (such as VoIP and HomePlug AV link using two Netgear XAVB2001 devices. We observed that the XAVB2001’s use of Ethernet flow online games) given the growth of arguably-gratuitous control effectively concatenates the buffers in both the buffering (“buffer bloat”) in network devices, interface XAVB2001 and the directly attached sending host. This led cards and network software stacks [6]. to multi-second RTTs when using NewReno and CUBIC In this report we borrow from, and extend, previous (loss-based) TCPs, which is significantly troublesome for work by one of the current authors [7]. Our new work multimedia traffic on home LANs. In contrast, Vegas explores in greater detail the latency and flow control and CDG (delay-based) TCPs kept buffer utilisation low, issues that emerge when end-to-end TCP is allowed to and induced five to ten milliseconds RTT. While keeping make use of all available buffering along the path. Our RTT low, CDG achieved similar goodput to NewReno and bottleneck HomePlug AV link consists of two Netgear CUBIC. Vegas achieved roughly one third the goodput of the other three TCPs. XAVB2001 (Powerline AV 200) devices with 100Mbps LAN ports. We create long-lived data flows between I. INTRODUCTION FreeBSD hosts using two loss-based CC algorithms HomePlug AV is a consumer-oriented technology for (NewReno and CUBIC) and two delay-based CC algo- creating bridged Ethernet-like services across electrical rithms (CDG [8] version 0.1 and Vegas [9]). mains-power lines already present in most homes [1]. We identify two key characteristics of the Netgear HomePlug AV devices are often marketed using the term XAVB2001 devices: “Powerline AV 200” and have 100Mbps wired LAN • They can buffer roughly 2720 Ethernet frames ports. Achievable Ethernet-layer bitrates depend heavily • They use Ethernet flow control to push back on the on actual traffic patterns and number of HomePlug AV sending NIC when their own buffer is full devices active at a given time. With previously observed Ethernet flow control effectively concatenates the send- ‘best case’ rates in the 40 to 70Mbps range [2], Home- ing host’s NIC buffers and the XAVB2001’s buffers Plug AV links tend to be a bottleneck between 100Mbps when the HomePlug AV link becomes overloaded. Con- wired LANs. sequently we observed RTTs (round trip times) in ex- Bottlenecks usually implement internal buffering to cess of two seconds when NewReno and CUBIC were minimise packet losses during transient overloads. Un- allowed to ‘fill the pipe’. Under similar conditions CDG fortunately, TCP traffic and interactive (e.g. multimedia) and Vegas were observed to induce RTTs between five traffic generally do not interact well when sharing bot- and ten milliseconds. While keeping RTT low, CDG tleneck buffers. achieved a substantial fraction of NewReno and CUBIC Common TCP congestion control (CC) algorithms throughput and Vegas achieved roughly one third the (such as NewReno [3] and CUBIC [4]) tend to cause throughput of the other three TCPs. cyclical filling (until packet loss occurs) and drain- In environments where real-time/interactive multime- ing (while the sender temporarily slows) of bottleneck dia applications share a HomePlug AV link, CDG would CAIA Technical Report 130121A January 2013 page 1 of 13 appear a good choice of TCP algorithm, avoiding exces- cases, packets need to be temporarily queued inside the sive RTTs that will be caused by NewReno and CUBIC. node (in a buffer) to avoid losses during bursts of traffic. The rest of this report is organised as follows. Simpli- While the queue (buffer) is close to empty, packets fied background on HomePlug AV, Ethernet flow control take minimal time transiting through the node. However, and TCP is provided in Section II and our experimental during periods where the queue is significantly full, all methodology is outlined in Section III. Section IV ex- packets transiting the node experience additional queuing plores the potential performance of an XAVB2001 link, delays as they wait for packets ahead of them to depart. and the XAVB2001’s internal buffer size is estimated In the extreme, the queue fills up and new packets are in Section V. The imapct of Ethernet Flow control on dropped (lost). FreeBSD’s TCP behaviour is discussed in Section VI. Buffer size is a key consideration. Small buffers may Our measurements of TCP performance and induced over-flow easily and lose packets frequently, but impose RTTs are presented in Section VII. Sections VIII and IX a low bound on peak queuing delays. Large buffers will describe future work and conclusions respectively. absorb more congestion before losing packets, but all traffic sharing the queue will experience high queueing II. BACKGROUND INFORMATION delays when any one or more flows congest the bot- A. HomePlug AV Technology tleneck node. High queuing delays contribute to higher The HomePlug Powerline Alliance developed the end to end RTTs, which negatively impacts on interactive HomePlug AV (HPAV) technology to communicate over applications (such as Voice over IP and online games) the powerline infrastructure. Between a pair of adapters and the dynamic responsiveness of protocols that rely on HomePlug AV technology provides a peak unidirectional timely feedback (such as TCP itself). raw physical (PHY) layer rate of 200 Mbps and a peak C. Ethernet flow control information rate of 150 Mbps [1]. These are often mar- keted using the term “Powerline AV 200” to differentiate When Ethernet traffic arrives on the Netgear them from both the original 85Mbps HomePlug 1.0 XAVB2001’s 100Mbps LAN port faster than it can be specification and newer 500Mbps HomePlug AV devices forwarded across the HomePlug AV link, the XAVB2001 (which use proprietary extensions for significantly faster uses a combination of internal buffering and Ethernet physical layer rates [10], [11]). flow control [14] to manage the overload. Ethernet flow HomePlug AV uses orthogonal frequency-division control works as follows: multiplexing (OFDM) to encode data on carrier fre- Consider an host PC’s NIC (network interface card) quencies. Levels of electrical noise on the line influence Nhost directly connected to port Pswitch of a congested achievable PHY rates, and devices may synchronise at Ethernet switch. Ethernet flow control allows Pswitch to different physical rates in each direction [12]. Adapters send PAUSE frames back to Nhost requesting that the use “variable bit loading”, adapting the encoding rate NIC temporarily pause transmission of Ethernet frames (number of bits per carrier signal) at regular intervals towards Pswitch for a specific period of time. Nhost to achieve the highest possible throughput given channel responds to these PAUSE frames by pausing transmission conditions at the time [13]. for the time period requested by Pswitch. The over- HomePlug AV links are half-duplex and contention whelmed switch never has to lose any Ethernet frames. based (somewhat like WiFi), with additional overheads In practical terms Nhost honours these PAUSE frames introduced by error detection, error correction, carrier by briefly buffering outbound Ethernet frames which sensing, channel access mechanisms and so forth. the host’s own network stack is still passing down for The Ethernet bridging rate and the IP layer rate over transmission. The PAUSE frames effectively pushes the the powerline link is lower than the PHY rate due to bottleneck back into the NIC, briefly co-opting the NIC’s encapsulation overheads and the MAC protocols used to own buffers as an extension of whatever buffers exist resolve contention between devices trying to transmit at inside Pswitch. From an end to end perspective, the the same time. bottleneck appears to have a buffer roughly the sum of the buffers in both Nhost and Pswitch. B. The role and impact of buffering The network stacks of different operating systems will A node in a network path becomes a bottleneck have their own ways of reacting if Nhost’s own buffer is (congestion point) when the packet arrival (ingress) rate exhausted while honouring a PAUSE frame from Pswitch. at the node exceeds the departure (egress) rate. In such CAIA Technical Report 130121A January 2013 page 2 of 13 D. TCP Congestion Control Algorithms: supports NewReno, CUBIC, Vegas and CDG version 0.1 1 Following on from [7] we chose to utilise two loss- algorithms . based and two delay-based TCP CC variants – New Room-1 Room-2 Reno, CUBIC, CDG (CAIA Delay Gradient) and Ve- FreeBSD-8.2 RELEASE FreeBSD 9.0 STABLE r229848M (64 Bit) gas. Here we summarise the key TCP mechanisms for (32 Bit) maximising throughout while minimising congestion. IPERF UDP Transfer Every TCP sender maintains a congestion window (cwnd) representing the sender’s current best estimate 1 MAINS 2 of the number of unacknowledged bytes that the network can handle without causing further congestion. Every TCP receiver advertises a receiver window (rwnd) rep- resenting the amount of data the receiver can handle at any given point in time. The sender should allow more 100baseTX LAN Port 100baseTX LAN Port than either cwnd or rwnd packets to be transmitted (and unacknowledged) at any given point in time, to avoid Figure 1.
Recommended publications
  • Ciena 5305 Service Aggregation Switch Datasheet
    5305 SERVICE AGGREGATION SWITCH Features and Benefits The 5305 Ethernet/MPLS service aggregation > Features advanced Ethernet and MPLS to support demanding business, mobile switch is purpose-built for Carrier Ethernet backhaul, transport, and residential applications including L2VPN service to deliver cost-effective capacity, scalability, delivery and aggregation, 3G/4G wireless backhaul, FTTx and IP DSLAM and resiliency. With this switch, service Aggregation and L2 backhaul of L3VPNs > Delivers optimal density and service providers can keep pace with the constantly flexibility with a compact modular chassis, supporting incremental increasing demand for bandwidth and next- expansion of service and bandwidth capacity with linear CAPEX outlay generation services that support business, > Supports tens of thousands of services mobile backhaul, transport, and residential on a single system with robust scalability of up to 30,000+ VLANs and applications in metro networks. two million MAC addresses per chassis > Delivers high reliability, five-9s The 5305 is a modular, chassis-based system optimized for metro-edge deployments availability, and 50 ms protection in a wide variety of network topologies, including fiber and microwave rings, point-to- switching resiliency using state-of- the-art hardware and software design point fiber, microwave mesh, and fiber or copper to the subscriber. The switch coupled with advanced control plane supports high-density Gigabit Ethernet (GbE) connectivity to the subscriber edge and and Ethernet OAM capabilities
    [Show full text]
  • Data Center Ethernet 2
    DataData CenterCenter EthernetEthernet Raj Jain Washington University in Saint Louis Saint Louis, MO 63130 [email protected] These slides and audio/video recordings of this class lecture are at: http://www.cse.wustl.edu/~jain/cse570-15/ Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-15/ ©2015 Raj Jain 4-1 OverviewOverview 1. Residential vs. Data Center Ethernet 2. Review of Ethernet Addresses, devices, speeds, algorithms 3. Enhancements to Spanning Tree Protocol 4. Virtual LANs 5. Data Center Bridging Extensions Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-15/ ©2015 Raj Jain 4-2 Quiz:Quiz: TrueTrue oror False?False? Which of the following statements are generally true? T F p p Ethernet is a local area network (Local < 2km) p p Token ring, Token Bus, and CSMA/CD are the three most common LAN access methods. p p Ethernet uses CSMA/CD. p p Ethernet bridges use spanning tree for packet forwarding. p p Ethernet frames are 1518 bytes. p p Ethernet does not provide any delay guarantees. p p Ethernet has no congestion control. p p Ethernet has strict priorities. Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-15/ ©2015 Raj Jain 4-3 ResidentialResidential vs.vs. DataData CenterCenter EthernetEthernet Residential Data Center Distance: up to 200m r No limit Scale: Few MAC addresses r Millions of MAC Addresses 4096 VLANs r Millions of VLANs Q-in-Q Protection: Spanning tree r Rapid spanning tree, … (Gives 1s, need 50ms) Path determined by r Traffic engineered path spanning tree Simple service r Service Level Agreement.
    [Show full text]
  • Converged Networking in the Data Center
    Converged Networking in the Data Center Peter P. Waskiewicz Jr. LAN Access Division, Intel Corp. [email protected] Abstract data center as a whole. In addition to the general power and cooling costs, other areas of focus are the physical The networking world in Linux has undergone some sig- amount of servers and their associated cabling that re- nificant changes in the past two years. With the expan- side in a typical data center. Servers very often have sion of multiqueue networking, coupled with the grow- multiple network connections to various network seg- ing abundance of multi-core computers with 10 Gigabit ments, plus they’re usually connected to a SAN: ei- Ethernet, the concept of efficiently converging different ther a Fiber Channel fabric or an iSCSI infrastructure. network flows becomes a real possibility. These multiple network and SAN connections mean large amounts of cabling being laid down to attach a This paper presents the concepts behind network con- server. Converged Networking takes a 10GbE device vergence. Using the IEEE 802.1Qaz Priority Group- that is capable of Data Center Bridging in hardware, ing and Data Center Bridging concepts to group mul- and consolidates all of those network connections and tiple traffic flows, this paper will demonstrate how dif- SAN connections into a single, physical device and ca- ferent types of traffic, such as storage and LAN traf- ble. The rest of this paper will illustrate the different fic, can efficiently coexist on the same physical connec- aspects of Data Center Bridging, which is the network- tion.
    [Show full text]
  • Chapter 2 Link Layer Verilog Hardware Implementation, and One Wireless Broadcast Link, I.E
    Modern Computer Networks: An open source approach Chapter 2 Modern Computer Networks: An open source approach Chapter 2 package, one wired broadcast link, i.e. Ethernet in Section 2.4 along with its Chapter 2 Link Layer Verilog hardware implementation, and one wireless broadcast link, i.e. wireless LAN (WLAN) in Section 2.5 plus a brief on Bluetooth and WiMAX. PPP is Problem Statement popularly used in the last-mile dial-up services or routers carrying various network protocols over point-to-point links. Ethernet has occupied more than 95 percent of To effectively and efficiently transmit data over physical links from one node wired LANs. It is also poised to be ubiquitous in MANs and WANs. In contrast to to one or more nodes, there is much more to do than simply modulating or desktop PCs, which usually use wired links, many devices such as laptop PCs encoding bit stream into signal. Transmission impairments, such as crosstalk and cellular phones are mobile and prefer wireless links such as WLAN, Bluetooth, between two adjacent pairs, can unexpectedly change transmission signal and and WiMAX. thus result in errors. The transmitter might transmit faster than the receiver can Table 2.1 Link protocols. handle. The transmitter has to somehow indicate the destination(s), if on a PAN/LAN MAN/WAN broadcast link, i.e. LAN, and usually needs to name itself to let the receiver know Token Bus (802.4) DQDB (802.6) Token Ring (802.5) HDLC where the source is. If multiple stations share a LAN, an arbitration mechanism is HIPPI X.25 required to determine who can transmit next.
    [Show full text]
  • Understanding Ethernet
    Chapter 1 Understanding Ethernet In This Chapter ▶ Exploring carrier sensing and collision detection methods ▶ Understanding directional traffic and simultaneous transmissions ▶ Examining Ethernet speed limits and wire-rated standards ▶ Exploring Gigabit Ethernet ▶ Distinguishing between local and backbone Ethernet ▶ Recognizing Ethernet interfaces ▶ Understanding Ethernet’s simplicity n today’s connected business world, ubiquitous access to Idigitized information and data is critical. Networking has not only reshaped the information landscape, but it has also vastly increased speeds at which information moves and is consumed. In fact, networking is the key to accessing the com- plex services and applications within which information plays a starring role. Although access to the Internet is essential, all networking begins at the local level. For modern networks, Ethernet is the standard infrastructure upon which local net- works rest. Ethernet comprises a family of frame-based protocols and tech- nologies designed to connect local area networks (LANs) — computersCOPYRIGHTED and devices situated in MATERIAL close proximity and able to communicate with one another. Ethernet draws its name from the fanciful Latin terminology luminiferous aether, which trans- lates to a light-bearing medium once thought to fill space and propagate magnetic waves. As such, Ethernet is a metaphorical reference for the physical transmission medium in the work- place (and at home) that propagates digitized information in electronic form. The term “Ethernet” was originally coined by 4 Carrier Ethernet For Dummies Bob Metcalfe while jointly developing basic Ethernet network computing with David Boggs at Xerox Palo Alto Research Center (PARC). Sensing a Carrier and Handling Collisions Two people on opposite ends of a phone conversation can sense carrier presence (either a dial-tone or a connected call) and handle collisions (overlapping conversations).
    [Show full text]
  • Storage and Network Convergence Using Fcoe and Iscsi
    Front cover Storage and Network Convergence Using FCoE and iSCSI Learn how to improve IT service performance and availability Simplify your storage and network infrastructure See how to reduce data center network costs Sangam Racherla Silvio Erdenberger Harish Rajagopal Kai Ruth ibm.com/redbooks International Technical Support Organization Storage and Network Convergence Using FCoE and iSCSI January 2014 SG24-7986-01 Note: Before using this information and the product it supports, read the information in “Notices” on page xi. Second Edition (January 2014) This edition applies to the latest supported Converged Network Adapters and Switches in the IBM System Networking Portfolio of products. © Copyright International Business Machines Corporation 2012, 2014. All rights reserved. Note to U.S. Government Users Restricted Rights -- Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Notices . xi Trademarks . xii Preface . xiii Authors. xiii Now you can become a published author, too! . .xv Comments welcome. .xv Stay connected to IBM Redbooks . xvi Part 1. Overview of storage and network convergence . 1 Chapter 1. Introduction to convergence . 3 1.1 What convergence is. 4 1.1.1 Calling it what it is . 4 1.2 Vision of convergence in data centers . 4 1.3 The interest in convergence now . 5 1.4 Fibre Channel SANs today . 5 1.5 Ethernet-based storage today. 6 1.6 Benefits of convergence in storage and network . 7 1.7 Challenge of convergence . 8 1.8 Conclusion . 10 Chapter 2. Fibre Channel over Ethernet . 11 2.1 Background: Data Center Bridging . 12 2.1.1 Priority-based Flow Control: IEEE 802.1Qbb .
    [Show full text]
  • TROUBLESHOOTING FEATURES for Media Conversion Products Table of Contents
    WHITE PAPER : TROUBLESHOOTING FEATURES for Media Conversion Products Table of Contents Introduction ......................................................................................................... 3 Link Integrity ....................................................................................................... 4 Ethernet Troubleshooting Features ................................................................... 4 1. Auto Negotiation (AN) ....................................................................................... 4 a. Full Duplex ................................................................................................ 4 b. 100 Mbps Speed ..................................................................................... 4 c. Selective Advertising ................................................................................... 5 d. Rate Converters ....................................................................................... 5 e. FX Auto Negotiation (FX AN) ..................................................................... 5 2. FX LinkLoss (FXLL) ........................................................................................... 6 3. TX LinkLoss (TXLL) ........................................................................................... 6 4. FiberAlert (FA) ................................................................................................... 7 5. LinkLoss & FiberAlert ........................................................................................ 7
    [Show full text]
  • Fairness in a Data Center
    University of New Hampshire University of New Hampshire Scholars' Repository Doctoral Dissertations Student Scholarship Winter 2012 Fairness in a data center MIkkel Hagen University of New Hampshire, Durham Follow this and additional works at: https://scholars.unh.edu/dissertation Recommended Citation Hagen, MIkkel, "Fairness in a data center" (2012). Doctoral Dissertations. 694. https://scholars.unh.edu/dissertation/694 This Dissertation is brought to you for free and open access by the Student Scholarship at University of New Hampshire Scholars' Repository. It has been accepted for inclusion in Doctoral Dissertations by an authorized administrator of University of New Hampshire Scholars' Repository. For more information, please contact [email protected]. Fairness in a data center BY Mikkel Hagen M.S. Computer Science, University of New Hampshire (2008) B.S. Computer Science/Biology/Psychology, St. Bonaventure University (2004) DISSERTATION Submitted to the University of New Hampshire in partial fulfillment of the requirements for the degree of Doctor of Philosophy in Computer Science December 2012 UMI Number: 3537816 All rights reserved INFORMATION TO ALL USERS The quality of this reproduction is dependent upon the quality of the copy submitted. In the unlikely event that the author did not send a complete manuscript and there are missing pages, these will be noted. Also, if material had to be removed, a note will indicate the deletion. Dissertation Publishing UMI 3537816 Published by ProQuest LLC 2013. Copyright in the Dissertation held by the Author. Microform Edition © ProQuest LLC. All rights reserved. This work is protected against unauthorized copying under Title 17, United States Code. uest ProQuest LLC 789 East Eisenhower Parkway P.O.
    [Show full text]
  • 19540 - Telematics 7Th Tutorial - Media Access, Ethernet & Wireshark
    19540 - Telematics 7th Tutorial - Media Access, Ethernet & Wireshark Bastian Blywis Department of Mathematics and Computer Science Institute of Computer Science 26. November, 2009 Institute of Computer Science – Telematics Tutorial – 26. November, 2009 1 Outline 1. Frame Size 2. Packets and Cells 3. FDDI Performance 4. ATM 5. Tunneling 6. Bridge Classification 7. Virtual LANs 8. IEEE 802.1Q and IEEE 802.2 9. Features of Layer 2 Protocols 10. Security Considerations 11. IEEE 802.1D Institute of Computer Science – Telematics Tutorial – 26. November, 2009 2 Frame Size Consider a 10 MBit/s CSMA/CD LAN with a bus of 50m length. The speed of the signal within the transmission medium is 2 ∗ 108m=s. 1. Calculate the upper bound of the collision detection time. 2. Specify the minimum frame length. Institute of Computer Science – Telematics Tutorial – 26. November, 2009 3 Frame Size Maximum time depends on maximum distance: AB 50m 5*10^-7s – Worst case: station A senses a free medium and starts to transmit – Station B senses a free medium and starts to transmit just at the time the signal from A arrives at B – Signal from B has to travel through the whole network until A detects the collision – Maximum time until collision detection, is twice the time of the signal propagation time for the whole network buslength 50m t = 2 ∗ = 2 ∗ = 5 ∗ 10−7s 8 m signalspeed 2 ∗ 10 s Institute of Computer Science – Telematics Tutorial – 26. November, 2009 4 Frame Size To ensure the stations are able to detect a collision, the frame has be take at least t to send: framelength min > t capacity 10MBit framelength > ∗ 5 ∗ 10−7s = 5Bit min s Institute of Computer Science – Telematics Tutorial – 26.
    [Show full text]
  • Network Transport for Data Centers
    X_405082 Advanced Computer Networks Data Center Transport Lin Wang ([email protected]) Period 2, Fall 2020 Course outline Warm-up Video ■ Fundamentals ■ Video streaming ■ Forwarding and routing ■ Video stream analytics ■ Network transport Networking and ML Data centers ■ Networking for ML ■ Data center networking ■ ML for networking ■ Data center transport � Mobile computing Programmability ■ Wireless and mobile ■ Sofware defined networking ■ Programmable forwarding 2 Learning objectives What are the new challenges in data center transport? What design choices do we have for data centers transport design? 3 What is special about data center transport Network ■ Extremely high speed (100+ Gbps) ■ Extremely low latency (10-100s of us) Diverse applications and workloads ■ Large variety in performance requirements Traffic patterns ■ Large long-lived flows vs small short-lived flows ■ Scatter-gather, broadcast, multicast Built out of commodity components: no expensive/customized hardware 4 Congestion control recall Network Do you still remember the goal of congestion control? 5 Congestion control recall Network Congestion control aims to determine the rate to send data on a connection, such that (1) the sender does not overrun the network capability and (2) the network is efficiently utilized 6 TCP Sender Receiver Network ACK ACK ACK Application The transport layer in the network model: Reliable TCP ■ Reliable, in-order delivery using acknowledges ■ Make sure not to overrun the receiver (receiving window, IP rwnd) and the network (congestion window,
    [Show full text]
  • NC-SI Over MCTP Binding Specification 6
    1 2 Document Number: DSP0261 3 Date: 2013-08-22 4 Version: 1.0.0 5 NC-SI over MCTP Binding Specification 6 7 Document Type: Specification 8 Document Status: DMTF Standard 9 Document Language: en-US 10 11 NC-SI over MCTP Binding Specification DSP0261 12 Copyright notice 13 Copyright © 2013 Distributed Management Task Force, Inc. (DMTF). All rights reserved. 14 DMTF is a not-for-profit association of industry members dedicated to promoting enterprise and systems 15 management and interoperability. Members and non-members may reproduce DMTF specifications and 16 documents for uses consistent with this purpose, provided that correct attribution is given. As DMTF 17 specifications may be revised from time to time, the particular version and release date should always be 18 noted. 19 Implementation of certain elements of this standard or proposed standard may be subject to third party 20 patent rights, including provisional patent rights (herein "patent rights"). DMTF makes no representations 21 to users of the standard as to the existence of such rights, and is not responsible to recognize, disclose, 22 or identify any or all such third party patent right, owners or claimants, nor for any incomplete or 23 inaccurate identification or disclosure of such rights, owners or claimants. DMTF shall have no liability to 24 any party, in any manner or circumstance, under any legal theory whatsoever, for failure to recognize, 25 disclose, or identify any such third party patent rights, or for such party’s reliance on the standard or 26 incorporation thereof in its product, protocols or testing procedures.
    [Show full text]
  • Rapid Spanning Tree, …
    DataData CenterCenter EthernetEthernet . Raj Jain Washington University in Saint Louis Saint Louis, MO 63130 [email protected] These slides and audio/video recordings of this class lecture are at: http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ ©2013 Raj Jain 1-1 OverviewOverview 1. Residential vs. Data Center Ethernet 2. Review of Ethernet Addresses, devices, speeds, algorithms 3. Enhancements to Spanning Tree Protocol 4. Virtual LANs 5. Data Center Bridging Extensions Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ ©2013 Raj Jain 1-2 Quiz:Quiz: TrueTrue oror False?False? Which of the following statements are generally true? T F Ethernet is a local area network (Local < 2km) Token ring, Token Bus, and CSMA/CD are the three most common LAN access methods. Ethernet uses CSMA/CD. Ethernet bridges use spanning tree for packet forwarding. Ethernet frames are 1518 bytes. Ethernet does not provide any delay guarantees. Ethernet has no congestion control. Ethernet has strict priorities. Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ ©2013 Raj Jain 1-3 ResidentialResidential vs.vs. DataData CenterCenter EthernetEthernet Residential Data Center Distance: up to 200m No limit Scale: Few MAC addresses Millions of MAC Addresses 4096 VLANs Millions of VLANs Q-in-Q Protection: Spanning tree Rapid spanning tree, … (Gives 1s, need 50ms) Path determined by Traffic engineered path spanning tree Simple service Service Level Agreement. Rate Control. Priority Need per-flow/per-class QoS Aggregate QoS No performance/Error Need performance/BER monitoring (OAM) Washington University in St.
    [Show full text]