CN101129032A - 硬件抽象层 - Google Patents

硬件抽象层 Download PDF

Info

Publication number
CN101129032A
CN101129032A CN200680006072.0A CN200680006072A CN101129032A CN 101129032 A CN101129032 A CN 101129032A CN 200680006072 A CN200680006072 A CN 200680006072A CN 101129032 A CN101129032 A CN 101129032A
Authority
CN
China
Prior art keywords
network switch
binding
datum plane
interface
information base
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
CN200680006072.0A
Other languages
English (en)
Other versions
CN101129032B (zh
Inventor
维维德·西达
石黑邦宏
吉耶尔莫·赫尔南德兹
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
IP Infusion Inc
Original Assignee
IP Infusion Inc
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by IP Infusion Inc filed Critical IP Infusion Inc
Publication of CN101129032A publication Critical patent/CN101129032A/zh
Application granted granted Critical
Publication of CN101129032B publication Critical patent/CN101129032B/zh
Expired - Fee Related legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L49/00Packet switching elements
    • H04L49/60Software-defined switches
    • H04L49/604Hybrid IP/Ethernet switches
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L45/00Routing or path finding of packets in data switching networks
    • H04L45/24Multipath
    • H04L45/245Link aggregation, e.g. trunking
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L49/00Packet switching elements
    • H04L49/70Virtual switches

Abstract

本发明提供了一种硬件抽象层。可以通过使为了处理一个接口管理器下的所有逻辑和物理的相关接口所需的所有功能和算法记住虚拟接口和逻辑接口之间的绑定,并维护属于虚拟接口的端口和实际的逻辑端口的状态,来在网络交换机的数据平面中提供交换和路由功能。当实际接口关闭时,虚拟接口可以随之关闭。绑定还可以包括限定。所有这些绑定可以位于单个路由信息库(RIB)数据库中,从而不需要在各个地方保持多个绑定。此外,控制平面中的硬件抽象层随后还可以镜像到数据平面中,从而不需要客户创建执行相同任务的层。

Description

硬件抽象层
技术领域
本发明涉及网络交换机。更具体地说,本发明涉及在网络交换体系结构中使用的硬件抽象层。
背景技术
网络交换机是用于产生和断开两个端点之间的数据连接的硬件设备。交换机可以用来创建多对端点之间的虚拟电路、通过将数据分组转向它们预期的目的地来完成与无连接网络中的路由器相似的任务。
传统地,交换机具有两个软件平面(software plane):控制平面和数据平面。控制平面是该系统的负责提供系统的实际功能和特征的部分。数据平面负责向将交换机连接到外部世界的端口实际发送数据和从所述端口实际接收数据。在一些情况下,独立的处理器(“网络处理器”)也可以控制这些端口。从纯体系结构的观点来看,控制平面和数据平面之间的到不同处理器的分离是取决于系统的,并且还可以在该交换机上使用的操作系统中执行。
许多现有技术的交换机遵循控制平面和数据平面的这种分离。为了方便专门针对控制平面设计的软件,已经通过添加到控制平面的附加软件来利用应用程序编程接口(API),以与数据平面进行交互。这些API被总称为硬件抽象层API(HAL API)。
局域网(LAN)技术通常区分交换功能和路由功能。交换功能涉及使用封装数据分组的以太网帧的介质访问控制(MAC)地址将分组从源端口传输到目的地端口。这些交换机通常被称为集线器(hub)。另一方面,路由涉及基于分配给计算机的互联网协议(IP)地址作出(basing)转发决策。然后,以太网帧封装源和目的地端点的IP分组和IP地址。结果,因为在处理IP分组之前以太网帧必须被剥离,所以在路由器中解析分组目的地比在交换机中解析分组目的地花费更长的时间。
现代的交换和路由系统实际上可以进行组合,以使得能够基于MAC地址或基于IP地址的以太网帧的交换。目前,这些能力可以被包含到在控制系统的端口的交换系统中使用的实际网络处理器内。这样,需要将新的能力添加到数据平面,以便于这种组合了新的技术发展水平的功能。此外,虚拟LAN使得能够在LAN的物理拓扑中创建虚拟网络拓扑。这使得能够使用相同的以太网物理链路来分离该LAN中的数据流。从拓扑学的角度看,物理LAN拓扑和虚拟LAN段表示虚拟地独立的不同虚拟LAN,从而提高安全性。
然而,这些系统的主要缺点出现在它们的设计阶段。设计者必须实现以下组成部分:
1.用于将路由和接口管理与控制平面进行接口连接的机制。
2.将配置和登录功能从控制平面传播到数据平面的机制。
3.用于控制分组处理(handle)的分组驱动器(在将分组传送到数据平面的IP转发器/路由栈之前从硬件组件截取分组的层)。
4.异常分组处理器(捕获传送IP路由栈不知道如何处理的拓扑信息的控制分组,检查它们并将它们转发给适当的L2协议,以进行进一步的处理)。
5.接口管理器层(使虚拟接口的创建、处理和管理便利,并维护虚拟端口和物理端口之间的绑定,以及处理集合物理端口(aggregatedphysical port)到虚拟集合端口的创建和管理、这些虚拟端口之间的分组的分配(distribution)并维护虚拟和物理端口的管理状态)。
6.在硬件抽象层和硬件集成平面之间镜像功能的组件(将HAL API扩展到数据平面,并将基于硬件的PI提供给到实际硬件驱动器的API的接口)。
7.HIP API和硬件驱动器的API之间的软件中介层(shim layer)(在数据平面中),该软件中介层将HIP API翻译成该驱动器的API。
8.框架(chassis)和堆栈支持,包括可靠的数据传输机制和发现机制。
9.将管理接口层从控制平面扩展到数据平面。
将这种大负担施加给交换机的设计者增加了他们的开发费用以及开发时间。传统上,在创建功能、数据结构和通信路径的不必要的副本的许多情况下,以ad-hoc的方式执行这些功能,而不考虑抽象的功能之间的相互关系。此外,很多时候,交换机软件被发布给需要定制它们以与他们自己的硬件一起工作的客户。因此,对于所有这些组件的设计负担被施加给客户。需要的是不要求设计者或客户参与这种耗时的开发的解决方案。
发明内容
可以通过使为了处理一个接口管理器下的所有逻辑和物理的相关接口所需的所有功能和算法记住虚拟接口和逻辑接口之间的绑定,并维护属于虚拟接口的端口和实际的逻辑端口的状态,来在网络交换机的数据平面中提供交换和路由功能。当实际接口关闭(go down)时,虚拟接口可以随之关闭。绑定还可以包括限定(definition)。所有这些绑定可以位于单个路由信息库(RIB)数据库中,从而不需要在各个地方保持多个绑定。此外,控制平面中的硬件抽象层随后还可以镜像到数据平面中,从而不需要客户创建执行相同任务的层。
附图说明
包含附图并构成本说明书的一部分,附图示出了本发明的一个或更多个实施方式,并且与详细说明一起用于解释本发明的原理和实现。
图1是表示根据本发明的实施方式的网络交换机体系结构的图。
图2是表示在根据本发明的实施方式的网络交换机的数据平面中提供交换和路由功能的方法的图。
具体实施方式
这里在计算机、服务器、软件的系统环境下描述本发明的实施方式。本领域的普通技术人员将认识到本发明的以下详细描述仅是说明性的并且并不旨在受到任何方式的限制。本领域的技术人员在本公开的帮助下将容易地想到本发明的其他实施方式。现在将对附图中所示的本发明的实现进行详细说明。在整个附图和下面的详细描述中,使用相同的标号来指代相同或相类的部分。
为了清楚起见,没有示出和描述在此所述的实现的全部常规(routine)特征。当然,应该理解,在任何这种实际实现的开发中,必须进行许多具体实现的决策以达到开发人员的具体目标(例如,符合与应用和商业相关的限制),并且这些具体目标根据实现和开发人员而变化。此外,应该理解,尽管这种开发努力可能是复杂而耗时的,但是对于受益于本公开的本领域的普通技术人员来说将是常规的工程任务。
根据本发明,组件、处理步骤和/或数据结构可以使用各种类型的操作系统、计算平台、计算机程序和/或通用机器来实现。此外,本领域的普通技术人员将认识到,在不偏离在此公开的发明思想的范围和精神的情况下,还可以使用具有较不通用特性的设备,例如硬连线设备、现场可编程门阵列(FPGA)、专用集成电路(ASIC)等。
可以通过使为了处理一个接口管理器下的所有逻辑和物理的相关接口所需的所有功能和算法记住虚拟接口和逻辑接口之间的绑定,并维护属于虚拟接口的端口和实际的逻辑端口的状态,来在网络交换机的数据平面中提供交换和路由功能。当实际接口关闭时,虚拟接口可以随之关闭。绑定还可以包括限定。所有这些绑定可以位于单个数据库中,从而不需要在各个地方保持多个绑定。控制平面处理所有接口,就好像它们是物理接口一样,由此改善控制平面对决策的路由和转发,从而提高了性能、网络弹性(resilliancy)和网络稳定性。此外,绑定可以被结合到实际的物理芯片中。此外,控制平面中的硬件抽象层随后还可以被镜像到数据平面中,从而不需要客户创建执行相同任务的层。此外,接口管理器维护从驻留在控制平面中的路由信息库(RIB)导出的系统范围的转发信息库(FIB)。正在出现的新的下一代网络处理器还能够维护内部转发数据库(FDB)。然后,网络处理器可以基于它们的内部转发数据库以线速(wire speed)作出转发决策。网络处理器的FDB在其整体容量上要小得多。结果,网络处理器能够仅维护系统范围的FIB的一部分。当网络处理器需要转发分组时,所述网络处理器在其内部FDB中查找匹配目的地MAC或者IP地址匹配。如果网络处理器找到匹配,则网络处理器将分组转发到正确的端口。如果没有找到,则NP将分组转发到数据平面的分组处理器(handler)。分组处理器检查该分组,并检验IP栈是否可以将该转发解析到正确端口,如果不可以,则将该分组传送到接口管理器。因为接口管理器维护并更新FIB,所以其具有更高的解析该转发决策的可能性。如果接口管理器解析了该转发决策,则它更新NP FDB,并且还使用对IP的FIB的直接访问来更新IP栈的FIB。这种机制是唯一的,并且由于分组不必被转发到控制平面来进一步解析转发决策,所以该机制使得能构进行更快的转发决策和解析。只有在网络拓扑中出现新的主机、网络单元或变化时,才需要将分组转发到控制平面以进行解析。
分组处理器还截取控制分组,并将它们发送到分组处理器。然后,分组处理器检查控制分组的类型,如果这些分组针对L2(以太网型控制分组),则将所述分组传送到后端套接字层分组处理器,然后被发送到正确的L2协议以进行进一步处理。针对路由协议的控制分组遵循基于正常IP的分组转发。
当一起工作时,这些功能提供了性能上的显著提高,并且使得能够在兆兆位每秒的范围内优化能够转发分组的新一代网络处理器的转发能力。因此,以具有最小分组延迟、抖动以及漂移(wonder)的线速来执行数据流的交换与转发。
已经开发了平台集成体系结构,以便于下一代交换和路由系统的设计。平台集成体系结构提供了为了提供这种新的功能所需的控制平面和数据平面之间的更紧密的结合。该体系结构的两个主要组件是硬件抽象层(HAL)组件和驻留在数据平面中的硬件集成平面(HIP)组件。
HAL/HIP软件组件形成唯一地绑定控制平面和数据平面的硬件服务层。可以对HAL/HIP API进行扩展,以将先进的功能添加到系统中,以利用提供先进网络功能(例如,MPLS、多播以及服务质量和通信量工程)的新的网络处理器。
使用HAL/HIP硬件服务层,系统设计者仅需要提供以下组成部分:
1.HIP API和硬件驱动器的API之间的软件中介层(在数据平面中),该软件中介层将HIP API翻译成该驱动器的API。
图1是表示根据本发明的实施方式的网络交换机体系结构的图。
唯一需要开发的软件组件是硬件服务中介层100。通过使用接口管理器102维护虚拟接口和逻辑接口之间的绑定以及它们的限定(全部位于数据平面中的单个数据库中),以及通过将控制平面的硬件抽象层复制到数据平面的硬件抽象层104来实现该软件组件。
根据系统,这可以代表在系统设计中节省了40%到50%的额外费用,并潜在地减少了30%到40%的上市时间。
该数据平面的实现使得能够高度模块化、控制平面协议和应用程序与OS和交换硅平台的灵活和优化的集成。在该实现中,控制平面协议和应用程序全部从硬件、操作系统和系统基础结构中抽象出来,并且可以透明地工作在具有相同的数据平面实现的任意平台中。协议和应用程序可以独立于底层平台以颗粒的(granular)方式添加或去除。
该创新的实现基于涵盖L2端口、L3接口、集合(L2或L3)、交换的虚拟接口以及所有可能的L2/L3/VLAN/集合分级结构(hierarchy)的综合体系结构。所有这些接口和分级结构被表示成在逻辑上隔离所有硬件平台细节的控制平面。通过单个外壳命令(shell command)改变系统配置的灵活性使得能够适应快速变化的L2/L3交换的需要,特别是在网络操作者并入额外的先进功能(例如,VoIP、视频流、安全性和无线)时。
该先进的实现可以用分布式数据平面和中央冗余控制平面来构建。当具有单个管理点时,该实现自动发现硬件系统拓扑,并且在可堆栈的系统或基于框架的系统中在支持完全分布的数据平面方面选择主/从实例。
在开发新产品时,基于这种先进的数据平面体系结构的实现是在不同交换平台之间高度可移植,从而使得能够进行高度的实现再利用,并且对于快速的上市时间更加重要。这具有以下优点:
1.控制平面协议和应用程序以唯一和创新的方式从HW、OS以及系统基础结构中抽象出来,并且可以透明地跨不同的硬件平台和操作系统进行工作。在开发新产品时,基于这种先进的数据平面体系结构的实现是在不同交换平台之间高度可移植,使得能够进行高度的实现再利用,并且对于快速的上市时间更加重要。
2.协议和应用程序可以独立于底层平台以颗粒的方式添加或去除。
3.这种创新的实现基于涵盖L2端口、L3接口、集合(L2或L3)、交换的虚拟接口以及所有可能的L2/L3/VLAN/集合分层结构的“整体(holistic)”方法。以这种唯一的方法,所有这些接口和分层结构被表示成在逻辑上隔离所有硬件平台细节的控制平面。
4.这种创新的L2/L3集成方法提供了在通过单个外壳命令改变系统配置方面的灵活性,以使得能够适应快速变化的L2/L3交换的需要,特别是在网络操作者并入额外的先进功能(例如VoIP、视频流、安全性和无线)时。
5.这种创新的方法保留了以上所有的优点(与hw平台无关的控制平面、模块化的控制平面、唯一的L2/L3混合实现等),同时通过唯一的方式(在该方式中,通过仔细构造(craft)的接口管理器、分组异常处理器和HAL API来更新NP FDB和IP栈的FIB并且使条目(entry)老化(aged))使得分布式数据平面能够具有中央控制平面实现,以具有最高的性能和扩展性(scalability)。
通过使接口管理器记住虚拟接口和逻辑接口之间的绑定,并在维护始终由控制平面RIB更新的FIB的同时,维护属于虚拟接口的端口和实际的逻辑端口的状态,可以实现该优点。当实际接口关闭时,虚拟接口可以随之关闭。绑定还可以包括限定。所有这些绑定可以位于单个数据库中,从而不需要在各个地方保持多个绑定。此外,绑定可以被结合到实际的物理芯片中,并且FIB/RIB绑定可以随着网络拓扑的改变而快速更新。
控制平面的硬件抽象层随后还可以被镜像到数据平面中,从而不需要客户创建执行相同任务的层。
图2是表示在根据本发明的实施方式的网络交换机的数据平面中提供交换和路由功能的方法的流程图。可以在硬件、软件或其任意组合中执行该方法的各个动作。在200处,可以接收针对网络交换机的虚拟接口和一个或更多个逻辑接口之间的绑定的请求。该绑定可以包括与网络交换机的属于虚拟接口的端口有关的信息。在202处,可以接收针对该绑定的限定。在204处,可以在网络交换机的控制平面中的单个RIB数据库和数据平面中的导出的FIB中维护该绑定和限定。在206处,还可以在网络交换机的数据平面中的单个数据库中维护该绑定的状态。在208处,可以将该绑定链接到物理芯片。
在210处,可以确定该绑定的状态是否表示逻辑接口关闭。如果是,则在212处,可以关闭由该绑定指定的对应虚拟接口。RIB和FIB被立即更新,并且拓扑变化被传播到网络的其余部分。
尽管已经示出和描述了本发明的实施方式和应用,但是本领域技术的人员在本公开的帮助下将明白,在不偏离这里的本发明的思想的情况下,可以进行比上述更多的修改。因此,除了受所附权利要求的精神限制以外,本发明不受其他限制。
本申请要求基于Vividh Siddha、Kunihiro Ishiguro和Willie Hernandez于2005年2月25日提交的序列号为60/656,756、标题为“硬件抽象层(Hardware Abstraction Layer)”的临时申请的优先权。

Claims (25)

1.一种在网络交换机的数据平面中提供交换和路由功能的方法,所述方法包括:
接收针对所述网络交换机的虚拟接口和一个或更多个逻辑接口之间的绑定的请求;
接收针对所述绑定的限定;以及
在所述网络交换机的所述数据平面中的单个数据库中维护所述绑定和所述限定。
2.根据权利要求1所述的方法,该方法还包括:
在所述网络交换机的所述数据平面中的所述单个数据库中维护所述绑定的状态。
3.根据权利要求1所述的方法,其中,所述绑定是与所述网络交换机的属于所述虚拟接口的端口有关的信息。
4.根据权利要求2所述的方法,该方法还包括:
在所述绑定的状态表示逻辑接口关闭的情况下,关闭由所述绑定指定的对应虚拟接口。
5.根据权利要求1所述的方法,该方法还包括:
将所述绑定链接到物理芯片。
6.根据权利要求1所述的方法,该方法还包括:
将硬件抽象层从所述网络交换机的控制平面复制到所述网络交换机的所述数据平面上。
7.根据权利要求1所述的方法,其中,所述单个数据库是转发信息库,并且所述方法还包括:
从路由信息库中导出所述转发信息库。
8.根据权利要求1所述的方法,该方法还包括:
更新用于网络处理器的芯片的转发数据库和用于连接到所述网络交换机的IP栈的转发信息库。
9.一种网络交换机,该网络交换机包括:
控制平面;以及
连接到所述控制平面并且包括接口管理器的数据平面,其中,所述接口管理器被构造为:接收针对所述网络交换机的虚拟接口和一个或更多个逻辑接口之间的绑定的请求;接收针对所述绑定的限定;以及在所述网络交换机的所述数据平面中的单个数据库中维护所述绑定和所述限定。
10.根据权利要求9所述的网络交换机,其中,所述接口管理器还被构造为在所述网络交换机的所述数据平面中的所述单个数据库中维护所述绑定的状态。
11.根据权利要求9所述的网络交换机,其中,所述绑定是与所述网络交换机的属于所述虚拟接口的端口有关的信息。
12.根据权利要求10所述的网络交换机,其中,所述接口管理器还被构造为在所述绑定的状态表示逻辑接口关闭的情况下,关闭由所述绑定指定的对应虚拟接口。
13.根据权利要求9所述的网络交换机,其中,所述接口管理器还被构造为将所述绑定链接到物理芯片。
14.根据权利要求9所述的网络交换机,其中,所述控制平面包括硬件抽象层,并且所述数据平面还包括所述硬件抽象层的复制版本。
15.根据权利要求9所述的网络交换机,其中,所述单个数据库是转发信息库,并且所述接口管理器还被构造为从路由信息库中导出所述转发信息库。
16.根据权利要求9所述的网络交换机,其中,所述接口管理器还被构造为更新用于网络处理器的芯片的转发数据库和用于连接到所述网络交换机的IP栈的转发信息库。
17.一种在网络交换机的数据平面中提供交换和路由功能的设备,所述设备包括:
用于接收针对所述网络交换机的虚拟接口和一个或更多个逻辑接口之间的绑定的请求的装置;
用于接收针对所述绑定的限定的装置;以及
用于在所述网络交换机的所述数据平面中的单个数据库中维护所述绑定和所述限定的装置。
18.根据权利要求17所述的设备,该设备还包括:
用于在所述网络交换机的所述数据平面中的所述单个数据库中维护所述绑定的状态的装置。
19.根据权利要求17所述的设备,其中,所述绑定是与所述网络交换机的属于所述虚拟接口的端口有关的信息。
20.根据权利要求18所述的设备,该设备还包括:
在所述绑定的状态表示逻辑接口关闭的情况下,用于关闭由所述绑定指定的对应虚拟接口的装置。
21.根据权利要求17所述的设备,该设备还包括:
用于将所述绑定链接到物理芯片的装置。
22.根据权利要求17所述的设备,该设备还包括:
用于将硬件抽象层从所述网络交换机的控制平面复制到所述网络交换机的所述数据平面上的装置。
23.根据权利要求17所述的设备,其中,所述单个数据库是转发信息库,并且所述设备还包括:
用于从路由信息库中导出所述转发信息库的装置。
24.根据权利要求17所述的设备,该设备还包括:
用于更新用于网络处理器的芯片的转发数据库和用于连接到所述网络交换机的IP栈的转发信息库的装置。
25.一种机器可读的程序存储装置,该程序存储装置包含有可由所述机器执行用来执行在网络交换机的数据平面中提供交换和路由功能的方法的指令的程序,所述方法包括:
接收针对所述网络交换机的虚拟接口和一个或更多个逻辑接口之间的绑定的请求;
接收针对所述绑定的限定;以及
在所述网络交换机的所述数据平面中的单个数据库中维护所述绑定和所述限定。
CN2006800060720A 2005-02-25 2006-02-24 硬件抽象层 Expired - Fee Related CN101129032B (zh)

Applications Claiming Priority (5)

Application Number Priority Date Filing Date Title
US65675605P 2005-02-25 2005-02-25
US60/656,756 2005-02-25
US11/193,134 2005-07-28
US11/193,134 US8254285B2 (en) 2005-02-25 2005-07-28 Hardware abstraction layer
PCT/US2006/006792 WO2006091923A1 (en) 2005-02-25 2006-02-24 Hardware abstraction layer

Publications (2)

Publication Number Publication Date
CN101129032A true CN101129032A (zh) 2008-02-20
CN101129032B CN101129032B (zh) 2012-07-04

Family

ID=36571499

Family Applications (1)

Application Number Title Priority Date Filing Date
CN2006800060720A Expired - Fee Related CN101129032B (zh) 2005-02-25 2006-02-24 硬件抽象层

Country Status (6)

Country Link
US (1) US8254285B2 (zh)
EP (1) EP1851922A1 (zh)
JP (1) JP4714750B2 (zh)
CN (1) CN101129032B (zh)
TW (1) TW200705898A (zh)
WO (1) WO2006091923A1 (zh)

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102255799A (zh) * 2011-06-23 2011-11-23 中国人民解放军国防科学技术大学 一种支持转发和控制分离的内部网络接口映射方法及装置
CN102347900A (zh) * 2010-07-30 2012-02-08 美国博通公司 整合虚拟和物理网络交换设备到异构交换域的方法和系统
CN108322326A (zh) * 2017-06-27 2018-07-24 新华三技术有限公司 一种接口状态控制方法、报文传输方法及装置
CN114157618A (zh) * 2021-11-29 2022-03-08 上海博达数据通信有限公司 一种支持FCoE业务的数据交换模块及交换机

Families Citing this family (129)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6553005B1 (en) * 2000-07-26 2003-04-22 Pluris, Inc. Method and apparatus for load apportionment among physical interfaces in data routers
US8619771B2 (en) 2009-09-30 2013-12-31 Vmware, Inc. Private allocated networks over shared communications infrastructure
US8924524B2 (en) 2009-07-27 2014-12-30 Vmware, Inc. Automated network configuration of virtual machines in a virtual lab data environment
US8892706B1 (en) 2010-06-21 2014-11-18 Vmware, Inc. Private ethernet overlay networks over a shared ethernet in a virtual environment
US7653057B1 (en) * 2006-11-30 2010-01-26 World Wide Packets, Inc. Preventing forwarding of a packet to a control plane
CN100481051C (zh) * 2007-04-24 2009-04-22 杭州华三通信技术有限公司 通用串口总线主机控制器驱动通用适配层实现方法及装置
CA2700866C (en) 2007-09-26 2016-06-21 Martin Casado Network operating system for managing and securing networks
US9577842B2 (en) * 2008-02-25 2017-02-21 Cisco Technology, Inc. Shared L2 bridging domains for L3 virtual networks
US8195774B2 (en) 2008-05-23 2012-06-05 Vmware, Inc. Distributed virtual switch for virtualized computer systems
US20100058232A1 (en) * 2008-08-26 2010-03-04 Cisco Technology, Inc. Virtual network join protocol
EP2804350B1 (en) * 2009-04-01 2019-07-24 Nicira, Inc. Method and apparatus for implementing and managing virtual switches
US8396960B2 (en) * 2009-05-08 2013-03-12 Canon Kabushiki Kaisha Efficient network utilization using multiple physical interfaces
US8717895B2 (en) 2010-07-06 2014-05-06 Nicira, Inc. Network virtualization apparatus and method with a table mapping engine
US9680750B2 (en) 2010-07-06 2017-06-13 Nicira, Inc. Use of tunnels to hide network addresses
US9525647B2 (en) 2010-07-06 2016-12-20 Nicira, Inc. Network control apparatus and method for creating and modifying logical switching elements
US8964528B2 (en) 2010-07-06 2015-02-24 Nicira, Inc. Method and apparatus for robust packet distribution among hierarchical managed switching elements
US10103939B2 (en) 2010-07-06 2018-10-16 Nicira, Inc. Network control apparatus and method for populating logical datapath sets
US9043452B2 (en) * 2011-05-04 2015-05-26 Nicira, Inc. Network control apparatus and method for port isolation
US9154433B2 (en) 2011-10-25 2015-10-06 Nicira, Inc. Physical controller
US9137107B2 (en) 2011-10-25 2015-09-15 Nicira, Inc. Physical controllers for converting universal flows
US9203701B2 (en) 2011-10-25 2015-12-01 Nicira, Inc. Network virtualization apparatus and method with scheduling capabilities
US9288104B2 (en) 2011-10-25 2016-03-15 Nicira, Inc. Chassis controllers for converting universal flows
WO2013072773A2 (en) * 2011-11-18 2013-05-23 Marvell World Trade Ltd. Data path acceleration using hw virtualization
US8683028B2 (en) * 2012-03-09 2014-03-25 Ciena Corporation Generic multi-layer provisioning service management layer systems and methods
AU2013249152B2 (en) 2012-04-18 2016-04-28 Nicira, Inc. Using transactions to minimize churn in a distributed network control system
US9231892B2 (en) 2012-07-09 2016-01-05 Vmware, Inc. Distributed virtual switch configuration and state management
JP5995279B2 (ja) * 2012-10-24 2016-09-21 日本電気株式会社 ネットワーク機器、方法、及びプログラム
US9172604B1 (en) 2013-02-25 2015-10-27 Google Inc. Target mapping and implementation of abstract device model
US8929362B1 (en) * 2013-02-25 2015-01-06 Google Inc. Capability negotiation for abstract candidate device model
US9166912B2 (en) 2013-02-25 2015-10-20 Google Inc. Translating network forwarding plane models into target implementation using sub models and hints
US9432215B2 (en) 2013-05-21 2016-08-30 Nicira, Inc. Hierarchical network managers
US9571386B2 (en) 2013-07-08 2017-02-14 Nicira, Inc. Hybrid packet processing
US9350657B2 (en) 2013-07-08 2016-05-24 Nicira, Inc. Encapsulating data packets using an adaptive tunnelling protocol
US10218564B2 (en) 2013-07-08 2019-02-26 Nicira, Inc. Unified replication mechanism for fault-tolerance of state
US9559870B2 (en) 2013-07-08 2017-01-31 Nicira, Inc. Managing forwarding of logical network traffic between physical domains
US9282019B2 (en) 2013-07-12 2016-03-08 Nicira, Inc. Tracing logical network packets through physical network
US9407580B2 (en) 2013-07-12 2016-08-02 Nicira, Inc. Maintaining data stored with a packet
US9197529B2 (en) 2013-07-12 2015-11-24 Nicira, Inc. Tracing network packets through logical and physical networks
CN103428301B (zh) * 2013-08-05 2016-08-10 北京神州绿盟信息安全科技股份有限公司 一种接口系统及其对数据包进行处理的方法
US9952885B2 (en) 2013-08-14 2018-04-24 Nicira, Inc. Generation of configuration files for a DHCP module executing within a virtualized container
US9887960B2 (en) 2013-08-14 2018-02-06 Nicira, Inc. Providing services for logical networks
US9973382B2 (en) 2013-08-15 2018-05-15 Nicira, Inc. Hitless upgrade for network control applications
US9577845B2 (en) 2013-09-04 2017-02-21 Nicira, Inc. Multiple active L3 gateways for logical networks
US9503371B2 (en) 2013-09-04 2016-11-22 Nicira, Inc. High availability L3 gateways for logical networks
US9674087B2 (en) 2013-09-15 2017-06-06 Nicira, Inc. Performing a multi-stage lookup to classify packets
US9602398B2 (en) 2013-09-15 2017-03-21 Nicira, Inc. Dynamically generating flows with wildcard fields
US9485185B2 (en) 2013-09-24 2016-11-01 Nicira, Inc. Adjusting connection validating control signals in response to changes in network traffic
US9596126B2 (en) 2013-10-10 2017-03-14 Nicira, Inc. Controller side method of generating and updating a controller assignment list
US9910686B2 (en) 2013-10-13 2018-03-06 Nicira, Inc. Bridging between network segments with a logical router
US10063458B2 (en) 2013-10-13 2018-08-28 Nicira, Inc. Asymmetric connection with external networks
US10158538B2 (en) 2013-12-09 2018-12-18 Nicira, Inc. Reporting elephant flows to a network controller
US9967199B2 (en) 2013-12-09 2018-05-08 Nicira, Inc. Inspecting operations of a machine to detect elephant flows
US9569368B2 (en) 2013-12-13 2017-02-14 Nicira, Inc. Installing and managing flows in a flow table cache
US9996467B2 (en) 2013-12-13 2018-06-12 Nicira, Inc. Dynamically adjusting the number of flows allowed in a flow table cache
US9225597B2 (en) 2014-03-14 2015-12-29 Nicira, Inc. Managed gateways peering with external router to attract ingress packets
US9313129B2 (en) 2014-03-14 2016-04-12 Nicira, Inc. Logical router processing by network controller
US9590901B2 (en) 2014-03-14 2017-03-07 Nicira, Inc. Route advertisement by managed gateways
US9419855B2 (en) 2014-03-14 2016-08-16 Nicira, Inc. Static routes for logical routers
US9503321B2 (en) 2014-03-21 2016-11-22 Nicira, Inc. Dynamic routing for logical routers
US9647883B2 (en) 2014-03-21 2017-05-09 Nicria, Inc. Multiple levels of logical routers
US9893988B2 (en) 2014-03-27 2018-02-13 Nicira, Inc. Address resolution using multiple designated instances of a logical router
US9413644B2 (en) 2014-03-27 2016-08-09 Nicira, Inc. Ingress ECMP in virtual distributed routing environment
US9686200B2 (en) 2014-03-31 2017-06-20 Nicira, Inc. Flow cache hierarchy
US10193806B2 (en) 2014-03-31 2019-01-29 Nicira, Inc. Performing a finishing operation to improve the quality of a resulting hash
US9385954B2 (en) 2014-03-31 2016-07-05 Nicira, Inc. Hashing techniques for use in a network environment
US10164894B2 (en) 2014-05-05 2018-12-25 Nicira, Inc. Buffered subscriber tables for maintaining a consistent network state
US9742881B2 (en) 2014-06-30 2017-08-22 Nicira, Inc. Network virtualization using just-in-time distributed capability for classification encoding
US9858100B2 (en) 2014-08-22 2018-01-02 Nicira, Inc. Method and system of provisioning logical networks on a host machine
US10020960B2 (en) 2014-09-30 2018-07-10 Nicira, Inc. Virtual distributed bridging
US9768980B2 (en) 2014-09-30 2017-09-19 Nicira, Inc. Virtual distributed bridging
US10511458B2 (en) 2014-09-30 2019-12-17 Nicira, Inc. Virtual distributed bridging
US10250443B2 (en) 2014-09-30 2019-04-02 Nicira, Inc. Using physical location to modify behavior of a distributed virtual network element
US11178051B2 (en) 2014-09-30 2021-11-16 Vmware, Inc. Packet key parser for flow-based forwarding elements
US10469342B2 (en) 2014-10-10 2019-11-05 Nicira, Inc. Logical network traffic analysis
CN105824295A (zh) * 2015-01-08 2016-08-03 中国航天科工集团第四研究院指挥自动化技术研发与应用中心 一种硬件设备控制方法、装置及系统
US10079779B2 (en) 2015-01-30 2018-09-18 Nicira, Inc. Implementing logical router uplinks
US10038628B2 (en) 2015-04-04 2018-07-31 Nicira, Inc. Route server mode for dynamic routing between logical and physical networks
US9967134B2 (en) 2015-04-06 2018-05-08 Nicira, Inc. Reduction of network churn based on differences in input state
US10348625B2 (en) 2015-06-30 2019-07-09 Nicira, Inc. Sharing common L2 segment in a virtual distributed router environment
US10129142B2 (en) 2015-08-11 2018-11-13 Nicira, Inc. Route configuration for logical router
US10075363B2 (en) 2015-08-31 2018-09-11 Nicira, Inc. Authorization for advertised routes among logical routers
US10204122B2 (en) 2015-09-30 2019-02-12 Nicira, Inc. Implementing an interface between tuple and message-driven control entities
US10095535B2 (en) 2015-10-31 2018-10-09 Nicira, Inc. Static route types for logical routers
US10333849B2 (en) 2016-04-28 2019-06-25 Nicira, Inc. Automatic configuration of logical routers on edge nodes
US10841273B2 (en) 2016-04-29 2020-11-17 Nicira, Inc. Implementing logical DHCP servers in logical networks
US10484515B2 (en) 2016-04-29 2019-11-19 Nicira, Inc. Implementing logical metadata proxy servers in logical networks
US11019167B2 (en) 2016-04-29 2021-05-25 Nicira, Inc. Management of update queues for network controller
US10091161B2 (en) 2016-04-30 2018-10-02 Nicira, Inc. Assignment of router ID for logical routers
US10560320B2 (en) 2016-06-29 2020-02-11 Nicira, Inc. Ranking of gateways in cluster
US10153973B2 (en) 2016-06-29 2018-12-11 Nicira, Inc. Installation of routing tables for logical router in route server mode
US10454758B2 (en) 2016-08-31 2019-10-22 Nicira, Inc. Edge node cluster network redundancy and fast convergence using an underlay anycast VTEP IP
US10341236B2 (en) 2016-09-30 2019-07-02 Nicira, Inc. Anycast edge service gateways
US10237123B2 (en) 2016-12-21 2019-03-19 Nicira, Inc. Dynamic recovery from a split-brain failure in edge nodes
US10742746B2 (en) 2016-12-21 2020-08-11 Nicira, Inc. Bypassing a load balancer in a return path of network traffic
US10212071B2 (en) 2016-12-21 2019-02-19 Nicira, Inc. Bypassing a load balancer in a return path of network traffic
US10616045B2 (en) 2016-12-22 2020-04-07 Nicira, Inc. Migration of centralized routing components of logical router
US10200306B2 (en) 2017-03-07 2019-02-05 Nicira, Inc. Visualization of packet tracing operation results
US10681000B2 (en) 2017-06-30 2020-06-09 Nicira, Inc. Assignment of unique physical network addresses for logical network addresses
US10637800B2 (en) 2017-06-30 2020-04-28 Nicira, Inc Replacement of logical network addresses with physical network addresses
US10756969B2 (en) * 2017-08-15 2020-08-25 Nicira, Inc. Disruption minimization for guests when applying changes to a data plane of a packet handler in a host
US10608887B2 (en) 2017-10-06 2020-03-31 Nicira, Inc. Using packet tracing tool to automatically execute packet capture operations
DE102017219899A1 (de) 2017-11-09 2019-05-09 Audi Ag Sicherer Betrieb einer Software-Applikation in einem Steuergerät eines Fahrzeugs
US10511459B2 (en) 2017-11-14 2019-12-17 Nicira, Inc. Selection of managed forwarding element for bridge spanning multiple datacenters
US10374827B2 (en) 2017-11-14 2019-08-06 Nicira, Inc. Identifier that maps to different networks at different datacenters
US11184327B2 (en) 2018-07-05 2021-11-23 Vmware, Inc. Context aware middlebox services at datacenter edges
US10999220B2 (en) 2018-07-05 2021-05-04 Vmware, Inc. Context aware middlebox services at datacenter edge
CN109446677B (zh) * 2018-11-02 2023-07-14 南京贝伦思网络科技股份有限公司 基于网络芯片的通用平台及其搭建方法
US10931560B2 (en) 2018-11-23 2021-02-23 Vmware, Inc. Using route type to determine routing protocol behavior
US10735541B2 (en) 2018-11-30 2020-08-04 Vmware, Inc. Distributed inline proxy
US10797998B2 (en) 2018-12-05 2020-10-06 Vmware, Inc. Route server for distributed routers using hierarchical routing protocol
US10938788B2 (en) 2018-12-12 2021-03-02 Vmware, Inc. Static routes for policy-based VPN
US11095480B2 (en) 2019-08-30 2021-08-17 Vmware, Inc. Traffic optimization using distributed edge services
US11095545B2 (en) 2019-10-22 2021-08-17 Vmware, Inc. Control packet management
US11641305B2 (en) 2019-12-16 2023-05-02 Vmware, Inc. Network diagnosis in software-defined networking (SDN) environments
US11283699B2 (en) 2020-01-17 2022-03-22 Vmware, Inc. Practical overlay network latency measurement in datacenter
US11616755B2 (en) 2020-07-16 2023-03-28 Vmware, Inc. Facilitating distributed SNAT service
US11606294B2 (en) 2020-07-16 2023-03-14 Vmware, Inc. Host computer configured to facilitate distributed SNAT service
US11611613B2 (en) 2020-07-24 2023-03-21 Vmware, Inc. Policy-based forwarding to a load balancer of a load balancing cluster
US11451413B2 (en) 2020-07-28 2022-09-20 Vmware, Inc. Method for advertising availability of distributed gateway service and machines at host computer
US11902050B2 (en) 2020-07-28 2024-02-13 VMware LLC Method for providing distributed gateway service at host computer
US11570090B2 (en) 2020-07-29 2023-01-31 Vmware, Inc. Flow tracing operation in container cluster
US11196628B1 (en) 2020-07-29 2021-12-07 Vmware, Inc. Monitoring container clusters
US11558426B2 (en) 2020-07-29 2023-01-17 Vmware, Inc. Connection tracking for container cluster
US11736436B2 (en) 2020-12-31 2023-08-22 Vmware, Inc. Identifying routes with indirect addressing in a datacenter
US11336533B1 (en) 2021-01-08 2022-05-17 Vmware, Inc. Network visualization of correlations between logical elements and associated physical elements
US11687210B2 (en) 2021-07-05 2023-06-27 Vmware, Inc. Criteria-based expansion of group nodes in a network topology visualization
US11711278B2 (en) 2021-07-24 2023-07-25 Vmware, Inc. Visualization of flow trace operation across multiple sites
US11706109B2 (en) 2021-09-17 2023-07-18 Vmware, Inc. Performance of traffic monitoring actions
DE102021127285A1 (de) 2021-10-21 2023-04-27 Bayerische Motoren Werke Aktiengesellschaft Netzwerk

Family Cites Families (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
ATE326103T1 (de) * 1995-11-15 2006-06-15 Enterasys Networks Inc Verteilte verbindungsorientierte dienste für vermittelte fernmeldenetz
US6311288B1 (en) * 1998-03-13 2001-10-30 Paradyne Corporation System and method for virtual circuit backup in a communication network
US6385197B1 (en) * 1999-07-09 2002-05-07 Allied Telesyn International Corp. Virtual port trunking method and apparatus
US6601186B1 (en) * 2000-05-20 2003-07-29 Equipe Communications Corporation Independent restoration of control plane and data plane functions
US6639910B1 (en) * 2000-05-20 2003-10-28 Equipe Communications Corporation Functional separation of internal and external controls in network devices
US20030120822A1 (en) * 2001-04-19 2003-06-26 Langrind Nicholas A. Isolated control plane addressing
EP1388057A4 (en) * 2001-04-20 2009-07-01 Egenera Inc VIRTUAL NETWORKING SYSTEM AND PROCESS IN A PROCESSING SYSTEM
US7212526B2 (en) * 2002-01-18 2007-05-01 Hitachi, Ltd. Method and apparatus for composing virtual links in a label switched network
US6907039B2 (en) * 2002-07-20 2005-06-14 Redback Networks Inc. Method and apparatus for routing and forwarding between virtual routers within a single network element
FI20021832A0 (fi) * 2002-10-15 2002-10-15 Nokia Corp Menetelmä ja järjestelmä pakettidatan reitittämiseksi ja vuon valvomiseksi
US7489700B2 (en) * 2002-11-20 2009-02-10 Hitachi Communication Technologies, Ltd. Virtual access router

Cited By (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102347900A (zh) * 2010-07-30 2012-02-08 美国博通公司 整合虚拟和物理网络交换设备到异构交换域的方法和系统
US9118591B2 (en) 2010-07-30 2015-08-25 Broadcom Corporation Distributed switch domain of heterogeneous components
CN102347900B (zh) * 2010-07-30 2016-06-01 美国博通公司 整合虚拟和物理网络交换设备到异构交换域的方法和系统
CN102255799A (zh) * 2011-06-23 2011-11-23 中国人民解放军国防科学技术大学 一种支持转发和控制分离的内部网络接口映射方法及装置
CN102255799B (zh) * 2011-06-23 2015-04-08 中国人民解放军国防科学技术大学 一种支持转发和控制分离的内部网络接口映射方法及装置
CN108322326A (zh) * 2017-06-27 2018-07-24 新华三技术有限公司 一种接口状态控制方法、报文传输方法及装置
WO2019001398A1 (zh) * 2017-06-27 2019-01-03 新华三技术有限公司 虚拟网卡接口的状态控制和报文传输
CN108322326B (zh) * 2017-06-27 2021-02-26 新华三技术有限公司 一种接口状态控制方法、报文传输方法及装置
CN114157618A (zh) * 2021-11-29 2022-03-08 上海博达数据通信有限公司 一种支持FCoE业务的数据交换模块及交换机

Also Published As

Publication number Publication date
JP4714750B2 (ja) 2011-06-29
WO2006091923A1 (en) 2006-08-31
EP1851922A1 (en) 2007-11-07
TW200705898A (en) 2007-02-01
JP2008532390A (ja) 2008-08-14
CN101129032B (zh) 2012-07-04
US8254285B2 (en) 2012-08-28
US20060193266A1 (en) 2006-08-31

Similar Documents

Publication Publication Date Title
CN101129032B (zh) 硬件抽象层
US11824749B2 (en) System and method for allowing multiple global identifier (GID) subnet prefix values concurrently for incoming packet processing in a high performance computing environment
US20220263892A1 (en) System and method for supporting heterogeneous and asymmetric dual rail fabric configurations in a high performance computing environment
US11140065B2 (en) System and method for supporting VM migration between subnets in a high performance computing environment
US11082543B2 (en) System and method for supporting shared multicast local identifiers (MLID) ranges in a high performance computing environment
US11233698B2 (en) System and method for supporting subnet number aliasing in a high performance computing environment
JP6445015B2 (ja) ミドルウェアおよびアプリケーションの実行のためにエンジニアド・システムにおいてデータサービスを提供するためのシステムおよび方法
US7133929B1 (en) System and method for providing detailed path information to clients
US11496402B2 (en) System and method for supporting aggressive credit waiting in a high performance computing environment
US10348847B2 (en) System and method for supporting proxy based multicast forwarding in a high performance computing environment
WO2018175771A1 (en) System and method to provide multicast group membership defined relative to partition membership in a high performance computing environment
CN116158063A (zh) 多边以太信道(meec)创建和管理
CN104754025A (zh) 可编程分布式联网
Casado et al. Ripcord: A modular platform for data center networking
US10348649B2 (en) System and method for supporting partitioned switch forwarding tables in a high performance computing environment
US10355972B2 (en) System and method for supporting flexible P_Key mapping in a high performance computing environment
US11102108B2 (en) System and method for a multicast send duplication instead of replication in a high performance computing environment
US10666611B2 (en) System and method for supporting multiple concurrent SL to VL mappings in a high performance computing environment
US20050071452A1 (en) Method of migrating active general service manager function
US10333894B2 (en) System and method for supporting flexible forwarding domain boundaries in a high performance computing environment

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
C14 Grant of patent or utility model
GR01 Patent grant
C17 Cessation of patent right
CF01 Termination of patent right due to non-payment of annual fee

Granted publication date: 20120704

Termination date: 20140224