White-Label Open-Source Networking

Total Page:16

File Type:pdf, Size:1020Kb

White-Label Open-Source Networking University of Amsterdam White-label open-source networking Authors Łukasz Makowski [email protected] Paola Grosso [email protected] January 22, 2018 Table of Contents 1 Motivation for open-networking 4 2 Architecture background 5 2.1 NPU communication ............................. 5 2.2 ASIC control module ............................. 6 3 Network Operating Systems (NOS) 8 3.1 Open Networking Linux (ONL) ....................... 8 3.2 OpenSwitch (OPX) .............................. 8 3.3 SONiC ..................................... 10 3.4 Broadcom NPU interface access ....................... 13 4 Control-plane stacks 14 4.1 Quagga/FRR ................................. 14 4.2 BIRD ..................................... 14 4.3 Flexswitch ................................... 14 5 Method 15 5.1 Preliminary phase ............................... 15 5.2 Feature tests ................................. 16 5.3 FIB installation latency ........................... 20 6 Results: feature tests 23 6.1 Configuration and management ....................... 23 6.2 Layer 2 (L2) .................................. 27 6.3 Layer 3 (L3) : OSPF ............................. 30 7 Results: FIB installation latency 32 8 Discussion 33 8.1 Preliminary phase ............................... 33 8.2 Feature test .................................. 33 8.3 FIB installation latency accuracy ...................... 34 9 Conclusions 36 10 Future work 37 2 11 Acknowledgments 38 Bibliography 39 3 1 Motivation for open-networking Traditionally, networking equipment used to be a locked-in hardware with vendor’s pro- prietary software installed. However, recently the trend of opening this ecosystem is becoming more and more popular. Networking vendors allow the installation of other operating systems and software on their devices. This gives more power to network administrators, allowing the customiza- tion of the device according to their specific needs. Secondly, it also opens the possibility of running unified network operating system and networking daemons across the devices from various vendors. There are a couple of commercial NOS distributions targeting white-label switches (e.g. Cumulus Linux1 or PicaOS2). Generally, they are based on Linux operating system and for the purposes of control-plane also open-source software could be used. Never- theless, the NOS itself remains proprietary and closed-source. In the opposition to this trend, there are also open-source NOS projects available. They constitute an alternative for users wanting to exchange and adjust the system to their requirements. Moreover, allowing to avoid the licensing costs of using commercial NOSes. In this research we aim to answer the following questions: 1. Is it feasible to use a white-label, open-source based switching stack for a traditional deployment requiring basic L2 and L3 functionalities? 2. Are there any performance related differences between open-source NOS imple- mentations? 1https://cumulusnetworks.com/products/cumulus-linux/ 2http://www.pica8.com/products/picos 4 2 Architecture background In this section, we discuss the components which can be identified in the white-label network stack, where Figure 1 gives the overview on this. Starting from the bottom, there is a hardware layer representing the actual device i.e. Network Processing Unit (NPU), interfaces, sensors, etc. It later gets discovered and handled by a lower-level layer, which signifies the drivers and other components residing in the space of network operating system. Next, for the actual interaction with the NPU device, the abstraction layer is placed. Lastly, to realize the network devices features (e.g. routing protocol operations, configuration) the management and control-plane applications are used. Figure 1: White-label networking stack logical structure 2.1 NPU communication To program the NPU, there can be two generic approaches possible: (1) using NPU’s SDK, (2) using a “proxy” component which will handle the NPU communication on behalf of the application. Generally, the former is not present in the design of open- source white label stacks, as it would require re-adjusting the applications to every new change in SDK. Following the second approach, there have been two ways established: 5 • Switch Abstraction Interface (SAI) • switch-dev SAI SAI develops an abstracted interface over SDKs provided by NPU vendors used in white- label switches (e.g. Broadcom, Mellanox). This approach allows the NOS developers to focus on a compatibility with SAI’s API without the need to adjust to SDK changes or even a completely new NPU vendor. switch-dev Switch-dev is a project aiming to contribute open versions of NPU drivers to the Linux kernel code. The vision is to perform all NPU communication inside the kernel space, so that the standard Linux interfaces (CLI, netlink API) can be used to change NPU state. 2.2 ASIC control module The role of ASIC control module could be characterized as three activities: (1) interfac- ing with control-plane apps, (2) maintaining the state of the desired configuration, (3) communicating with an NPU (for example using SAI). On the second page of SAI speci- fication [1] it can be seen that authors explicitly define the requirement for suchcompo- nent, additionally specifying rudimentary features it should implement. The examples of ASIC control module implementations can be found in open-networking systems such as OpenSwitch (OPX) and SONiC. Those are implemented as sets of processes cooperating with each other according to the publish/subscribe communication scheme. Message passing architecture The concept of message-based asynchronous process communication is a key design prin- ciple for the analyzed network operating systems. It is also one of the attributes of Erlang1 programming language which has been designed with a telecom-grade high reli- ability in mind. Erlang provides language level paradigms for message passing, enforcing 1http://www.erlang.org/ 6 process communication to be realized only in this manner. Such approach allows for high process isolation and as a consequence, it results in a fact that “a software error in a con- current process should not influence processing in the other processes in the system” [2]. A similar solution appears to be empowering Arista EOS2 network operating system. A central database component (Sysdb) is used for inter-process message exchange between EOS individual components [3]. The analysis of middleware subsystems of Azure SONiC and OpenSwitch reveals that Redis3 message-queue is used to realize similar objectives as outlined for Erlang and EOS. 2https://eos.arista.com/ 3https://redis.io/ 7 3 Network Operating Systems (NOS) 3.1 Open Networking Linux (ONL) ONL is a project hosted by the Open Compute Project1. As the name implies, it is a Linux distro suited for installation on the network devices. Authors add the support for a specific hardware used in a particular model. This provides the foundation for starting to use the given platform, however, it lacks higher-level components which are the key part of fully usable network device. Most importantly, it is left to the user how to handle the communication with the NPU. 3.2 OpenSwitch (OPX) The current version of OpenSwitch is actually the second generation of this project. The first one, sponsored mainly by HPE (Hewlett-Packard Enterprise) has been discontinued. The two main contributors are Dell (providing the actual NOS layer) and SnapRoute (FlexSwitch control-plane). At the moment of our evaluation, there were no official project images available. However, the images offering Dell S6000-ON switch support were available at one of the repository pages2. The inspection of the images revealed that the control-plane stack was not included as the project work was wrapping up. However, it was possible to access FlexSwitch source code (opx-flxl* repositories in OPX github project). 1http://www.opencompute.org/ 2https://github.com/open-switch/opx-docs/wiki/Install-OPX-Base-on-Dell-S6000-ON-platform 8 Figure 2: NAS design3. OPX is based on Debian operating system combined with the abstraction layer compo- nents and utilities developed by OPX project participants. As illustrated in Figure 2, the component ingesting the intended configuration is Control Plane Service (CPS). Next, Network Adaptation Service (NAS) is responsible for translating the configuration to the set of NPU commands and communicating those using SAI interface. Table 1 (taken from [4]) lists the available features. The important fact is that not all of them are configurable with the means of using standard Linux network utilities. The operations which are simply not present there need to be performed through CPS API. 3https://github.com/open-switch/opx-docs/raw/master/images/nas_design.png 9 Configure with Linux Commands Networking Feature Configure with CPS API or Open Source Application Interfaces Physical Yes Yes Link Aggregation (LAG) Yes (Bond) Yes VLAN Yes Yes Fanout (4x10G) No Yes (script) Layer 2 Bridging LLDP Yes No MAC address table No Yes STP Yes Yes VLAN Yes Yes Layer 3 Routing ECMPv4 Yes Yes ECMPv6 Yes Yes IPv4 Yes Yes IPv6 Yes Yes Unicast routing Yes Yes QoS No Yes ACLs No Yes Monitoring Mirroring No Yes sFlow No Yes Port and VLAN statistics No Yes Table 1: Selected supported Dell OS10 networking features. 3.3 SONiC SONiC is an abbreviation for Software for Open Networking in the Cloud. It is a NOS by Microsoft Azure used to empower the network operations, however, the scale of its deployment is non-public. Table 2 outlines
Recommended publications
  • Arista Networks, Inc. (Exact Name of Registrant As Specified in Its Charter)
    UNITED STATES SECURITIES AND EXCHANGE COMMISSION Washington, D.C. 20549 FORM 10-Q (Mark One) ☒ QUARTERLY REPORT PURSUANT TO SECTION 13 OR 15(d) OF THE SECURITIES EXCHANGE ACT OF 1934 For the quarterly period ended September 30, 2019 or ☐ TRANSITION REPORT PURSUANT TO SECTION 13 OR 15(d) OF THE SECURITIES EXCHANGE ACT OF 1934 For the transition period from to Commission File Number: 001-36468 Arista Networks, Inc. (Exact Name of Registrant as Specified in its Charter) Delaware 20-1751121 (State or Other Jurisdiction of Incorporation or Organization) (I.R.S. Employer Identification No.) 5453 Great America Parkway , Santa Clara , California 95054 (Address of principal executive offices) (Zip Code) (408) 547-5500 (Registrant’s telephone number, including area code) Not Applicable (Former name, former address and former fiscal year, if changed since last report) Securities registered pursuant to Section 12(b) of the Act: Title of each class Trading Symbol(s) Name of each exchange on which registered Common Stock, $0.0001 par value ANET New York Stock Exchange Indicate by check mark whether the registrant (1) has filed all reports required to be filed by Section 13 or 15(d) of the Securities Exchange Act of 1934 during the preceding 12 months (or for such shorter period that the registrant was required to file such reports), and (2) has been subject to such filing requirements for the past 90 days. Yes x No o Indicate by check mark whether the registrant has submitted electronically every Interactive Data File required to be submitted pursuant to Rule 405 of Regulation S-T (§232.405 of this chapter) during the preceding 12 months (or for such shorter period that the registrant was required to submit such files).
    [Show full text]
  • Arista Networks NYSE: ANET Recommendation: BUY
    Arista Networks NYSE: ANET Recommendation: BUY Alex Tullman & Connor O’Brien Investment Thesis Recommendation: Arista Networks is (NYSE: ANET) is a great high growth stock as it holds a position as the high-end provider and lead innovator in a rapidly growing industry, while currently being underpriced because of a market overreaction. Rationale: The current price of $193.68 provides a cheap entry into a company on the supplier side of one of the fastest growing sectors in tech. As a recognized high-end supplier, Arista Network will continue to succeed as long as cloud network services are demanded. 1. Strong tailwinds and growth potential in the cloud network industry 2. Arista Network is known as the high-end provider for specialized cloud network hardware and software 3. Recent 25% drop in share price is an overreaction that has left the stock undervalued Price Target: $230.73 19.17% upside to current price of $193.68 2 Company Overview Overview Management • Arista Networks, Inc. develops, markets, and sells, cloud • President and CEO (2008-Present) networking solutions in the U.S. and internationally • Jayshree – left 15-year career with Cisco to be CEO • Solutions consist of extensible operating systems, a set of network • Chief Development Officer and Chairman (2004-Present) applications, and gigabit Ethernet switching and routing • Bechtolsheim – gigabit startup acquired by Cisco, VP of platforms – focus is on ethernet switches Gigabit Systems Business at Cisco • Contracts with Jabil Circuit, Sanmina Corp., and Foxconn to • Founded Arista Network in 2004 to create a company make its switches more specialized in gigabit ethernet switches • Has approximately 5,500 end customers worldwide in • OG investor in google, founder of Sun Microsystems approximately 86 countries.
    [Show full text]
  • Deploying IP Storage Infrastructures
    White Paper Deploying IP Storage Infrastructures The cost of deploying and maintaining traditional storage networks is growing at an exponential rate. New requirements for compliance and new applications such as analytics mean that ever-increasing volumes of unstructured data are collected and archived. Legacy storage networks cannot meet the need to scale-out capacity while reducing capital and operational expenditures. In response to this challenge, new storage architectures based on IP/Ethernet have evolved, and are being adopted at an ever-increasing rate. While technologies such as NAS and iSCSI are widely deployed, Fibre Channel SANs have maintained a dwindling but still strong presence in enterprise architectures. This paradigm is beginning to change as scale-out storage systems enabled by Software Defined Storage (SDS) are increasingly mature. The ability to reclaim stranded Direct Attached Storage (DAS) assets in a server infrastructure combined with the efficiencies gained by running storage traffic over the same IP/Ethernet network as standard data traffic provides an undeniably strong opportunity to reduce both the capex and opex required to deploy and run a storage infrastructure. According to some estimates, as much as a 60% capex reduction is achievable by deploying an SDS architecture which leverages server DAS to create a VSAN. Even without such radical savings, scale-out storage relying on IP/Ethernet offers dramatic savings over traditional Fibre Channel based storage. Most future IT asset deployments will leverage 10 Gigabit Ethernet (10GbE) and now 40 Gigabit Ethernet [40GbE]) for the underlying storage interconnect for newer applications. Traditional datacenter networks however are not designed to support the traffic patterns and loss characteristics to reliably deploy an IP/Ethernet storage infrastructure.
    [Show full text]
  • National Centre for Nuclear Research
    Case Study National Centre for Nuclear Research Arista helps National Centre for Nuclear Research build a Highlights low latency and high performance network infrastructure to support supercomputing excellence Challenge Polish National Centre for Nuclear Research and its Świerk Computing Centre needed to improve its core network infrastructure to facilitate the upgrade of its supercomputing resources and provide a more efficient foundation for further The Polish National Centre for Nuclear Research provides a growth. catalyst for pure research and numerous practical applications Solutions across science and the wider economy. In response to • Arista 7050 Series Switches demands from the Polish national energy sector, the Centre • Arista EOS® established the Świerk Computing Centre and began a major program to upgrade its critical infrastructure to increase • Coraid EtherDrive performance with the ability to scale further over the next Results decade. Through switching to Arista, Świerk has dramatically • Wire-speed performance on all switching ports increased its uplink connections bandwidth, while reducing latency and built the foundation to scale its IT resources in line • Significant reduction in latency with new groundbreaking scientific and commercial projects. • Dramatically lower energy consumption • Switch to MLAG doubles bandwidth capacity • HPC application running directly within the switch boost computational performance • Advanced admin tools (XMPP, JSON RPC) reduce management complexity and speed up configuration changes arista.com Case Study Project Background With over 1000 employees, the National Centre for Nuclear Research is one of the oldest and the largest research institutes in Poland. Since its inception in 1955, it has established a world-class combination of pure research and numerous practical applications for science and the wider economy.
    [Show full text]
  • Software Driven Cloud Networking
    White Paper Software Driven Cloud Networking Arista Networks, a leader in high-speed, highly programmable datacenter switching, has outlined a number of guiding principles for network designs serving private cloud, public cloud, enterprise and high-performance network use cases. Arista’s Software Driven Cloud Networking approach incorporates software capabilities of our Extensible Operating System (EOS®) and CloudVision® software to provide seamless and consistent operational experiences and workflow integration across any cloud infrastructure. Emerging third-party cloud orchestration technologies and services, and cloud provider infrastructures, complement Arista’s datacenter platforms by automating workgroup policies and provisioning within a broader integrated hybrid cloud IT infrastructure. Arista defines the combination of cloud automation technologies and Arista EOS-based Universal Cloud Network designs as Software Driven Cloud Networking. Integration targets for our Cloud Networking solutions include standards-based network virtualization controllers, network security services, hypervisors, container management systems, automated compute and storage clusters, cloud orchestration middleware, IT support systems and customized flow-based forwarding agents. arista.com White Paper Cloud Technology Shift High-performance Ethernet networks have evolved significantly since their inception in the late 1980s, with many evolutionary changes leading to new networking solution categories. The datacenter switching category, now extending widely into the private and public cloud infrastructure, has emerged as a unique high-growth category, demanding dense 10-100Gbps Ethernet switching at massive scales and unprecedented price/performance levels as its leading enabling characteristic. Beyond considerable speed progressions over the last two decades, datacenter switching also demands that networks support maximized performance at breakthrough economics, providing cost-effective expansion without redesign or reversals in architectural approaches.
    [Show full text]
  • Arista Networks, Inc. 2015 Annual Report Dear Arista Networks Stockholders: I Am Pleased to Report That Arista Networks Had a Very Successful 2015 Fiscal Year
    Arista Networks, Inc. 2015 Annual Report Dear Arista Networks Stockholders: I am pleased to report that Arista Networks had a very successful 2015 fiscal year. In reflecting on 2015, we are extremely proud of the company’s growth as well as its technological leadership. Our team has remained unwavering in our commitment to innovation, and we continually strive to drive value for our stockholders, cus- tomers, partners and employees. 2015 Highlights Summary: • We announced 26 new leaf/spline platforms for 10/25/40/50/100GbE all based on our single binary- image software utilizing diverse silicon architectures. • We grew revenue profitably by 43.4% to $837.6m. Our revenue growth is driven by our innovative platforms, differentiated Arista EOS stack and orchestration with CloudVision®. We have over 3,700 customers and continue to add new customers expanding our market presence and geographic foot- print. • We were recognized as a leader in Gartner’s 2015 Magic Quadrant for Data Center Networking. • We announced CloudVision, a network-wide approach for workload orchestration and workflow auto- mation. This is a turnkey solution for cloud networking enabling enterprises to more easily realize the benefits of cloud-class automation. • We announced a new service capability for CloudVision called Macro-Segmentation Service (MSS™). MSS provides automated insertion of Security and other in-line L4-7 services within any Software Driven Cloud Networking Infrastructure. MSS has been endorsed by our technology alliance ecosys- tem partners VMware, Palo Alto Networks, Check Point Software, Fortinet, and F5 Networks who are each working with us to deliver MSS support for their platforms.
    [Show full text]
  • Media & Entertainment Solution Guide
    Solution Guide Cloud Grade Networking for Broadcast, Digital Media Creation, Post Production, Content Distribution and Storage Developments in digital broadcast, VFX, and animation technologies are expanding the creative horizons of producers and talent. Concurrently, the growing demand and means of consumption for such content is astounding! The scale and complexity is measured by the number and types of devices connected to the Internet. Content providers are innovating and expanding IP based distribution solutions to differentiate their offerings and adapt to growing audience demands. Likewise, producers are identifying and creating new content using real time, multi-stream workflows made possible with multi-vendor production systems running on Ethernet-IP switching. Given the global scale of audience and competition, content providers and producers are migrating their creative, production and distribution workloads to IP based Ethernet infrastructures to deliver a more productive, streamlined, and cost effective solution. Introduction Accelerating Content Growth Media production companies, be they pre- or post- production, or real-time • Increases capacity to handle more broadcast, are dealing with an explosion of content as they race their productions visually immersive theatrical to market. Digital capture and editing technologies, along with next-generation workloads and broadcast animation workflows, create multiple image streams that must be parsed among workstreams realtime and non-linear broadcast workflows, and then to IP destinations of varying formats. • Converges content creation, rights management, transcoding CGI and animation production studios were the first to leverage price/performance and distribution gains and investment protection of mainstream IP based Ethernet infrastructures. Image, file and transport protocols streamlined file based workflows, allowing the • Delivers an open, standards- use of COTS compute platforms running over standard IP Ethernet networks.
    [Show full text]
  • Layer 2 Leaf & Spine Design and Deployment Guide
    Design Guide Layer 2 Leaf & Spine Design and Deployment Guide The intention of this guide is to provide a systematic and well thought out series of steps to assist the reader with the design and deployment of a Layer 2 Leaf and Spine (L2LS) topology. The example deployment is based on a design which meets a set of predefined requirements as listed in the System Requirements section of this guide. This guide was written for network engineers, administrators and cloud architects but can be informative to any role dealing with layer 2 networking. A good working knowledge of networking principles is assumed. The guide is broken down into four main sections as noted below, each section begins with a high level overview and gets progressively more detailed. • System Requirements • Design Overview • Detailed Design • Configuration Examples arista.com Design Guide Table of contents CONTENTS The Drivers for Layer 2 Leaf + Spine Topologies 4 System Requirements 4 Arista Universal Cloud Network (UCN) Architecture 5 Design Overview 5 A Universal Spine 5 Multi-chassis Link Aggregation 6 Leaf Options 6 LACP 8 Spanning-Tree 8 First Hop Redundancy Protocols 8 VARP 8 Multicast 9 Layer 2 Multicast 9 Layer 3 Multicast 9 IGMP Snooping 9 IGMP Snooping Querier 9 IGMP Snooping Mrouter 9 Link Layer Discovery Protocol 10 Detailed Design 10 Leaf Design Considerations 11 Interfaces and Port Densities 11 Transceivers and Cables 11 arista.com 2 Design Guide Leaf Uplinks 11 Traffic Load Balancing 11 Table Sizes 12 Single-Homed Workloads 12 Dual-Homed Workloads 12
    [Show full text]
  • VXLAN with Cloudvision®
    Product Brief VXLAN With CloudVision® VXLAN and CloudVision Empower Administrators to Inside Deliver Scalable and Reliable Multi-Tenant Data Center Networks VXLAN A new networking technology developed Arista and VMware co-authored the Virtual eXtensible by Arista and VMware that provides LAN (VXLAN) protocol to provide virtual overlay networks multitenant L2 networks over an IP based and extend the cost efficiency gains of virtualized servers infrastructure. VXLAN combines the (hypervisors) in the data center. VXLAN encapsulates network benefits of VLANs with all the stability and scaling of routed IP networks traffic of virtualized workloads in standard IP packets. As CloudVision a result, multiple VXLAN virtual networks can run over the An EOS®-based platform that provides same physical infrastructure to reduce CAPEX. VXLAN runs services for: over any standard IP network and benefits from the scaling, • Exchange point for networkwide performance and reliability characteristics available in current services. IP data center networks. Standards based IP underlays are • Provisioning and change management open and permit best of breed, cost efficient, multi-vendor automation DC environments. IP underlay networks are also more reliable, • Multi-vendor controller integration reducing costly network outages in a VXLAN data center • VXLAN Control Services (VCS) infrastructure. VXLAN doesn’t rely on dated spanning tree Why These Technologies protocols, TRILL fabrics or 802.1Q vlan tagging mechanisms VXLAN isolates multiple workloads in that offer limited reliability, fault isolation and scaling. the converged DC while running over IP to deliver unprecedented reliability and VXLAN allows administrators to deploy up to 16.7 million scalability. Converged virtual networks deliver more workloads across common infrastructure, thus reducing costs.
    [Show full text]
  • Cognitive Campus White Paper
    White Paper Arista Cognitive Campus Network The recent global upheaval has forced an unexpected sea-change upon corporate business workflows and campus networks. Workers and network administrators not only have to embrace a new model of the diffused campus workspace, but also adapt to the revised security, support and collaboration challenges imposed by social distancing, contact tracing and an amplified reliance of collaboration tools that are evermore business critical. Furthermore, campus IoT device deployments are exploding, as more use cases are becoming commonplace in the distributed workforce; amplifying workforce productivity, and providing better monitoring of workloads, workers and physical workspaces. While the relentless price/performance improvements of campus switched LAN and WiFi technologies remains an important criteria for infrastructure upgrades, there is a new emphasis on automation, telemetry, and decision support analytics to offload and streamline day to day management activities from overly burdened NetOp and SecOp teams. Additionally, there are requirements for automated deployment, declarative configuration management, and simplified remediation, that allow a more diverse group of net admins to realize point and click, zero touch campus network deployments and maintenance. Network administrators look for standards based solutions delivering high quality, ease of maintainability and a simplified administrative experience to facilitate templatized deployments, and help administrators build on industry best practices and their networking experience. Furthermore, as enterprises continue to drive operational efficiencies with new use cases, leveraging net based apps and specialized IoT devices, administrators look more to automation systems and tools to fulfill the business imperatives of predictable, repeatable and successful outcomes in the management of their ever growing network campus workspace.
    [Show full text]
  • Big Iron, Fast Photons and SDN: the Hard, Bright and Soft Sides of Arista's Strategy
    Big iron, fast photons and SDN: the hard, bright and soft sides of Arista's strategy Analyst: Eric Hanselman Peter Christy 2 Jul, 2013 It's been a busy spring for Arista Networks, with expanded software functionality, upgraded switch modules and a Best of Interop/Grand Prize win for its 7500 Series modular switches. The new software capabilities include integration of its Arista EOS switch operating system with OpenStack (enabling fully automatic provisioning); a contribution to the OpenStack Neutron networking project (formerly OpenStack Quantum); OpenFlow support with a controller-less option; and a significant enhancement of its eAPI interfaces for EOS. The hardware upgrades encompass big increases in capacity and port density for its 7500 Series switches, as well as hardware VXLAN support and an approach to 100Gb Ethernet interfaces that breaks new ground in terms of price/performance and flexibility. All of these enhancements are delivered with what Arista pitches as a stress-free migration path for existing customers. The 451 Take While Arista's original product designs could have claimed to do SDN 'before SDN was cool,' the vendor's latest announcements extend integration into the major SDN camps of OpenStack and OpenFlow, and also increase programmability. These enhancements can offer value in both simplified datacenter cores and complex multi-tenant networks. Arista is also building on its high-performance legacy, leveraging its relatively modern, clean software design and merchant-silicon-based hardware to add a level of capacity in its large-chassis switch products that should challenge rivals. A simple upgrade path will please Arista customers, but the true innovation value may lie in a gamble on 10/40/100Gb Ethernet optics, whose lower cost could really pay off.
    [Show full text]
  • Mac Prefix 00:05:56 00:11:B2 70:02:58 C4:93:13 08:00:24 00:0B
    mac_prefix 00:05:56 00:11:B2 70:02:58 C4:93:13 08:00:24 00:0B:10 00:50:29 00:A0:2D 00:30:70 44:37:19 60:FE:20 EC:96:81 6A:73:7D 00:13:87 28:F3:58 00:16:A9 B8:B7:D7 00:1B:8A 00:19:29 7C:1E:B3 00:11:99 00:0D:72 00:12:88 00:14:95 00:18:3F 00:19:E4 00:1A:C4 00:1B:5B 00:1D:5A 00:1E:C7 00:1F:B3 00:21:7C 00:22:A4 00:23:51 00:24:56 00:25:3C 00:26:50 00:D0:9E 28:16:2E 34:EF:44 38:3B:C8 3C:EA:4F 60:C3:97 64:0F:28 74:9D:DC 94:C1:50 98:2C:BE B0:E7:54 B8:E6:25 C0:83:0A 00:0F:A2 00:04:75 00:04:76 00:22:F0 00:18:40 E4:BA:D9 00:0E:60 B0:6C:BF 00:0F:05 1C:7E:51 00:01:02 00:01:03 00:02:9C 00:06:8C 00:0A:04 00:0A:5E 00:0B:AC 00:0D:54 00:0E:6A 00:0F:CB 00:10:4B 00:10:5A 00:12:A9 00:14:7C 00:16:E0 00:18:6E 00:1A:C1 00:1C:C5 00:20:AF 00:26:54 00:50:04 00:50:DA 00:60:08 00:60:8C 00:60:97 00:A0:24 00:D0:D8 02:60:8C 02:C0:8C 00:04:0B 00:05:1A 00:1E:C1 00:22:57 00:24:73 00:30:1E 00:50:99 00:90:04 00:D0:96 08:00:4E 20:FD:F1 40:01:C6 00:60:3D C0:A3:64 BC:25:F0 8C:4B:59 00:21:C5 00:07:D5 00:A0:B5 CC:F5:38 00:09:B5 00:16:A1 08:00:21 00:06:49 00:15:C2 38:63:F6 00:22:6F 00:02:AC 5C:56:ED 00:17:A1 00:08:DE 70:E1:39 00:05:0E 00:1A:8E 00:13:CF 00:0E:56 00:1F:D4 00:18:7B 00:11:C1 00:22:B2 00:11:4E AC:EE:3B 00:09:C0 00:14:2E 04:84:8A B8:99:19 00:18:4F 00:11:ED 00:1B:E5 00:22:82 18:2B:05 C4:93:00 7C:1A:03 00:90:A0 B8:E7:79 00:1B:7C 00:15:34 00:05:39 EC:FC:55 00:08:75 00:40:08 08:18:4C 00:15:6E 00:1F:A0 00:10:43 00:22:80 00:12:41 FC:E1:86 00:21:FA 00:06:B9 00:24:AB 00:E0:E6 00:0E:E7 00:30:D4 00:07:32 00:17:D9 00:26:72 00:90:57 E4:77:6B 00:08:5D 00:10:BC 00:02:0F 70:2F:97 00:30:97
    [Show full text]