JP7593501B2 - COMMUNICATION SYSTEM, COMMUNICATION METHOD, AND COMMUNICATION PROGRAM - Google Patents
COMMUNICATION SYSTEM, COMMUNICATION METHOD, AND COMMUNICATION PROGRAM Download PDFInfo
- Publication number
- JP7593501B2 JP7593501B2 JP2023543554A JP2023543554A JP7593501B2 JP 7593501 B2 JP7593501 B2 JP 7593501B2 JP 2023543554 A JP2023543554 A JP 2023543554A JP 2023543554 A JP2023543554 A JP 2023543554A JP 7593501 B2 JP7593501 B2 JP 7593501B2
- Authority
- JP
- Japan
- Prior art keywords
- path
- overlay
- search
- network
- packet
- 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.)
- Active
Links
Images
Classifications
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L43/00—Arrangements for monitoring or testing data switching networks
Landscapes
- Engineering & Computer Science (AREA)
- Computer Networks & Wireless Communication (AREA)
- Signal Processing (AREA)
- Data Exchanges In Wide-Area Networks (AREA)
Description
本発明は、通信システム、通信方法及び通信プログラムに関する。 The present invention relates to a communication system, a communication method and a communication program.
ISP(Internet Service Provider)のIP(Internet Protocol)ネットワークを介して複数の拠点にあるサブネットワークを1つのIPサブネットに統合する際、VPN(Virtual Private Network)を構築する必要がある。この拠点内サブネットを統合するための技術として、VXLAN(Virtual eXtensible Local Area Network)が注目を集めている。 When integrating subnetworks at multiple bases into a single IP subnet via an ISP's (Internet Service Provider's) IP (Internet Protocol) network, it is necessary to build a VPN (Virtual Private Network). VXLAN (Virtual eXtensible Local Area Network) is attracting attention as a technology for integrating subnets within such bases.
VXLANは、拠点とIPネットワークの接点にあたるゲートウェイとの間にTCP(Transmission Control Protocol)/IPのL4プロトコルであるUDP(User Datagram Protocol)のパスを設定し、サブネット間を通過するトラヒックをUDPでカプセル化することによって転送する技術である。 VXLAN is a technology that sets up a path of UDP (User Datagram Protocol), an L4 protocol of TCP (Transmission Control Protocol)/IP, between a base station and a gateway that serves as the interface between the IP network, and transfers traffic passing between subnets by encapsulating it in UDP.
あるサブネットから別のサブネットへ転送されるIPパケットは、発側サブネットのゲートウェイでUDPパケットへとカプセリングにより変換される。UDPパケットは、IPフォワーディングにより着側ゲートウェイへと転送される。パケットを受け取った着側ゲートウェイは、UDPヘッダを削除したのち、元のIPパケットに添付されたIPアドレスに従って宛先へと転送される。このようなUDPトラヒックを2拠点間で結ぶトンネルを、UDPトンネルと呼ぶ。 IP packets forwarded from one subnet to another are encapsulated into UDP packets at the gateway of the originating subnet. The UDP packets are forwarded to the destination gateway by IP forwarding. The destination gateway receives the packets, deletes the UDP header, and then forwards them to the destination according to the IP address attached to the original IP packet. A tunnel that connects such UDP traffic between two locations is called a UDP tunnel.
ISPネットワークにおいてトラヒック輻輳が発生すると、パケットロスや転送遅延の増加を招く。そこで、トラヒック輻輳を回避する技術として、マルチパス転送技術が提案されている。 When traffic congestion occurs in an ISP network, it leads to increased packet loss and transmission delays. Therefore, multipath transmission technology has been proposed as a technology to avoid traffic congestion.
マルチパス転送技術は、ネットワークにおいて特定の2つのルータ間を結ぶ経路が複数存在する場合に、優先度が同程度の経路間で同程度のトラヒックが流れるようにパケットの転送先を振り分ける技術である。 Multipath forwarding technology is a technique that distributes the destination of packets when there are multiple routes connecting two specific routers in a network so that equal traffic flows between routes with similar priority.
パケット転送装置であるルータやスイッチは、トラヒックの転送経路を発見するルーチングプロトコルにより優先度が同程度の経路を発見すると、パケットの送信元アドレス、送信先アドレス及びポートなど、パケットヘッダにある情報を基に、振り分け先となる経路を選択する。この選択方法として、ヘッダ情報からハッシュ値を計算し、計算したハッシュ値を基に振り分け先を決める方法が主に使用される。When a packet forwarding device such as a router or switch finds routes with similar priority using a routing protocol that finds a forwarding route for traffic, it selects the route to which the packet should be distributed based on information in the packet header, such as the source address, destination address, and port. The most commonly used method for this selection is to calculate a hash value from the header information and then determine the distribution destination based on the calculated hash value.
VXLANにおけるUDPトンネルも同様の方法を用いてマルチパス転送を行うことが可能である。図16は、VXLANにおけるUDPトンネルにおけるマルチパス転送を説明する図である。図17は、転送パケットフォーマットを説明する図である。 Multipath forwarding can also be performed using a similar method for UDP tunnels in VXLAN. Figure 16 is a diagram explaining multipath forwarding in a UDP tunnel in VXLAN. Figure 17 is a diagram explaining the forwarding packet format.
図16及び図17に示すように、2拠点間を結ぶUDPトンネルが複数の経路を有する場合、ルータは、それぞれの経路を決定するために、UDPパケットヘッダ、並びに、UDPを運ぶIPパケットヘッダの情報からハッシュ値を計算する。そして、ルータは、計算したハッシュ値を基に、経路上のルータやスイッチが振り分け先経路を決定する。例えば、ハッシュ関数として、ハッシュ関数=UDP Src Port%2を用いる。%は、剰余を計算する。 As shown in Figures 16 and 17, when a UDP tunnel connecting two bases has multiple routes, the router calculates a hash value from information in the UDP packet header and the IP packet header carrying UDP to determine each route. Then, based on the calculated hash value, the router and switches on the route determine the destination route. For example, the hash function used is Hash Function = UDP Src Port%2. % calculates the remainder.
ルータは、計算したハッシュの数字が付与された出力ポート(例えば、output Port 0、output Port 1)にパケットを出力する。ハッシュ値を計算する情報として5-tupleを使用する場合、UDPヘッダのUDP source port IDを変えることにより、ハッシュ値が変わる。これは、トンネルの始点と終点となるゲートウェイのIPアドレスが、経路によらず同じで、かつ、UDP destination port IDは、終点ゲートウェイでUDPヘッダを外すためのサインであるプロトコル番号を示すためである。
The router outputs the packet to an output port (for example,
理想的な負荷分散状態は、2拠点間のトラヒック流量が最大であり、リンク間の帯域利用率が均等である状態である。図18及び図19は、負荷分散状態について説明する図である。他のトラヒックがあるとトラヒック流量が少なくなるため(図18の(1))、理想的な負荷分散を実現するには、リンク共有が生じない経路を通るパス間でトラヒックを分散し(図18の(2))、パスの共有リンクでパス間のトラヒック流量を調節することが望ましい。 The ideal load balancing state is one in which the traffic flow between two locations is at its maximum and the bandwidth utilization rate between the links is equal. Figures 18 and 19 are diagrams explaining the load balancing state. Since the traffic flow rate decreases when there is other traffic (Figure 18 (1)), in order to achieve ideal load balancing, it is desirable to distribute the traffic between paths that pass through routes where no link sharing occurs (Figure 18 (2)) and adjust the traffic flow rate between the paths at the shared links of the paths.
振り分け先となる複数経路が同一のリンクを共有しない場合、マルチパス転送技術による負荷分散を適切に実行できる。従来技術では、個々の経路について、tracerouteなどのツールを用いることで、経路が通過するルータを調査することが可能である。 If multiple routes to which traffic is to be distributed do not share the same link, multipath forwarding technology can properly distribute the load. With conventional technology, it is possible to investigate the routers that a route passes through by using tools such as traceroute for each route.
しかしながら、従来技術では、複数の経路に対し、複数の経路が通過する同一リンクを検知することや、複数の経路のうち、同一リンクを通過する経路の個数をカウントすることはできなかった。このため、従来技術では、複数の経路に対し、実際に負荷分散できているのか保証できなかった。 However, with conventional technology, it was not possible to detect the same link through which multiple routes pass, or to count the number of routes that pass through the same link. As a result, with conventional technology, it was not possible to guarantee that load balancing was actually achieved across multiple routes.
具体的には、ルータが独自ポリシーで出力先を決めているため、経路の始まりではリンク共有がない状態であっても(図19の(1))、経路の中途で、大容量トラヒックが流れるリンクを通過する場合(図19の(2))や、同一のリンクを通過するリンク共有が生じる場合(図19の(3))があった。特にオーバレイネットワークにおいては、オーバレイネットワークのパスで経路を振り分け、負荷分散を行ったとしても、或いは、複数のオーバレイネットワークでそれぞれのパスに対して経路を振り分けたとしても、アンダーレイネットワークでは、経路の中途で、大容量トラヒックが流れるリンクを通過する場合や、リンク共有が生じる場合があった。 Specifically, because routers determine the output destination using their own policies, even if there is no link sharing at the beginning of the route ((1) in Figure 19), the route may pass a link through which large volume traffic flows ((2) in Figure 19) or link sharing through the same link may occur ((3) in Figure 19). In particular, in overlay networks, even if routes are assigned to paths in the overlay network and load balancing is performed, or routes are assigned to each path in multiple overlay networks, in the underlay network, routes may pass a link through which large volume traffic flows or link sharing may occur.
本発明は、上記に鑑みてなされたものであって、オーバレイネットワークの複数の分散候補パスのアンダーレイネットワークにおける経路を検知することができる通信システム、通信装置及び通信プログラムを提供することを目的とする。The present invention has been made in consideration of the above, and aims to provide a communication system, a communication device, and a communication program capable of detecting routes in an underlay network for multiple distributed candidate paths in an overlay network.
上述した課題を解決し、目的を達成するために、本発明に係る通信システムは、複数のネットワークを統合し、単一のアドレス体系に従いパケット転送を行うネットワークであって、かつ、その一部に当該ネットワークとは異なるアドレス体系のアンダーレイネットワーク上に設定されたオーバレイパスから成るオーバレイネットワークを組み込むネットワークを有する通信システムであって、アンダーレイネットワークのパケット転送装置は、アンダーレイネットワークと他のネットワークとの境界に位置する同一の境界パケット転送装置へ向かう出力経路として複数の経路が登録されている場合には、オーバレイパスを通過するパケットが有する転送用情報を基に該パケットの出力経路を決定するとともに、自装置の識別子を、検索対象となる検索用パスを経由する検索用パケットに記載し、オーバレイネットワークの分散候補のオーバレイパスである分散候補パスのうち、検索対象となる検索用パスを選択し、選択した検索用パスを経由する検索用パケットを送信する選択部と、戻ってきた検索用パケットに記載された識別子を基に、検索用パスのアンダーレイネットワークにおける装置及びリンクを検索する検索部と、検索部による複数の検索用パケットに対する検索結果を基に、始点及び終点が同じオーバレイパスのうち、一部或いは全ての経路において、通過するパケット転送装置とリンクとが異なるオーバレイパス群を検知する検知部と、を有することを特徴とする。In order to solve the above-mentioned problems and achieve the object, the communication system according to the present invention is a network that integrates multiple networks and forwards packets according to a single address system, and has a network that incorporates an overlay network consisting of overlay paths set up on an underlay network of an address system different from that of the network in question, and when multiple routes are registered as output routes to the same boundary packet forwarding device located on the boundary between the underlay network and another network, the packet forwarding device of the underlay network determines the output route of the packet based on forwarding information held by the packet passing through the overlay path. The system is characterized by having a selection unit that determines the search path to be searched, writes an identifier of its own device in a search packet that passes through the search path to be searched, selects the search path to be searched from among the distributed candidate paths that are overlay paths of distributed candidates in the overlay network, and transmits the search packet that passes through the selected search path; a search unit that searches for devices and links in the underlay network of the search path based on the identifier written in the returned search packet; and a detection unit that detects overlay paths that have the same starting and ending points and that pass through different packet forwarding devices and links in some or all of the routes based on the search results of the search unit for multiple search packets.
本発明によれば、オーバレイネットワークの複数の分散候補パスのアンダーレイネットワークにおける経路を検知することができる。 According to the present invention, it is possible to detect routes in an underlay network for multiple distributed candidate paths in an overlay network.
以下、図面を参照して、本発明の一実施形態を詳細に説明する。なお、この実施形態により本発明が限定されるものではない。また、図面の記載において、同一部分には同一の符号を付して示している。Hereinafter, one embodiment of the present invention will be described in detail with reference to the drawings. Note that the present invention is not limited to this embodiment. In addition, in the description of the drawings, the same parts are indicated by the same reference numerals.
[実施の形態]
本実施の形態では、アンダーレイネットワークとその他のネットワークの境界に位置するパケット転送装置(例えば、ルータ)がオーバレイネットワークの分散候補パスに対して検索用パケットを送信し、途中で経過するアンダーレイネットワークのルータがルータ自身の識別子(例えば、IPアドレス)を検索用パケットに記載する。
[Embodiment]
In this embodiment, a packet forwarding device (e.g., a router) located at the boundary between the underlay network and other networks sends a search packet to a candidate distribution path in the overlay network, and routers in the underlay network that pass along the way include their own identifiers (e.g., IP addresses) in the search packet.
実施の形態では、この検索用パケットを基に、各分散候補パスがアンダーレイネットワークのどのルータを経由するかといったパスの経路、すなわち、オーバレイネットワークの複数の分散候補パスのアンダーレイネットワークにおける経路を検知することを可能とする。実施の形態では、複数の経路に対し、複数の経路が通過するアンダーレイネットワークにおける同一リンクを検知することや、複数の経路のうち、アンダーレイネットワークにおける同一リンクを通過する経路の個数をカウントすることが可能になる。In the embodiment, based on this search packet, it is possible to detect the path route, such as which router in the underlay network each distribution candidate path passes through, i.e., the routes in the underlay network of multiple distribution candidate paths in the overlay network. In the embodiment, it is possible to detect the same link in the underlay network through which multiple paths pass, and to count the number of paths that pass through the same link in the underlay network among multiple paths.
[通信システム]
次に、実施の形態に係る通信システムについて説明する。図1は、実施の形態に係る通信システムの構成の一例を模式的に示す図である。
[Communication system]
Next, a communication system according to an embodiment will be described with reference to Fig. 1. Fig. 1 is a diagram showing an example of the configuration of a communication system according to an embodiment.
図1に示すように、実施の形態に係る通信システム100は、複数のネットワークを統合し、単一のアドレス体系に従いパケット転送を行うネットワークであって、かつ、その一部に当該ネットワークとは異なるアドレス体系のアンダーレイネットワーク(Underlay network)上に設定されたオーバレイパスから成るオーバレイネットワーク(Overlay network)を組み込むネットワークを有する。アンダーレイネットワーク上には、仮想的に構築されたオーバレイネットワーク(サブネット1)が設定される。As shown in Figure 1, the
アンダーレイネットワークは、複数のネットワークを統合したネットワークで構成されている。通信システム100では、アンダーレイネットワークは、複数のルータ30が設けられた複数のネットワークであり、単一のアドレス体形に従いパケット転送を行うネットワークである。アンダーレイネットワークは、その一部に、アンダーレイネットワークとは異なるオーバレイ区間を組み込むよう統合ネットワークにおけるオーバレイパスが設定され、フローが割り当てられる。The underlay network is composed of a network that integrates multiple networks. In the
通信システム100は、オーバレイネットワークである2つのサブネット1間に対し、VXLANを使ってVPNを構築する。図2は、転送パケットフォーマットを説明する図である。The
アンダーレイネットワークとオーバレイネットワークとの境界に位置するサブネット1のルータ20I(IPアドレス:IPI)(境界パケット転送装置)は、サブネット1間を通過するトラヒックをカプセル化する(図2参照)ことによって、ルータ20E(IPアドレス:IPE)(境界パケット転送装置)にパケットを転送する。具体的には、ルータ20Iは、サーバ10-1(IPアドレス:IPsrc1)から発信されたパケットを、UDPパケットへとカプセル化する。UDPパケットは、ルータ20Eへと転送される。ルータ20Eは、受信したパケットからUDPヘッダを削除したのち、元のパケットに添付されたIPアドレスに従って宛先であるサーバ11-1(IPアドレス:IPdst1)に転送する。
通信システム100では、ルータ20Iが、オーバレイネットワークの分散対象のオーバレイパスに対して実際にトラヒックフローを割り当てる前に、分散対象の各オーバレイパスの経路を検知する。In the
ルータ20Iは、オーバレイネットワークの分散候補である分散候補パスのうち、検索対象となる検索用パスを選択し、選択した検索用パスを経由する検索用パケットを送信する。そして、ルータ20Iは、戻ってきた複数の検索用パケットを基に、分散候補パスが、アンダーレイネットワークのどのルータを経由するかといったパスの経路、すなわち、オーバレイネットワークの複数の分散候補パスのアンダーレイネットワークにおける経路を検知する。続いて、ルータ20Iは、分散候補パスのトラヒック流量を計算し、サブネットフローを分散候補パスに割り当てる。
なお、途中で経過するアンダーレイネットワークのルータ30(パケット転送装置)は、パケットを転送する機能とともに、自装置のIPアドレスを検索用パケットに記載する機能を有する。ルータ30は、ルータ30に、同一の境界パケット転送装置(例えば、ルータ20E)に向かう出力経路が複数登録されている場合、オーバレイパスを通過するパケットが有する転送用情報を基に該パケットの出力経路を決定する。In addition, router 30 (packet forwarding device) of the underlay network that passes through on the way has the function of forwarding the packet as well as the function of including its own IP address in the search packet. If multiple output routes to the same boundary packet forwarding device (e.g.,
[ルータの構成]
次に、ルータ20Iについて説明する。図3は、図1に示すルータ20Iの構成の一例を模式的に示す図である。なお、ルータ20Eもルータ20Iと同様の構成を有する。
[Router configuration]
Next, the
図3に示すルータ20Iは、例えば、ROM(Read Only Memory)、RAM(Random Access Memory)、CPU(Central Processing Unit)等を含むコンピュータ等に所定のプログラムが読み込まれて、CPUが所定のプログラムを実行することで実現される。ルータ20Iは、通信部21、パス選択部22(選択部)、検索部23、経路検知部24(検知部)、トラヒック流量計算部25(計算部)及びフロー割り当て部26(割り当て部)を有する。
The
通信部21は、無線または有線にて他の装置との間で通信を行う。通信部51は、ネットワーク等を介して接続された他の装置との間で、各種情報を送受信する通信インタフェースである。The
パス選択部22は、オーバレイネットワークにおけるパスの経路検索のために、オーバレイネットワークの複数の分散候補パスのうち、経路の検索対象となる検索用パスを選択し、選択した検索用パスを経由する検索用パケットを送信する。パス選択部22は、統合ネットワーク内フローのパケットヘッダを基にオーバレイ区間の始点-終点ペアの間に設定しうる複数のオーバレイパスの中から、経路検索対象の検索用パスを選択する。
To search for a path in an overlay network, the
図4は、検索用パスの選択を説明する図である。図5は、VXLANフォーマットを説明する図である。図6は、検索用パスの経路検索を説明する図である。図4に示すネットワーク構成の場合、ルータ20Iからルータ20Eまでの分候補パスとして、パスP1,P2,P3がある。パス選択部22は、パスP1,P2,P3のうち、まず、検索対象のパスである検索用パスとしてパスP1を選択する。なお、パス選択部22は、検索用パスを選択する場合、総当たりで選択するほか、予め指定した回数だけランダムにUDP source port IDの番号を選出してもよい。UDP source port IDは、0から2^32(=65536)の値をとることができる。
Figure 4 is a diagram explaining the selection of a search path. Figure 5 is a diagram explaining the VXLAN format. Figure 6 is a diagram explaining route search for a search path. In the case of the network configuration shown in Figure 4, there are paths P1, P2, and P3 as candidate paths from
パス選択部22は、検索用パスを経由する検索用パケットに、パスP1と同じ5-tupleを入力する。パス選択部22は、検索用パスに対する検索用パケットをUDPトンネル用にカプセル化する。この際、パス選択部22は、ヘッダ内のUDP source port IDを変更する。具体的には、パス選択部22は、UDPヘッダのUDP source port IDにパス識別子を入れる(図5の(1))。
The
例えば、UDP source port ID=1のパス(Port1のパス)の経路が、ルータ20I,30a,30b,20Eの経路である。このパスP1を検索する場合、パス選択部22は、ヘッダ内のUDP source port IDを「1」に変えたパスを検索用パケットとする。なお、パス選択部22は、IPアドレス(src/dst)、UDP destination port ID、プロトコルIDは、変更しない。For example, the route of the path of UDP source port ID=1 (path of Port1) is the route of
パス選択部22は、検索用パケットを転送する。例えば、検索用パケットの通過経路は、ルータ20I,30a,30b,20Eを経由して、同経路でルータ20Iに戻るパスP1´である。経路途中のアンダーレイネットワークのルータ30a,30bは、検索用パケットを転送する際、検索用パケットにルータ30a,30b自身のIPアドレスを記載する。The
パス選択部22は、戻ってきた検索用パケットを受信し、検索用パケットに記載されたIPアドレスを基に、この検索用パケットが通過した経路をパステーブル(不図示)に書き込む。パス選択部22は、この検索用パケットの送信、受信及びパステーブルへの経路の書き込みを、他の分散候補パス、例えば、ルータ20I,30c,30d,20Eを経由するパスP2についても実行する。The
検索部23は、戻ってきた検索用パケットに記載されたIPアドレスを基に、検索用パスのアンダーレイネットワークにおける装置及びリンクを検索する。検索部23は、パステーブルを参照し、検索対象の分散候補パスごとに、分散候補パスのアンダーレイネットワークにおける通過装置及びリンクを検索する。The search unit 23 searches for devices and links in the underlay network of the search path based on the IP address described in the returned search packet. The search unit 23 refers to the path table and searches for transit devices and links in the underlay network of the distribution candidate path for each distribution candidate path to be searched.
経路検知部24は、検索部23による複数の検索用パスに対する検索結果を基に、分散候補パスがそれぞれアンダーレイネットワークのどのルータを経由するかといったパスの経路、すなわち、オーバレイネットワークの複数の分散候補パスの経路を検知する。経路検知部24は、始点及び終点が同じオーバレイパスであって、一部或いは全ての経路において、通過するパケット転送装置とリンクとが異なるオーバレイパス群を検知する。始点及び終点が同じオーバレイパスは、複数の経路へと分散してパケットを転送する対象となる。 The route detection unit 24 detects the path routes, such as which routers in the underlay network each of the distributed candidate paths passes through, based on the search results for the multiple search paths by the search unit 23, i.e., the routes of multiple distributed candidate paths in the overlay network. The route detection unit 24 detects overlay paths that have the same start and end points and that pass through different packet forwarding devices and links in some or all of the routes. Overlay paths that have the same start and end points are subject to packet forwarding by distributing them to multiple routes.
通信システム100では、オーバレイパスがVXLANであり、通過するパケット転送装置とリンクとが異なるオーバレイパス群を検知するときの検知対象のパスは、オーバレイパスのヘッダのうち、UDPヘッダのUDP source port IDを変更した時に生じるパスとなる。経路検知部24は、通過するパケット転送装置とリンクとが異なるオーバレイパス群を検知する場合の検知対象のパスとして、オーバレイパスのヘッダのうち、UDPヘッダのUDP source port IDを変更した場合に生じるパスを解析する。In the
なお、図7に示すように、経路検知部24は、例えば、パスP1(UDP source port ID 1)と同一経路を通過するパスP3(ルータ20I,30a,30b,20Eを通過する経路)(UDP source port ID 3)が見つかった場合、パスP3の登録を保留、或いは、分散候補パスからパスP3を除外してもよい。
As shown in FIG. 7, for example, when the route detection unit 24 finds a path P3 (route passing through
経路検知部24は、検索部23による検索結果を基に、分散候補パスがアンダーレイネットワークのそれぞれどのルータを経由するかといったパスの経路、すなわち、オーバレイネットワークの複数の分散候補パスの経路を検知する。経路検知部24は、複数の経路に対し、それぞれ通過する経路を計算し、各経路を比較することで、複数の経路が通過する同一リンクを検知することや、複数の経路のうち、同一リンクを通過する経路の個数をカウントする。The route detection unit 24 detects the routes of paths, such as which routers in the underlay network each of the distributed candidate paths passes through, i.e., the routes of multiple distributed candidate paths in the overlay network, based on the search results by the search unit 23. The route detection unit 24 calculates the routes that each of the multiple routes passes through, and by comparing each route, detects the same link that multiple routes pass through and counts the number of routes that pass through the same link among the multiple routes.
トラヒック流量計算部25は、分散候補パスの経路に対する検知結果を基に、各分散候補パスを通過する分散候補パスのトラヒック流量を計算する。トラヒック流量計算部25は、通過装置及びリンクの検索結果を集約し、経路検知部24によって検知されたオーバレイパス群に対し、各オーバレイパスを通過するトラヒック流量を変化させた場合のアンダーレイネットワーク内リンクのトラヒック流量を、通過リンクごとに集計する。トラヒック流量計算部25は、リンク帯域の上限を制約条件として、各リンクの通過トラヒック流量を計算する。The traffic flow calculation unit 25 calculates the traffic flow of each distributed candidate path based on the detection results for the route of the distributed candidate path. The traffic flow calculation unit 25 aggregates the search results for passing devices and links, and for the overlay paths detected by the route detection unit 24, counts up, for each passing link, the traffic flow of links in the underlay network when the traffic flow passing through each overlay path is changed. The traffic flow calculation unit 25 calculates the passing traffic flow of each link using the upper limit of the link bandwidth as a constraint.
図8は、トラヒック流量の計算を説明する図である。図4に示すネットワークに対し、トラヒック流量計算部25は、例えば、線形計画法を用いて、各リンクの通過トラヒック量を計算する(図8参照)。トラヒック流量計算部25は、例えば、UDP source port IDが1のパスのトラヒック流量が5Gbpsであることを計算する。
Figure 8 is a diagram explaining the calculation of traffic flow. For the network shown in Figure 4, the traffic flow calculation unit 25 calculates the passing traffic volume of each link, for example, using linear programming (see Figure 8). The traffic flow calculation unit 25 calculates that the traffic flow of the path with UDP
フロー割り当て部26は、サブネットフローを分散候補パスに割り当てる。フロー割り当て部26は、オーバレイパス用に割り当て可能なリンク帯域を、リンクを通過するバックグラウンドトラヒック量を基に計算し、計算結果に合致するようオーバレイパスに通過させる統合ネットワーク内フローを割り当てる。フロー割り当て部26は、所定のルールを用いて、割り当てたフローのトラヒック総量が割当先の候補パスのトラヒック流量を下回るように、サブネット内フローを候補パスに割り当てる。The
図9は、フローの割り当てを説明する図である。例えば、パスP2,P4は、一部でリンクを共有しているので、フロー割り当て部26は、トラヒック量を半々に割り当てる(図9の(1))。また、パスP1は、バックグラウンドトラヒックが大きいため、フロー割り当て部26は、割り当てるトラヒック量を他のパスよりも少なくする(図9の(2))。また、フロー割り当て部26は、ネットワークの負荷を最小限にするために、ナップサック問題やビンパッキング問題などの組み合わせ問題を解くアルゴリズムを使用して、サブネット内トラヒックフローを割り当ててもよい。
Figure 9 is a diagram explaining flow allocation. For example, paths P2 and P4 share some links, so the
[通信処理の処理手順]
次に、通信システム100における通信処理の処理手順について説明する。図10は、実施の形態に係る通信処理の処理手順を示すシーケンス図である。
[Communication Processing Procedure]
Next, a description will be given of a procedure of communication processing in the
図10に示すように、通信システム100では、ルータ20Iが、オーバレイネットワークの複数の分散候補パスのうち、経路検索対象の検索用パスを選択する(ステップS1)。ルータ20Iは、検索用パスに対する検索用パケットを、UDPパケットにカプセル化し(ステップS2)、UDPヘッダのUDP source port IDにパス識別子を入れる。ルータ20Iは、検索用パケットを転送する(ステップS3)。
As shown in Figure 10, in
経路途中のアンダーレイネットワークのルータ30a,30bは、検索用パケットを転送する際、検索用パケットにルータ30a,30b自身のIPアドレスを記載する(ステップS4~ステップS7)。ルータ20Eは、検索用パケットを受信すると、検索用パケットをルータ20I宛てに送信する(ステップS8)。When
ルータ30a,30bは、検索用パケットを転送する際、検索用パケットにルータ30a,30b自身のIPアドレスを記載する(ステップS9~ステップS12)。ルータ20Iは、戻ってきた検索用パケットを受信し、検索用パケットに記載されたIPアドレスを基に、この検索用パケットが通過した経路をパステーブルに書き込む(ステップS13)。ルータ20Iは、他の検索用パスについても、UDPパケットへカプセル化後、転送し、戻ってきた検索用パスを受信し、パステーブルの経路の書き込みを行う。When
ルータ20Iは、パステーブルを参照し、指定した分散候補パスごとに、分散候補パスのアンダーレイネットワークにおける通過装置やリンクを検索する(ステップS14)。そして、ルータ20Iは、検索部23による検索結果を基に、オーバレイネットワークの複数の分散候補パスの経路を検知する(ステップS15)。
続いて、ルータ20Iは、各分散候補パスを通過する分散候補パスのトラヒック流量を計算し(ステップS16)、サブネットフローを分散候補パスに割り当てる(ステップS17)。Next,
[実施の形態の効果]
このように、実施の形態では、アンダーレイネットワークとその他のネットワークの境界に位置するパケット転送装置(例えば、ルータ)がオーバレイネットワークの分散候補パスに対して検索用パケットを送信し、途中で経過するアンダーレイネットワークのルータがルータ自身のIPアドレスを検索用パケットに記載する。
[Effects of the embodiment]
Thus, in an embodiment, a packet forwarding device (e.g., a router) located at the boundary between the underlay network and other networks sends a search packet to a candidate distribution path in the overlay network, and routers in the underlay network that pass along the way include their own IP addresses in the search packet.
実施の形態では、この検索用パケットを基に、分散候補パスがそれぞれアンダーレイネットワークのどのルータを経由するかといったパスの経路、すなわち、オーバレイネットワークの複数の分散候補パスの経路を検知することを可能とする。したがって、実施の形態では、検知したオーバレイネットワークの各分散候補パスの経路を比較することで、各経路が通過する同一リンクの有無及び個数をカウントすることが可能になる。 In the embodiment, based on this search packet, it is possible to detect the path route, such as which router in the underlay network each distribution candidate path passes through, i.e., the routes of multiple distribution candidate paths in the overlay network. Therefore, in the embodiment, by comparing the routes of each distribution candidate path in the detected overlay network, it is possible to count the presence and number of identical links that each path passes through.
そして、実施の形態では、検知したオーバレイネットワークの複数の分散候補パスの経路を基に、分散候補パスが共有するリンクの帯域、及び、各リンクのバックグラウンドトラヒックから、それぞれの分散候補パスに対してトラヒックフローを割り当てる。これにより、振り分けた先のリンクの状態を考慮した分散候補パスへのフローの割当てが可能となるため、効率的な負荷分散が可能となる。 In the embodiment, based on the routes of multiple distribution candidate paths in the detected overlay network, traffic flows are assigned to each distribution candidate path based on the bandwidth of the links shared by the distribution candidate paths and the background traffic of each link. This makes it possible to assign flows to distribution candidate paths taking into account the state of the links to which they are assigned, enabling efficient load balancing.
[変形例1]
実施の形態では、ルータ20Iが、検索用のパスを選択して、検索用パスの送受信を基に、経路検知、トラヒック流量計算及びフロー割り当てを行う場合を例に説明したが、これに限らない。図11は、実施の形態に係る通信システムの構成の他の例を模式的に示す図である。
[Modification 1]
In the embodiment, the
図11に示す通信システム100Aのように、ルータ20I´,20E´は、検索用パスの送受信のみを行い、コントローラ40が、検索用のパスの選択し、ルータ20I´によって受信された検索用パスを基に、経路検知、トラヒック流量計算及びフロー割り当てを行ってもよい。As shown in the
コントローラ40は、無線または有線にて他の装置との間で通信を行う通信部41、パス選択部22、検索部23、経路検知部24、トラヒック流量計算部25及びフロー割り当て部26を有する。The controller 40 has a
コントローラ40は、検索用パスを選択すると、UDPヘッダのUDP source port IDにパス識別子を入れた、この検索用パスに対する検索用パケットの送信をルータ20I´に指示する。ルータ20I´は、戻ってきた検索用パケットをコントローラに送信する。コントローラ40は、ルータ20I´から受信した検索用パケットを基に、分散候補パスのアンダーレイネットワークにおける通過装置やリンクを検索し、複数の分散候補パスの経路を検知する。コントローラ40は、分散候補パスの経路に対する検知結果を基に、トラヒック流量計算及びフロー割り当てを行う。
When the controller 40 selects a search path, it instructs
[変形例2]
図12及び図13は、実施の形態の変形例2を説明する図である。実施の形態は、VXLAN以外のオーバレイ技術、例えば、Label(ラベル)をパケットに付加するMPLS(Multi-Protocol Label Switching)にも適用することが可能である。
[Modification 2]
12 and 13 are diagrams for explaining a second modification of the embodiment. The embodiment can be applied to an overlay technology other than VXLAN, for example, MPLS (Multi-Protocol Label Switching) that adds a label to a packet.
図12に示すように、MPLSの場合、ルータ20Iは、MPLSヘッダのラベルにパス識別子(初期値)を入れる(図12の(1))。このため、MPLSの場合、通過するパケット転送装置とリンクとが異なるオーバレイパス群を検知するときの検知対象のパスは、MPLSヘッダのラベルうちラベルの値を変更した場合に生じるパスとなる。As shown in Figure 12, in the case of MPLS,
なお、図13に示すように、MPLSの場合、ラベルの値は各ルータで書き換わる。例えば、MPLSの場合、以下のように、ラベルの値は各ルータで書き換わる。ルータ20Iにおいてラベルに入れられた34(初期ラベル値)が、ルータ30aでは34から45に書き換わり、ルータ30bでは45から23に書き換わるため、23のラベルの値でルータ20Eに到着する。このため、MPLSに適用する場合には、ルータ20Iがパスの初期ラベルと通過ルータをマップするためにオーバレイトンネルの検索用パケットに初期ラベル値を記録するフィールドが必要である。
As shown in FIG. 13, in the case of MPLS, the label value is rewritten at each router. For example, in the case of MPLS, the label value is rewritten at each router as follows. The initial label value of 34 entered in the label at
[変形例3]
また、実施の形態は、トンネリングプロトコルの一つであるGRE(Generic Routing Encapsulation)にも適用することが可能である。図14は、実施の形態の変形例3を説明する図である。
[Modification 3]
The embodiment can also be applied to GRE (Generic Routing Encapsulation), which is one of the tunneling protocols. Fig. 14 is a diagram for explaining a third modification of the embodiment.
図14に示すように、GREの場合、ルータ20Iは、GREヘッダのKeyフィールドにパス識別子を入れる(図14の(1))。なお、GREの場合、MPLSと異なり挿入したパス識別子の値は不変である。このため、GREの場合、通過するパケット転送装置とリンクとが異なるオーバレイパス群を検知するときの検知対象のパスは、オーバレイパスのヘッダのうち、GREヘッダのKeyフィールドベルのパス識別子を変更した場合に生じるパスとなる。As shown in Figure 14, in the case of GRE,
[実施の形態のシステム構成について]
ルータ20I及びコントローラ40の各構成要素は機能概念的なものであり、必ずしも物理的に図示のように構成されていることを要しない。すなわち、ルータ20I及びコントローラ40の機能の分散及び統合の具体的形態は図示のものに限られず、その全部または一部を、各種の負荷や使用状況などに応じて、任意の単位で機能的または物理的に分散または統合して構成することができる。
[System Configuration of the Embodiment]
Each component of the
また、ルータ20I及びコントローラ40においておこなわれる各処理は、全部または任意の一部が、CPU、GPU(Graphics Processing Unit)、及び、CPU、GPUにより解析実行されるプログラムにて実現されてもよい。また、ルータ20I及びコントローラ40においておこなわれる各処理は、ワイヤードロジックによるハードウェアとして実現されてもよい。In addition, each process performed in the
また、実施の形態において説明した各処理のうち、自動的におこなわれるものとして説明した処理の全部または一部を手動的に行うこともできる。もしくは、手動的におこなわれるものとして説明した処理の全部または一部を公知の方法で自動的に行うこともできる。この他、上述及び図示の処理手順、制御手順、具体的名称、各種のデータやパラメータを含む情報については、特記する場合を除いて適宜変更することができる。 Furthermore, among the processes described in the embodiments, all or part of the processes described as being performed automatically can be performed manually. Alternatively, all or part of the processes described as being performed manually can be performed automatically using known methods. In addition, the information including the processing procedures, control procedures, specific names, various data, and parameters described above and illustrated in the drawings can be changed as appropriate unless otherwise specified.
[プログラム]
図15は、プログラムが実行されることにより、ルータ20I及びコントローラ40が実現されるコンピュータの一例を示す図である。コンピュータ1000は、例えば、メモリ1010、CPU1020を有する。また、コンピュータ1000は、ハードディスクドライブインタフェース1030、ディスクドライブインタフェース1040、シリアルポートインタフェース1050、ビデオアダプタ1060、ネットワークインタフェース1070を有する。これらの各部は、バス1080によって接続される。
[program]
15 is a diagram showing an example of a computer in which a
メモリ1010は、ROM1011及びRAM1012を含む。ROM1011は、例えば、BIOS(Basic Input Output System)等のブートプログラムを記憶する。ハードディスクドライブインタフェース1030は、ハードディスクドライブ1090に接続される。ディスクドライブインタフェース1040は、ディスクドライブ1100に接続される。例えば磁気ディスクや光ディスク等の着脱可能な記憶媒体が、ディスクドライブ1100に挿入される。シリアルポートインタフェース1050は、例えばマウス1110、キーボード1120に接続される。ビデオアダプタ1060は、例えばディスプレイ1130に接続される。The
ハードディスクドライブ1090は、例えば、OS(Operating System)1091、アプリケーションプログラム1092、プログラムモジュール1093、プログラムデータ1094を記憶する。すなわち、ルータ20I及びコントローラ40の各処理を規定するプログラムは、コンピュータ1000により実行可能なコードが記述されたプログラムモジュール1093として実装される。プログラムモジュール1093は、例えばハードディスクドライブ1090に記憶される。例えば、ルータ20I及びコントローラ40における機能構成と同様の処理を実行するためのプログラムモジュール1093が、ハードディスクドライブ1090に記憶される。なお、ハードディスクドライブ1090は、SSD(Solid State Drive)により代替されてもよい。The hard disk drive 1090 stores, for example, an OS (Operating System) 1091, an
また、上述した実施の形態の処理で用いられる設定データは、プログラムデータ1094として、例えばメモリ1010やハードディスクドライブ1090に記憶される。そして、CPU1020が、メモリ1010やハードディスクドライブ1090に記憶されたプログラムモジュール1093やプログラムデータ1094を必要に応じてRAM1012に読み出して実行する。In addition, the setting data used in the processing of the above-described embodiment is stored as
なお、プログラムモジュール1093やプログラムデータ1094は、ハードディスクドライブ1090に記憶される場合に限らず、例えば着脱可能な記憶媒体に記憶され、ディスクドライブ1100等を介してCPU1020によって読み出されてもよい。あるいは、プログラムモジュール1093及びプログラムデータ1094は、ネットワーク(LAN(Local Area Network)、WAN(Wide Area Network)等)を介して接続された他のコンピュータに記憶されてもよい。そして、プログラムモジュール1093及びプログラムデータ1094は、他のコンピュータから、ネットワークインタフェース1070を介してCPU1020によって読み出されてもよい。
Note that the
以上、本発明者によってなされた発明を適用した実施の形態について説明したが、本実施の形態による本発明の開示の一部をなす記述及び図面により本発明は限定されることはない。すなわち、本実施の形態に基づいて当業者等によりなされる他の実施の形態、実施例及び運用技術等は全て本発明の範疇に含まれる。 The above describes an embodiment of the invention made by the inventor, but the present invention is not limited to the description and drawings that form part of the disclosure of the present invention according to this embodiment. In other words, other embodiments, examples, operational techniques, etc. made by those skilled in the art based on this embodiment are all included in the scope of the present invention.
100,100A 通信システム
10,10-1,10-2,11,11-1,11-2 サーバ
20I,20I´,20E,20E´,30,30a,30b,30c,30d ルータ
21,41 通信部
22 パス選択部
23 検索部
24 経路検知部
25 トラヒック流量計算部
26 フロー割り当て部
40 コントローラ
100,
Claims (7)
前記アンダーレイネットワークのパケット転送装置は、前記アンダーレイネットワークと他のネットワークとの境界に位置する同一の境界パケット転送装置へ向かう出力経路として複数の経路が登録されている場合には、前記オーバレイパスを通過するパケットが有する転送用情報を基に該パケットの出力経路を決定するとともに、自装置の識別子を、検索対象となる検索用パスを経由する検索用パケットに記載し、
前記オーバレイネットワークの分散候補のオーバレイパスである分散候補パスのうち、前記検索対象となる検索用パスを選択し、選択した検索用パスを経由する前記検索用パケットを送信する選択部と、
戻ってきた前記検索用パケットに記載された識別子を基に、前記検索用パスのアンダーレイネットワークにおける装置及びリンクを検索する検索部と、
前記検索部による複数の検索用パケットに対する検索結果を基に、始点及び終点が同じオーバレイパスのうち、一部或いは全ての経路において、通過するパケット転送装置とリンクとが異なるオーバレイパス群を検知する検知部と、
を有することを特徴とする通信システム。 A communication system having a network that integrates a plurality of networks and forwards packets according to a single address system, and that incorporates an overlay network consisting of an overlay path set on an underlay network of an address system different from that of the network,
When a plurality of routes are registered as output routes toward the same boundary packet forwarding device located at the boundary between the underlay network and another network, the packet forwarding device of the underlay network determines an output route of the packet based on forwarding information of the packet passing through the overlay path, and writes an identifier of the own device in a search packet that passes through the search path to be searched,
a selection unit that selects a search path to be searched from among distribution candidate paths that are distribution candidate overlay paths of the overlay network, and transmits the search packet via the selected search path;
a search unit that searches for devices and links in an underlay network of the search path based on an identifier described in the returned search packet;
a detection unit that detects, based on a search result for a plurality of search packets by the search unit, a group of overlay paths that have the same start point and end point and that pass through different packet forwarding devices and links in some or all of the routes;
A communication system comprising:
オーバレイパス用に割り当て可能なリンク帯域を、前記リンクを通過するバックグラウンドトラヒック量を基に計算し、計算結果に合致するようオーバレイパスに通過させるネットワーク内フローを割り当てる割り当て部と、
をさらに有することを特徴とする請求項1に記載の通信システム。 a calculation unit that calculates, for each passing link, a traffic flow rate of a link in the underlay network when a traffic flow rate passing through each overlay path is changed for the overlay paths detected by the detection unit;
an allocation unit that calculates a link bandwidth that can be allocated to an overlay path based on a background traffic volume passing through the link, and allocates an intra-network flow to be passed through the overlay path so as to match the calculation result;
2. The communication system of claim 1, further comprising:
前記通過するパケット転送装置とリンクとが異なるオーバレイパス群を検知するときの検知対象のパスは、前記オーバレイパスのヘッダのうち、UDPヘッダのUDP source port IDを変更した場合に生じるパスとなることを特徴とする請求項1または2に記載の通信システム。 The overlay path is a Virtual eXtensible Local Area Network (VXLAN),
The communication system according to claim 1 or 2, characterized in that when detecting a group of overlay paths in which the packet forwarding devices and links through which the packets pass are different, the paths to be detected are paths that arise when the UDP source port ID in the UDP header of the headers of the overlay paths is changed.
前記通過するパケット転送装置とリンクとが異なるオーバレイパス群を検知するときの検知対象のパスは、前記オーバレイパスのヘッダのうち、MPLSヘッダのラベルうちラベルの値を変更した場合に生じるパスとなることを特徴とする請求項1または2に記載の通信システム。 the overlay path is MPLS (Multi-Protocol Label Switching),
The communication system according to claim 1 or 2, characterized in that when detecting a group of overlay paths that pass through different packet forwarding devices and links, the path to be detected is a path that arises when the value of a label in the MPLS header label in the header of the overlay path is changed.
前記通過するパケット転送装置とリンクとが異なるオーバレイパス群を検知するときの検知対象のパスは、前記オーバレイパスのヘッダのうち、GREヘッダのKeyフィールドベルのパス識別子を変更した場合に生じるパスとなることを特徴とする請求項1または2に記載の通信システム。 the overlay path is a Generic Routing Encapsulation (GRE),
The communication system according to claim 1 or 2, characterized in that when detecting a group of overlay paths through which the packet forwarding devices and links passing through are different, the paths to be detected are paths that arise when a path identifier in a Key field of a GRE header in the header of the overlay path is changed.
前記アンダーレイネットワークのパケット転送装置が、前記アンダーレイネットワークと他のネットワークとの境界に位置する同一の境界パケット転送装置へ向かう出力経路として複数の経路が登録されている場合には、前記オーバレイパスを通過するパケットが有する転送用情報を基に該パケットの出力経路を決定するとともに、自装置の識別子を、検索対象となる検索用パスを経由する検索用パケットに記載する工程と、
前記通信システムに配置される装置が、前記オーバレイネットワークの分散候補のオーバレイパスである分散候補パスのうち、前記検索対象となる検索用パスを選択し、選択した検索用パスを経由する前記検索用パケットを送信する工程と、
前記通信システムに配置される装置が、戻ってきた前記検索用パケットに記載された識別子を基に、前記検索用パスのアンダーレイネットワークにおける装置及びリンクを検索する工程と、
前記通信システムに配置される装置が、複数の前記検索用パケットに対する検索結果を基に、始点及び終点が同じオーバレイパスのうち、一部或いは全ての経路において、通過するパケット転送装置とリンクとが異なるオーバレイパス群を検知する工程と、
を含んだことを特徴とする通信方法。 A communication method executed in a communication system having a network that integrates a plurality of networks and forwards packets according to a single address system, the network incorporating an overlay network consisting of an overlay path set on an underlay network of an address system different from that of the network, comprising:
When a plurality of routes are registered as output routes to the same boundary packet forwarding device located at the boundary between the underlay network and another network, the packet forwarding device of the underlay network determines an output route of the packet based on forwarding information of the packet passing through the overlay path, and writes an identifier of the own device in a search packet that passes through the search path to be searched;
A step in which a device disposed in the communication system selects a search path to be searched from among distribution candidate paths that are distribution candidate overlay paths of the overlay network, and transmits the search packet via the selected search path;
A step of searching for devices and links in an underlay network of the search path by a device located in the communication system based on an identifier described in the returned search packet;
a step of a device disposed in the communication system detecting, based on a search result for the plurality of search packets, a group of overlay paths having the same start point and end point, the group of overlay paths passing through which are different packet forwarding devices and links in a part or all of the routes;
A communication method comprising:
複数のネットワークを統合し、単一のアドレス体系に従いパケット転送を行うネットワークであって、かつ、その一部に当該ネットワークとは異なるアドレス体系のアンダーレイネットワーク上に設定されたオーバレイパスから成るオーバレイネットワークを組み込むネットワークを有する通信システムにおける前記アンダーレイネットワークのパケット転送装置としてのコンピュータに、
前記アンダーレイネットワークと他のネットワークとの境界に位置する同一の境界パケット転送装置へ向かう出力経路として複数の経路が登録されている場合には、前記オーバレイパスを通過するパケットが有する転送用情報を基に該パケットの出力経路を決定するとともに、自装置の識別子を、検索対象となる検索用パスを経由する検索用パケットに記載するステップ
を実行させ、
前記通信システムに配置される装置としてのコンピュータに、
前記オーバレイネットワークの分散候補のオーバレイパスである分散候補パスのうち、前記検索対象となる検索用パスを選択し、選択した検索用パスを経由する前記検索用パケットを送信するステップと、
前記通信システムに配置される装置が、戻ってきた前記検索用パケットに記載された識別子を基に、前記検索用パスのアンダーレイネットワークにおける装置及びリンクを検索するステップと、
複数の前記検索用パケットに対する検索結果を基に、始点及び終点が同じオーバレイパスのうち、一部或いは全ての経路において、通過するパケット転送装置とリンクとが異なるオーバレイパス群を検知するステップと、
を実行させることを特徴とする通信プログラム。 A communication program for causing a computer to execute a method,
A communication system having a network that integrates a plurality of networks and forwards packets according to a single address system, and that incorporates an overlay network consisting of an overlay path set on an underlay network of an address system different from that of the network, comprising: a computer as a packet forwarding device of the underlay network;
When a plurality of routes are registered as output routes toward the same boundary packet forwarding device located at the boundary between the underlay network and another network, the device executes a step of determining an output route of a packet based on forwarding information of the packet passing through the overlay path, and writing an identifier of the device itself in a search packet passing through the search path to be searched;
A computer as a device disposed in the communication system,
selecting a search path to be searched from among distribution candidate paths that are distribution candidate overlay paths of the overlay network, and transmitting the search packet via the selected search path;
A step in which a device located in the communication system searches for devices and links in an underlay network of the search path based on an identifier described in the returned search packet;
detecting, based on a search result for the plurality of search packets, a group of overlay paths having the same start point and end point, the group of overlay paths having different packet forwarding devices and links passing through in a part or all of the routes;
A communication program characterized by causing the program to execute the above steps.
Applications Claiming Priority (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| PCT/JP2021/031175 WO2023026402A1 (en) | 2021-08-25 | 2021-08-25 | Communication system, communication method, and communication program |
Publications (2)
| Publication Number | Publication Date |
|---|---|
| JPWO2023026402A1 JPWO2023026402A1 (en) | 2023-03-02 |
| JP7593501B2 true JP7593501B2 (en) | 2024-12-03 |
Family
ID=85321836
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| JP2023543554A Active JP7593501B2 (en) | 2021-08-25 | 2021-08-25 | COMMUNICATION SYSTEM, COMMUNICATION METHOD, AND COMMUNICATION PROGRAM |
Country Status (2)
| Country | Link |
|---|---|
| JP (1) | JP7593501B2 (en) |
| WO (1) | WO2023026402A1 (en) |
Citations (3)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| JP2010233126A (en) | 2009-03-30 | 2010-10-14 | Nec Corp | Route selecting method and system, and router used in the same |
| US20190274070A1 (en) | 2008-07-03 | 2019-09-05 | Silver Peak Systems, Inc. | Data transmission via a virtual wide area network overlay |
| WO2020112448A1 (en) | 2018-11-30 | 2020-06-04 | Cisco Technology, Inc. | End-to-end identity-aware routing across multiple administrative domains |
-
2021
- 2021-08-25 JP JP2023543554A patent/JP7593501B2/en active Active
- 2021-08-25 WO PCT/JP2021/031175 patent/WO2023026402A1/en not_active Ceased
Patent Citations (3)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20190274070A1 (en) | 2008-07-03 | 2019-09-05 | Silver Peak Systems, Inc. | Data transmission via a virtual wide area network overlay |
| JP2010233126A (en) | 2009-03-30 | 2010-10-14 | Nec Corp | Route selecting method and system, and router used in the same |
| WO2020112448A1 (en) | 2018-11-30 | 2020-06-04 | Cisco Technology, Inc. | End-to-end identity-aware routing across multiple administrative domains |
Also Published As
| Publication number | Publication date |
|---|---|
| WO2023026402A1 (en) | 2023-03-02 |
| JPWO2023026402A1 (en) | 2023-03-02 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| CN115398864B (en) | Performing services at an edge of a network using a service plane | |
| US11025545B2 (en) | Conditional composition of serverless network functions using segment routing | |
| CN112640369B (en) | Method, apparatus, and machine-readable medium for intelligently using peers in a public cloud | |
| US7568047B1 (en) | Method and apparatus for adaptive service label management | |
| US10491466B1 (en) | Intelligent use of peering in public cloud | |
| JP5964240B2 (en) | Distributed routing architecture | |
| CN108886496B (en) | Multipath Virtual Switching | |
| US7944854B2 (en) | IP security within multi-topology routing | |
| US9054999B2 (en) | Static TRILL routing | |
| JP5964239B2 (en) | Distributed routing architecture | |
| CN108463989B (en) | Business function linking across multiple sub-networks | |
| US20100254385A1 (en) | Service Insertion Architecture (SIA) in a Virtual Private Network (VPN) Aware Network | |
| CN112087386B (en) | A message processing method, device and system | |
| US20110164503A1 (en) | System and Method to Support Enhanced Equal Cost Multi-Path and Link Aggregation Group | |
| US11159343B2 (en) | Configuring traffic optimization using distributed edge services | |
| US20040223502A1 (en) | Apparatus and method for combining forwarding tables in a distributed architecture router | |
| EP3054634B1 (en) | Scheme for performing one-pass tunnel forwarding function on two-layer network structure | |
| US8953599B1 (en) | Traffic cut-through within network device having multiple virtual network devices | |
| CN106105130A (en) | Carry the source routing of entropy head | |
| CN113055290A (en) | Message forwarding method, device and system based on Service Function Chain (SFC) | |
| US9692692B1 (en) | High-scale data center having LSP transport hierarchy | |
| JP6488426B2 (en) | Multicast data packet forwarding | |
| CN111865806B (en) | Prefix-based fat flows | |
| CN107231307A (en) | Mthods, systems and devices for preventing flow switching between subnet in data center architecture | |
| EP3966687A1 (en) | Sharing and oversubscription of general-purpose graphical processing units in data centers |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| A621 | Written request for application examination |
Free format text: JAPANESE INTERMEDIATE CODE: A621 Effective date: 20231214 |
|
| TRDD | Decision of grant or rejection written | ||
| A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 Effective date: 20241022 |
|
| A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20241104 |
|
| R150 | Certificate of patent or registration of utility model |
Ref document number: 7593501 Country of ref document: JP Free format text: JAPANESE INTERMEDIATE CODE: R150 |
|
| S533 | Written request for registration of change of name |
Free format text: JAPANESE INTERMEDIATE CODE: R313533 |
|
| R350 | Written notification of registration of transfer |
Free format text: JAPANESE INTERMEDIATE CODE: R350 |