KR20010004871A - Quality of Service(QoS) based generic shortest path search method - Google Patents

Quality of Service(QoS) based generic shortest path search method Download PDF

Info

Publication number
KR20010004871A
KR20010004871A KR1019990025632A KR19990025632A KR20010004871A KR 20010004871 A KR20010004871 A KR 20010004871A KR 1019990025632 A KR1019990025632 A KR 1019990025632A KR 19990025632 A KR19990025632 A KR 19990025632A KR 20010004871 A KR20010004871 A KR 20010004871A
Authority
KR
South Korea
Prior art keywords
node
path
route
search
value
Prior art date
Application number
KR1019990025632A
Other languages
Korean (ko)
Other versions
KR100343416B1 (en
Inventor
안순신
윤영현
최은호
전홍범
김두석
Original Assignee
이계철
한국전기통신공사
안순신
윤영현
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 이계철, 한국전기통신공사, 안순신, 윤영현 filed Critical 이계철
Priority to KR1019990025632A priority Critical patent/KR100343416B1/en
Priority to US09/595,862 priority patent/US6813272B1/en
Publication of KR20010004871A publication Critical patent/KR20010004871A/en
Application granted granted Critical
Publication of KR100343416B1 publication Critical patent/KR100343416B1/en

Links

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L45/00Routing or path finding of packets in data switching networks
    • H04L45/302Route determination based on requested QoS
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L45/00Routing or path finding of packets in data switching networks
    • H04L45/12Shortest path evaluation
    • 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

Abstract

PURPOSE: A method for searching a path supporting the quality of service(QoS) is provided to make each node decide whether routing information has to be retransmitted, not to retransmit the routing information to a node through which the routing information passes, and to transmit the routing information to an adjacent node to make each intermediate node transmit a path request only, which is appropriate for the QoS, to the adjacent node, and to delete or store routing information which arrives after transmitting the routing request without re-transmitting the arriving routing information, so as to prevent inefficiency of a CPU and a bandwidth. CONSTITUTION: An algorithm initializes a set for presenting connection information of nodes within every path layer on a multi-level network and initializes the quality of service(QoS) value, to search a shortest path of many routines to many destination nodes from a single source node. The algorithm designates a starting point for a path searching to call a path searcher, and waits for a result message from the path searcher, to distribute the path searching. When the path searching is performed according to the calling, the path searching is not re-passed in a layer area through which the path searching passes. When the path searching is completed, a result message is transmitted to a called target.

Description

서비스 품질(QoS)을 지원하는 경로 탐색 방법{Quality of Service(QoS) based generic shortest path search method}Quality of Service (QoS) based generic shortest path search method}

본 발명은 각종 정보통신 네트워크 상에서 멀티미디어 정보 전송시 요구되는 서비스 품질(Quality of Service : 이하 QoS라 칭한다) 기반의 라우팅(Routing)을 위한 경로 탐색 방법에 관한 것이다.The present invention relates to a path search method for routing based on a quality of service (hereinafter referred to as QoS) required for transmitting multimedia information on various information communication networks.

일반적인 경로 탐색 방법을 알아보면, 첫째, 거리 벡터(Distance Vector) 알고리즘을 들 수 있는 바, 이 거리 벡터(Distance Vector) 알고리즘은 인터넷에서 기존에 많이 사용되는 경로 탐색 알고리즘이다.In general, a route search method may be described. First, a distance vector algorithm is used. The distance vector algorithm is a path search algorithm that is widely used in the Internet.

상기 방식을 사용한 대표적인 것으로 경로 탐색 정보 프로토콜(Routing Information Protocol : RIP)이 있다.A typical example using the above scheme is the Routing Information Protocol (RIP).

거리 벡터(Distance Vector) 알고리즘의 간단한 동작을 설명하면, 먼저 각 망에 연결되어 있는 각 노드에서 각각의 경로 탐색 테이블에 자신을 가리키는 거리(Distance) 값을 0로 하고, 망에 있는 다른 노드들의 거리 값은 무한대로 초기화 시킨다.The simple operation of the distance vector algorithm is described below. First, the distance value of each node connected to each network is 0 in the path search table, and the distance of other nodes in the network is zero. The value is initialized to infinity.

그런다음 경로를 찾기 위한 각 단계에서 현재 노드에서 다른 노드까지의 최단 거리를 찾아서 라우터 테이블 N에 등록한다. 이 때 최단 거리를 찾기 위한 공식은 다음과 같다.Then, in each step to find the route, find the shortest distance from the current node to another node and register it in the router table N. The formula for finding the shortest distance is:

D(v) ← Min[D(v), D(w) + L(w, v)]D (v) ← Min [D (v), D (w) + L (w, v)]

여기서 D(v)는 현재 노드에서 목적 노드 까지의 거리를 의미하며, L(w, v)는 노드 w에서 노드 v까지의 거리를 표시하는 것이다.Where D (v) is the distance from the current node to the destination node, and L (w, v) is the distance from node w to node v.

위에서 찾아진 최단 거리 정보는 자신과 연결되어 있는 인접 노드에 전달되어 지고, 이 절차는 각 노드에서 각 노드에 연결되어 있는 모든 노드에 대한 정보가 수집될 때 까지 지속된다.The shortest distance information found above is transmitted to neighboring nodes connected to it, and this procedure is continued until information about all nodes connected to each node is collected from each node.

그런 다음 각 노드에서 더 이상의 경로 변경 정보가 발생하지 않고, 각 연결된 링크(Link)에도 전송중인 정보가 존재하지 않을 때, 이 때를 모든 경로 정보가 수집된 것으로 인식하여 경로 정보 수집 과정을 종료한다.Then, when no path change information is generated at each node and no information is being transmitted at each connected link, the process recognizes that all path information has been collected and terminates the path information collection process. .

이상과 같은 거리벡터(Distance Vector) 알고리즘의 가장 큰 장점은 단순하다는 점이다. 위의 수행 절차에서 보인 바와 같이 알고리즘이 매우 단순하여 구현하기가 용이하다.The biggest advantage of the distance vector algorithm described above is that it is simple. As shown in the above execution procedure, the algorithm is very simple and easy to implement.

반면, 거리 벡터 알고리즘의 단점은 각 노드에서의 모든 경로 정보를 수집하기 위해서 상대적으로 많은 시간과 망 대역폭(Network Bandwidth)을 소모한다는 점이다. 또한, 더 큰 단점은 네트웍 상태가 수시로 변화하는 환경에서 각 노드에서 변경된 정보가 인접 노드로 전달되는 과정에서 전송된 정보가 다른 경로를 통하여 다시 되돌아 오는 핑-퐁(Ping-Pong) 문제가 발생될 수 있다는 점이며, 각 중간 노드에서 최적의 QoS를 선정할 수 있는 기능이 제공되지 않는다는 점이다.On the other hand, the disadvantage of the distance vector algorithm is that it consumes a relatively large amount of time and network bandwidth to collect all the path information at each node. In addition, the disadvantage of the Ping-Pong problem is that in the environment where the network state changes frequently, the information transmitted from each node is transferred to the neighboring node. In other words, there is no function to select an optimal QoS at each intermediate node.

둘째, 링크-스테이트(Link-State) 알고리즘을 들 수 있는 바, 링크-스테이트(Link-State) 프로토콜은 "Shortest Path First"라고도 불리는 경로 탐색 알고리즘으로써, 분산 데이타베이스 모델을 포함하고 있으며 최단 경로를 찾기 위하여 "Dijkstra's Shortest Path" 알고리즘을 사용하고 있다.Second, there is a link-state algorithm. The link-state protocol is a path search algorithm, also called "Shortest Path First," which includes a distributed database model and provides the shortest path. We use the "Dijkstra's Shortest Path" algorithm to find it.

이러한 링크-스테이트(Link-State) 알고리즘의 간단한 동작 과정을 설명하면, 각 로칼 노드에서 자신의 현재 링크 상태를 다른 노드들에게 제공한다.(LSA : Link-State Advertisement)In describing the simple operation of the link-state algorithm, each local node provides its current link state to other nodes (LSA: Link-State Advertisement).

각 노드의 상태 정보에는 각 노드의 동작중인 인터페이스, 해당 인터페이스를 통하여 정보가 전송될 때 전송 시간, 그리고 인터페이스가 어디로 연결되어 있는지에 대한 정보들이 포함된다.The status information of each node includes the operating interface of each node, the transmission time when the information is transmitted through the corresponding interface, and information on where the interface is connected.

각 노드의 상태 정보들은 다른 노드들에 플로딩(flooding) 함수를 이용하여 전송되며, 전송된 정보들은 각 노드의 링크-스테이트 데이타베이스에 저장된다.The state information of each node is transmitted to other nodes using a floating function, and the transmitted information is stored in each node's link-state database.

각 노드에서는 저장된 정보를 이용하여 "Dijkstra's Shortest Path" 알고리즘을 사용하여 각 노드에서 다른 노드와의 최단 거리 경로를 찾아서 경로 탐색 테이블에 저장한다.Each node uses the stored information to find the shortest distance from each node to other nodes using the "Dijkstra's Shortest Path" algorithm and stores it in the path search table.

링크-스테이트 알고리즘은 전송제어프로토콜/인터넷프로토콜(TCP/IP)을 위한 "Open Shortest Path First(OSPF)"와 비동기전송모드(ATM)망을 위한 개인대개인 인터페이스(Private Network-to-Network Interface : PNNI) 등에 사용되고 있다.Link-state algorithms are known as "Open Shortest Path First (OSPF)" for Transmission Control Protocol / Internet Protocol (TCP / IP) and Private Network-to-Network Interface for Asynchronous Transfer Mode (ATM) networks. PNNI) and the like.

이상과 같은 링크-스테이트 알고리즘의 단점은 거리 벡터(Distance-Vector) 알고리즘에 비하여 다소 구현하기가 복잡하고, 주기적으로 링크 상태 정보(LSA)를 제공하므로써 많은 대역폭을 낭비하게 되는 점이다.The disadvantage of the link-state algorithm described above is that it is more complicated to implement than the distance-vector algorithm, and wastes a lot of bandwidth by periodically providing link state information (LSA).

또한, 링크-스테이트 알고리즘은 모든 경로 탐색 정보를 모아서 초기에 적합한 최적 경로를 유지하고 있다. 그러므로, 서로 다른 노드에서 다양한 멀티미디어 서비스가 요구시에는 서비스별로 다양한 QoS를 만족시켜야 하는데, 이미 모든 노드간의 경로가 설정되어 있는 링크-스테이트나 거리벡터로써는 적당하지 않는 점이 있다.In addition, the link-state algorithm collects all the path search information to maintain an optimal path suitable for the initial stage. Therefore, when various multimedia services are required in different nodes, various QoS must be satisfied for each service. However, there is a point that it is not suitable as a link-state or distance vector in which paths between all nodes are already established.

셋째, 동적 소스 경로 탐색(Dynamic Source Routing : DSR)알고리즘은 인터넷 엔지니어링 태스크 포스(IETF)의 "MANET" 그룹에서 제안한 알고리즘으로, 유무선 환경에서의 일반적인 경로 탐색 알고리즘이 아니고 기지국이 존재하지 않는 특수 무선 이동 네트워크인 "ad-hoc" 네트워크를 위한 경로 탐색 알고리즘이다. 또한, 여기서는 멀티미디어 서비스를 위한 QoS 지원이 전혀 고려되어 있지 않다.Third, the Dynamic Source Routing (DSR) algorithm is an algorithm proposed by the "MANET" group of the Internet Engineering Task Force (IETF). It is not a general path searching algorithm in wired and wireless environments, but a special wireless mobile station without a base station. Path search algorithm for "ad-hoc" network. Also, no QoS support for multimedia services is considered here.

이러한 동적 소스 경로 탐색 알고리즘의 동작 설명을 하면, 데이터 전송을 원하는 원시 노드(Source Node)에서 경로탐색 설정 요청을 목적 노드(Deatination Node)로 향하여 인접한 모든 노드에 전송한다.Referring to the operation of the dynamic source path search algorithm, the source node, which wants to transmit data, sends a path search setting request to a destination node to all adjacent nodes.

경로 설정 요청이 전달되는 각 중간 노드에서는 같은 경로 요청에 대하여 가장 빨리 도착한 경로 설정 요청만 전송하고, 그 후에 도착한 경로 정보는 재전송하지 않고 삭제한다.Each intermediate node to which the route request is sent transmits only the route request that arrives the earliest for the same route request, and then deletes the route information that has arrived without retransmitting.

목적지에 도착한 경로 설정 요청은 다시 원시 노드쪽으로 그동안 통과한 노드들의 리스트를 기록하여, 원시 노드에 전달되므로써, 경로 설정이 이루어 진다.The route request arriving at the destination records the list of nodes that have passed through to the source node, and is then passed to the source node.

경로 설정이 이루어 지면, 전송되는 모든 데이타 패킷에는 패킷이 통과해야 하는 중간 노드 리스트 정보가 포함되어 있어, 이 순서에 따라 패킷이 전송된다.When the path is established, all data packets transmitted contain intermediate node list information that the packet must pass, and the packets are transmitted in this order.

상기와 같은 동적 소스 알고리즘은 "Ad-hoc" 무선 네트워크라는 특수 네트워크 환경에서만 동작하는 단점이 있고, 무조건 시간 지연이 짧은 경로 설정 패킷을 전송하기 때문에 멀티미디어 서비스에 대한 고려가 전혀없다는 단점이 있다.Such a dynamic source algorithm has a disadvantage of operating only in a special network environment called an "ad-hoc" wireless network, and there is a disadvantage in that there is no consideration for a multimedia service because it transmits a routing packet with a short time delay unconditionally.

본 발명은 상기에 기술한 바와 같은 종래 문제점을 감안하여, 일반적인 유무선 통신망에서 멀티미디어 서비스를 위한 QoS를 지원하는 최적의 경로 탐색 알고리즘을 구현하는 것을 목적으로 하는 바, 원시 노드(Source Node)에서 목적 노드(Destination Node)사이 중간에 통과한 경로 정보를 포함하여, 한 번 지나간 노드에 경로 정보가 재전송되지 않도록 각 노드에서 재전송 여부를 결정하여 인접 노드에 경로 정보를 전송하도록 하고, 각 중간 노드에서는 같은 경로 요청에 대하여 요구되는 QoS에 제일 적합한 경로 요청만을 인접 노드에 전송하며, 그 이후에 도착한 경로 정보는 재전송하지 않고 삭제하거나 필요에 따라 저장하므로써, 재전송으로 인한 중앙처리장치(CPU) 및 대역폭(Bandwidth) 낭비를 방지하는 것을 목적으로 한다.Disclosure of Invention The present invention aims at implementing an optimal path search algorithm supporting QoS for a multimedia service in a general wired / wireless communication network in view of the above-described conventional problems. Including the route information passed between the destination nodes, each node decides whether or not to retransmit the route information so that the route information is not retransmitted, and transmits the route information to neighboring nodes. Only the route request best suited to the QoS required for the request is transmitted to the neighbor node, and the route information arrived thereafter is deleted or stored as necessary without retransmission, thereby saving CPU and bandwidth due to retransmission. The purpose is to prevent waste.

또한, 목적지에 도착한 각 경로 정보들은 1개 이상이 될 수 있으며, 이 때 목적 노드에서는 원하는 경로를 선택하여 다시 원시 노드를 향하여 리플라이(Reply) 메시지를 송신하면 이 리플라이 메시지는 메시지에 등록되어 있는 중간 노드를 경유하여 원시 노드에 도착하므로써, 경로 설정이 이루어 지도록 하며, 네트웍상의 모든 노드가 동시에 모든 경로를 찾기 위하여 경로 설정 요청 메시지를 전송하면, 각 노드에서는 리플라이 메시지를 전송하지 않고 각 목적 노드에서 전송된 경로 설정 요청 메시지를 리플라이로 인식하여 경로를 설정하므로써 경로 설정 시간을 단축할 수 있도록 하는 것을 목적으로 한다.In addition, each route information arriving at the destination may be one or more. In this case, if the destination node selects a desired route and sends a reply message back to the original node, the reply message is registered in the message. By arriving at the raw node via an intermediate node, the route is established. When all nodes on the network send a route request message to find all routes at the same time, each node does not send a reply message. It aims to shorten the path setting time by setting the path by recognizing the path setting request message transmitted from the node as a reply.

또한, 목적 노드에 도착한 여러 경로 정보는 목적에 따라 백-업(Back-up) 경로로 사용하거나 멀티 경로를 이용한 전송 속도 증가를 위해 사용할 수 있으며, 이는 경로 설정 요청자의 의도에 따라 선택할 수 있도록 하는 경로 탐색 방법을 제공하는 것을 목적으로 한다.In addition, various path information arriving at the destination node can be used as a back-up path or to increase the transmission speed using multi-path depending on the purpose. An object of the present invention is to provide a path searching method.

도 1은 본 발명에 의한 QoS를 지원하는 다중경로 탐색 (MCDGSPA) 과정을 나타내는 순서도.1 is a flowchart illustrating a multipath discovery (MCDGSPA) process supporting QoS according to the present invention.

도 2는 도 1에서 시작점이 소스노드에 해당할 경우 수행하는 경로 탐색 과정을 나타내는 순서도.FIG. 2 is a flowchart illustrating a path searching process performed when a starting point corresponds to a source node in FIG. 1. FIG.

도 3은 도 1에서 시작점이 소스노드에 해당하지 않을 경우 수행하는 경로탐색 과정을 나타내는 순서도.FIG. 3 is a flowchart illustrating a path searching process performed when a starting point does not correspond to a source node in FIG. 1.

도 4는 본 발명에 의한 제 1 실시예로, QoS를 지원하는 디스죠인트 다중경로(Disjointed Multi-path) 탐색 과정(DMDGASP)을 나타내는 순서도.4 is a flowchart illustrating a disjointed multi-path discovery process (DMDGASP) that supports QoS in a first embodiment according to the present invention.

도 5는 도 4의 경로 탐색 과정의 상세 과정을 나타내는 순서도.5 is a flowchart illustrating a detailed process of the path searching process of FIG. 4.

도 6은 본 발명에 의한 제 2 실시예로, 2레벨 네트워크에서의 QoS를 지원하는 다중경로 탐색 (MCHDGSPA) 과정을 나타내는 순서도.FIG. 6 is a flowchart illustrating a multipath discovery (MCHDGSPA) process for supporting QoS in a two-level network according to a second embodiment of the present invention.

도 7은 본 발명에 의한 제 3 실시예로, 2레벨 네트워크에서의 QoS를 지원하는 디스죠인트 다중경로(Disjointed Multi-path) 탐색 과정(DMHDGSPA)을 나타내는 순서도.7 is a flowchart illustrating a disjointed multi-path discovery process (DMHDGSPA) supporting QoS in a two-level network according to a third embodiment of the present invention.

상기와 같이 동작되도록 하는 본 발명에 의한 정보통신 네트워크 상에서의 경로 탐색 방법은, 단일 소스노드에서 다수의 목적지 노드로 발생하는 다수 경로들의 최단 경로를 탐색하기 위해 상기 네트워크 상에 존재하는 모든 경로에 있는 노드들의 연결정보를 나타내는 집합 및 서비스 품질(QoS)값을 초기화 시키는 제 1 과정과;The route searching method in the information communication network according to the present invention to operate as described above is located in all the routes existing on the network to search the shortest route of the multiple routes occurring from the single source node to the multiple destination nodes. A first step of initializing a set and a quality of service (QoS) value indicating connection information of nodes;

상기 초기화가 완료되면 경로 탐색을 분산처리 하기 위해, 경로 탐색 할 시작점을 지정하여 경로 탐색 수단을 호출하고, 상기 경로 탐색 수단에서의 결과 메시지를 수신 대기하는 제 2 과정과;A second process of calling a route search means by designating a starting point for the route search and receiving a result message from the route search means to distribute the route search when the initialization is completed;

상기 호출에 따라 경로 탐색을 수행한 후, 결과 메시지를 상기 호출 대상으로 전송하는 제 3과정을 구비하는 것을 특징으로 한다.And performing a path search according to the call, and then transmitting a result message to the call target.

또한, 상기와 같이 동작되도록 하는 본 발명에 의한 정보통신 네트워크 상에서의 경로 탐색 방법은, 단일 소스노드에서 단일 목적지 노드로 발생할 수 있는 다수의 경로 중 기준 QoS 값을 만족하는 모든 경로를 탐색하기 위해 상기 네트워크 상에 존재하는 모든 경로에 있는 노드들의 연결정보를 나타내는 집합 및 서비스 품질(QoS)값을 초기화 시키는 제 1 과정과;In addition, the path search method in the information communication network according to the present invention to operate as described above, to search all the paths satisfying the reference QoS value among the plurality of paths that can occur from a single source node to a single destination node. A first step of initializing an aggregation and a quality of service (QoS) value representing connection information of nodes in all paths existing on the network;

상기 초기화가 완료되면 경로 탐색을 분산처리 하기 위해, 경로 탐색 할 시작점과, 기준 QoS 값을 지정하여 경로 탐색 수단을 호출하고, 상기 경로 탐색 수단에서의 결과 메시지를 수신 대기하는 제 2 과정과;A second step of calling the route search means by specifying a starting point to search for the route and a reference QoS value to distribute the route search when the initialization is completed, and receiving a result message from the route search means;

상기 호출에 따라 경로 탐색을 수행하며, 탐색된 다수의 경로 중 중복 노드가 존재하는 경로 중 하나를 제외한 나머지 경로는 삭제한 후, 결과 메시지를 상기 호출 대상으로 전송하는 제 3 과정을 구비하는 것을 특징으로 한다.And performing a path search according to the call, deleting the remaining paths except one of the paths in which duplicate nodes exist among the found plurality of paths, and then transmitting a result message to the call target. It is done.

또한, 상기와 같이 동작되도록 하는 본 발명에 의한 정보통신 네트워크 상에서의 경로 탐색 방법은, 상기 네크워크의 계층이 다중레벨인 네트워크 상에서 단일 소스노드에서 다수의 목적지 노드로 발생하는 다수 경로들의 최단 경로를 탐색하기 위해 상기 다중 레벨 네트워크 상에 존재하는 모든 경로에 있는 계층내 노드들의 연결정보를 나타내는 집합 및 서비스 품질(QoS)값을 초기화 시키는 제 1 과정과;In addition, the path search method in the information communication network according to the present invention to operate as described above, the shortest path of the plurality of paths occurring from a single source node to a plurality of destination nodes on a network of the network layer is multilevel. A first step of initializing an aggregate and a quality of service (QoS) value indicating connection information of nodes in a layer in all paths existing on the multi-level network to

상기 초기화가 완료되면 경로 탐색을 분산처리 하기 위해, 경로 탐색 할 시작점을 지정하여 경로 탐색 수단을 호출하고, 상기 경로 탐색 수단에서의 결과 메시지를 수신 대기하는 제 2 과정과;A second process of calling a route search means by designating a starting point for the route search and receiving a result message from the route search means to distribute the route search when the initialization is completed;

상기 호출에 따라 경로 탐색 수행시 한번 경유한 계층의 영역은 재 경유하지 않으며, 경로탐색이 수행되면 결과 메시지를 상기 호출 대상으로 전송하는 제 3과정을 구비하는 것을 특징으로 한다.When performing the route search according to the call, the region of the layer that has once passed through is not rerouted, and when the route search is performed, a third process of transmitting a result message to the call target.

또한, 상기와 같이 동작되도록 하는 본 발명에 의한 정보통신 네트워크 상에서의 경로 탐색 방법은, 상기 네크워크의 계층이 다중레벨인 네트워크 상에서 단일 소스노드에서 단일 목적지 노드로 발생할 수 있는 다수의 경로 중 기준 QoS 값을 만족하는 모든 경로를 탐색하기 위해 상기 다중 레벨 네트워크 상에 존재하는 모든 경로에 있는 노드들의 연결정보를 나타내는 집합 및 서비스 품질(QoS)값을 초기화 시키는 제 1 과정과;In addition, the path search method in the information communication network according to the present invention to operate as described above, the reference QoS value of a plurality of paths that can occur from a single source node to a single destination node on a network where the network layer is multi-level A first step of initializing a set and a quality of service (QoS) value representing connection information of nodes in all paths existing on the multi-level network to search all paths satisfying the s;

상기 초기화가 완료되면 경로 탐색을 분산처리 하기 위해, 경로 탐색 할 시작점과, 기준 QoS 값을 지정하여 경로 탐색 수단을 호출하고, 상기 경로 탐색 수단에서의 결과 메시지를 수신 대기하는 제 2 과정과;A second step of calling the route search means by specifying a starting point to search for the route and a reference QoS value to distribute the route search when the initialization is completed, and receiving a result message from the route search means;

상기 호출에 따라 경로 탐색을 수행 시 한번 경우한 계층의 영역은 재 경유하지 않으며, 탐색된 다수의 경로 중 중복 노드가 존재하는 경로 중 하나를 제외한 나머지 경로는 삭제한 후, 결과 메시지를 상기 호출 대상으로 전송하는 제 3 과정을 구비하는 것을 특징으로 한다.When performing a path search according to the call, the area of a layer that has been one-time does not go through again, and deletes the remaining paths except one of the paths where duplicate nodes exist among a plurality of searched paths, and then outputs the result message. It characterized in that it comprises a third process of transmitting to.

상술한 목적, 특징 및 장점은 첨부된 도면과 관련한 다음의 상세한 설명을 통하여 보다 분명해 질 것이다. 이하 첨부된 도면을 참조하여 본 발명의 실시예를 상세히 설명하면 다음과 같다.The above objects, features and advantages will become more apparent from the following detailed description taken in conjunction with the accompanying drawings. Hereinafter, embodiments of the present invention will be described in detail with reference to the accompanying drawings.

먼저, 유무선망에서 멀티미디어 서비스를 제공할 수 있도록 하는 탐색 알고리즘을 구현하기 위해서는 다음과 같은 사항이 고려되어야 한다.First, in order to implement a search algorithm for providing a multimedia service in a wired or wireless network, the following matters should be considered.

첫째, 멀티미디어 서비스를 위한 경로 탐색 알고리즘을 설계하는 데에 가장 중요한 문제점은 대부분의 경우에 한 파라미터를 위한 개별적인 최적의 경로는 적어도 하나가 존재할 수 있어도, 모든 파라미터를 위한 최적의 경로는 존재하지 않는다는 점이다. 예를 들어, 두개의 파라미터(대역폭과 지연)가 경로 탐색에서 고려되어질 때 대부분의 경우 대역폭을 위한 최적 경로와 지연을 위한 최적 경로는 다르게 된다. 결국, Qos를 지원하는 경로 탐색을 위해서는 설정된 경로가 원하는 QoS에 최적인지를 판단할 수 있는 결정적인(decisive) 프로토콜이 요구된다.First, the most important problem in designing path search algorithms for multimedia services is that in most cases there may be at least one individual optimal path for one parameter, but there is no optimal path for all parameters. to be. For example, when two parameters (bandwidth and delay) are considered in path search, in most cases the optimal path for bandwidth and the optimal path for delay will be different. As a result, a path search supporting Qos requires a decisive protocol capable of determining whether a set path is optimal for a desired QoS.

둘째, 무선망에서 동작하는 이동 단말기들은 수시로 이동이 가능하다는 점이다. 이동하는 단말기는 네트워크 형상(topology)을 수시로 변경시켜, 통신 경로를 경로 탐색 요청 이전에 설정하는 정적 경로 탐색(Static Routing) 방식은 부 적합하므로 적응적 경로 탐색(Adaptive routing) 프로토콜이 고려되어야 한다.Second, mobile terminals operating in a wireless network can move from time to time. As the mobile terminal changes the network topology from time to time, and the static routing method for establishing a communication path before the path search request is inappropriate, an adaptive routing protocol should be considered.

세째, 무선망에서 동작하는 단말기는 유선망에서 동작하는 라우터에 비해 적은 저장 공간과 적은 컴퓨팅 능력을 보유하고 있으므로, 복잡한 계산이 요구되는 경로 탐색 프로토콜은 부 적합하며, 단순한(simple) 경로 탐색 프로토콜이 요구된다.Third, since a terminal operating in a wireless network has less storage space and less computing power than a router operating in a wired network, a path search protocol requiring complicated calculations is inappropriate, and a simple path search protocol is required. do.

넷째, 무선망에서 동작하는 단말기는 분산 환경에서 동작 가능한 분산 경로 탐색 프로토콜이 운영되어야 한다. 무선망 환경에서 중앙 제어 노드(Central Node)를 이용하여 경로 탐색 경로를 설정 해주는 프로토콜은 무선 단말이 수시로 이동할 수 있다는 특성 때문에 잦은 자료 변경이 발생한다. 또한, 변경된 자료를 관리하기 위한 시간 주기별 단말기 경로 정보가 요구되어 네트워크 대역을 많이 소모시키므로 무선망 환경에서는 부적합하다. 결국, 무선 이동통신을 위해서는 라우터가 경로 탐색을 위한 최소한의 정보를 스스로 유지 관리하는 분산 경로 탐색 프로토콜이 요구된다.Fourth, a terminal operating in a wireless network must operate a distributed path discovery protocol operable in a distributed environment. In a wireless network environment, a protocol for establishing a path search path using a central control node frequently changes data due to the fact that a wireless terminal can move from time to time. In addition, since the terminal path information for each time period for managing the changed data is required and consumes a lot of network bandwidth, it is not suitable in a wireless network environment. As a result, for wireless mobile communication, a distributed path discovery protocol is required in which a router maintains minimal information for path discovery by itself.

이하 본 발명에서 구현한 최단 경로 탐색 알고리즘을 설명한다.Hereinafter, the shortest path search algorithm implemented in the present invention will be described.

도 1은 본 발명에 의한 QoS를 지원하는 다중경로 탐색 알고리즘(MCDGSPA)을 나타내는 순서도이다.1 is a flowchart illustrating a multipath search algorithm (MCDGSPA) supporting QoS according to the present invention.

이는 메시지를 보내는 하나의 소스에서 목적지를 다수개로 정하였을 경우 사용되는 알고리즘으로, 다수의 목적지에 도착하는 경로 중 중간까지 중복되는 노드가 있으면 이 노드까지는 같은 경로로 메시지를 전송하도록 하는 방법이다.This algorithm is used when multiple destinations are specified from one source for sending a message. If there is a duplicate node in the middle of a path that arrives at multiple destinations, the message is transmitted to the same path.

임의의 노드 s에 대한 총 QoS값을 이 노드는 패스되지 않는 노드라는 것을 의미하는 'MAXQ' 값으로 초기화 시키고, 상기 임의의 노드에 대한 정보를 가지는 값과, 이 노드와 연결될 다음 노드를 가리키는 값은 빈 집합으로 초기화시킨다(S1).Initialize the total QoS value for any node s with a value of 'MAXQ', meaning that this node is a node that is not passed, a value with information about that node, and a value for the next node to be connected to this node. Initializes to an empty set (S1).

참고로 이때의 알고리즘과 변수 정의는 다음과 같다.For reference, the algorithm and variable definitions are as follows.

typedef struct{ Qos tqos; Oset set; } Route;typedef struct {Qos tqos; Oset set; } Route;

struct { Qos tqos; Oset set;} node[s];struct {Qos tqos; Oset set;} node [s];

Oset nextset[s];Oset nextset [s];

Qos linkqos[s][N];Qos linkqos [s] [N];

Route route;Route route;

node[s].tqos = MAXQ;node [s] .tqos = MAXQ;

node[s].set = {@};node [s] .set = {@};

nextset[s] = {@};nextset [s] = {@};

이어 상기 임의의 노드 s와 그 옆의 임의의 노드 j사이에 연결되는 링크의 QoS 값을 초기화 시키는 바, 이 역시 반복 문장을 이용하여 QoS값을 대입하는데 현재 초기화 시킬 노드가 자신의 노드인지를 판단하여 자신의 노드가 아니면 기 설정된 QoS값을 대입하고, 자신의 노드이면 '0'값을 대입한다(S2).Subsequently, the QoS value of the link connected between the arbitrary node s and the arbitrary node j next to it is initialized. This also substitutes the QoS value by using a repetition sentence and determines whether the node to be initialized is its own node. If it is not its own node, it assigns a predetermined QoS value, and if it is its own node, it assigns a value of '0' (S2).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

for (j = 0; j 〈 N; j++) {for (j = 0; j <N; j ++) {

if (s == j) linkqos[s][j] = ZERO else linkqos[s][j] = getlinkqos();if (s == j) linkqos [s] [j] = ZERO else linkqos [s] [j] = getlinkqos ();

}}

이어 상기에서 대입한 연결 QoS값을 이용하여 자신의 노드 다음에 연결될 노드의 정보를 나타내는 집합을 구축하는데, 이 역시 옆에 연결된 노드에 대해 반복 문장을 이용하여 연결 집합을 구축한다.Subsequently, a set representing a node representing information of a node to be connected next to its own node is constructed using the above-described connection QoS value, which is also constructed by using a repetitive sentence for the next connected node.

즉, 현재의 노드에서 다음에 연결될 노드가 자기 자신의 노드가 아니면서 패스가 연결된 노드이면 다음 연결 노드를 표시하는 집합에 추가로 등록한다(S3).That is, if the node to be connected next in the current node is not a node of its own, the node is additionally registered in the set indicating the next connecting node (S3).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

for (j = 0; j 〈 N; j++) {for (j = 0; j <N; j ++) {

if (linkqos[s][j] != ZERO && linkqos[s][j] != MAXQ) nextset[s] = nextset[s] ∪ j;if (linkqos [s] [j]! = ZERO && linkqos [s] [j]! = MAXQ) nextset [s] = nextset [s] ∪ j;

}}

/*연결됨: Qos값, 연결안됨: MAXQ, 13), nextset[s] : s의 이웃집합*// * Connected: Qos, not connected: MAXQ, 13), nextset [s]: neighbors of s * /

이어 경로 탐색을 시작하기 위해 경로탐색을 나타내는 집합에 시작점 노드를 대입하고, 이때의 총 QoS값에 '0'값을 대입한 다음, 경로 탐색을 시작하게 될 때 상기 초기화된 시작점이 소스 노드에 해당하는지 여부를 확인한다(S4).Subsequently, the start point node is assigned to the set representing the path search to start the path search, the value '0' is substituted for the total QoS value at this time, and when the path search is started, the initialized start point corresponds to the source node. Check whether or not (S4).

상기 확인결과 소스노드에 해당하면 다중 경로탐색 알고리즘(MC_qospath())을 호출하고, 이어 경로 탐색 메시지를 전송하고 요구되는 딜레이 시간의 2배 시간 동안 경로가 발견되었다는 신호가 수신되기를 기다린다.If the check result corresponds to the source node, the multipath search algorithm (MC_qospath ()) is called, and then the path search message is transmitted and waited for a signal that the path was found for two times the required delay time.

경로 발견 메시지(REPLY)가 수신되면 중첩도(W)가 가장 높은 경로를 선정하여 경로가 발견되었음을 통보하고, 수신하지 못하면 실패했음을 통보한다(S5).When the path discovery message REPLY is received, the highest overlapping level W is selected to notify that the path has been found, and if not, the path discovery message REPLY is notified (S5).

참고로 상기 중첩도(W)는 다수개의 목적지로 행할 경우 그 중간까지 동일한 노드로 진행할 경우를 중첩도라고 설정한다.For reference, when the overlapping degree W is performed to a plurality of destinations, the overlapping degree W is set as the overlapping degree when going to the same node up to the middle.

즉, 동일 소스 노드에서 동일 노드들을 경유하여 가다가 목적지 노드가 달라 나누어지는 노드의 앞 노드까지를 말한다.That is, it refers to the node before the node where the destination node is divided by going through the same node in the same source node.

한편, 상기에서 시작점이 소스 노드에 해당하지 않으면 이는 중간노드에 속하는 것이므로 다음에 수신되는 메시지 종류에 따라 해당 경로 탐색 알고리즘을 호출한다. 이때의 경로 탐색 알고리즘으로는 상기 순차적으로 경로를 탐색하는 알고리즘(MC_qospath())과, 현재의 중간노드가 마지막 목적노드일 경우에는 더 이상 경로탐색을 하지않고 소스노드 측으로 현재까지의 경로를 송신하는 알고리즘(MC_back_qospath())이 있다(S6).Meanwhile, if the starting point does not correspond to the source node, it belongs to the intermediate node, and thus, the corresponding path search algorithm is called according to the next message type received. At this time, the path search algorithm includes the sequential path search algorithm (MC_qospath ()), and when the current intermediate node is the last destination node, the path to the source node is transmitted to the source node without searching the path anymore. There is an algorithm MC_back_qospath () (S6).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

route.set = {ss};route.set = {ss};

route.tqos = ZERO;route.tqos = ZERO;

if(ss is the source node) {if (ss is the source node) {

MC_qospath(ss, route, req));MC_qospath (ss, route, req));

while(delay 〈 2*requested_QoS_delay) {while (delay 〈2 * requested_QoS_delay) {

wait_message_from_socket();wait_message_from_socket ();

if (received the REPLY message from all destination nodes) {if (received the REPLY message from all destination nodes) {

select the weightiest route from source to destination nodes;select the weightiest route from source to destination nodes;

exit(success);exit (success);

}}

exit(fail);exit (fail);

}}

}}

else {else {

while(1) {while (1) {

wait_message_from_socket();wait_message_from_socket ();

if(message_type == REQ)if (message_type == REQ)

MC_qospath();MC_qospath ();

else if(message_type == REP)else if (message_type == REP)

MC_back_qospath();MC_back_qospath ();

}}

}}

도 2는 상기 도 1에서 시작점이 소스노드에 해당할 경우 수행하는 경로탐색 과정(MC_qospath())을 나타내는 순서도로, 현재까지 경로 탐색된 노드까지의 총 QoS값을 계산한다(T1).FIG. 2 is a flowchart illustrating a path search process (MC_qospath ()) performed when a starting point corresponds to a source node in FIG. 1, and calculates a total QoS value up to a node searched for a path (T1).

참고로 이때의 알고리즘 및 변수 정의는 다음과 같다.For reference, the algorithm and variable definitions are as follows.

Qospath(int s, Route route)Qospath (int s, Route route)

{{

Qos tqos;Qos tqos;

int i;int i;

tqos = F(route.tqos, linkqos[E(route.set), s]);tqos = F (route.tqos, linkqos [E (route.set), s]);

이어 경로 탐색을 위해 입력된 노드가 다수의 목적 노드 중 하나에 속하는지 여부를 판단하고, 목적 노드이면 상기 계산된 총 QoS값이 요구된 기준 QoS값을 만족하는지 여부를 판단하여 만족하면, 원시 노드(Source Node)에 경로 발견을 통보하고, 중간에 발생되는 경로중 중첩도가 높은 경로를 발견하기 위해 경로발견(REPLAY) 메시지를 직전 노드에 전송하면서, 중첩도 값인 W를 1로 한다(T2).Subsequently, it is determined whether the node inputted for the path search belongs to one of the plurality of target nodes, and if the target node is satisfied, it is determined whether or not the calculated total QoS value satisfies the required reference QoS value. It notifies the source node of the path discovery and sends a REPLAY message to the immediately preceding node to find a path with high overlap among the paths generated in the middle, and sets the overlap value W to 1 (T2). .

한편, 상기에서 판단결과 목적노드에 속하지 않으면 상기 계산된 총 QoS값과 다른 경로를 통해 현재 노드까지 도달하여 기 계산되었던(현재까지의 노드에 도착하는 경로는 여러 경로가 존재하기 때문임) 총 QoS값과 비교하여 기 계산되었던 값이 더 작으면 현재 탐색 중이던 경로 탐색을 중단하고 다른 경로 탐색 호출이 있기를 대기한다(T3).On the other hand, if the determination result does not belong to the destination node, the total QoS that has reached the current node through a path different from the calculated total QoS value and has been calculated (because there are several paths to the node up to now) If the previously calculated value is smaller than the value, it stops the path search currently being searched and waits for another path search call (T3).

이어, 상기 제 3단계(T3)에서 비교결과 현재 도착한 경로의 총 QoS값이 더 작으면 이 경로가 지난번 경로보다 최단 거리가 되므로 경로 탐색 정보를 이 경로로 수정해야 하는 바, 먼저 현재 경로로 도착한 경로의 마지막 노드가 자신의 노드와 동일한가의 여부를 확인한다(T4).Subsequently, if the total QoS value of the currently arrived route is smaller as a result of the comparison in the third step (T3), since the route becomes the shortest distance than the last route, the route search information should be modified to this route. Check whether the last node of the path is the same as its node (T4).

상기 판단결과 자신의 노드가 아니면 이 노드를 연결 정보에 추가 등록시키고 다음 과정(T6)을 수행한다(T5).If it is determined that the node is not its own node, the node is additionally registered in the connection information and the next process (T6) is performed (T5).

그리고 상기 판단결과 자신의 노드이면 상기 과정(T5)을 생략하고 곧바로 현재까지의 경로에 대한 총 QoS값을 계산하는 바, 이는 연결 정보를 추가할 경우 자신의 노드는 추가시 중복되므로 생략하는 것이다.If it is determined that the node is its own node, the process (T5) is omitted and the total QoS value for the path up to the present is immediately calculated. When adding the connection information, the node is duplicated when the node is added.

즉, 경로를 나타내는 전체 QoS값에 상기에서 계산한 총 QoS값을 대입하고, 현재까지의 노드를 나타내는 집합에 상기 라우트 경로를 대입한다(T6).That is, the total QoS value calculated above is substituted into the total QoS value representing the path, and the route path is substituted into the set representing the node so far (T6).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

if(s is in a Destination set) {if (s is in a Destination set) {

if(C(tqos) 〈 C(req)) {if (C (tqos) 〈C (req)) {

R_node = E(route.set);R_node = E (route.set);

route.set = route.set - R_node;route.set = route.set-R_node;

send(REP, R_node, route.set, W=1);send (REP, R_node, route.set, W = 1);

};};

};};

else if(C(tqos) 〈 C(node[s].tqos)) /* C: 주어진 Qos에 대한 코스트(cost) 함수 */else if (C (tqos) <C (node [s] .tqos)) / * C: Cost function for a given Qos * /

{{

if(E(route.set) != s) route.set = route.set ∪ s;if (E (route.set)! = s) route.set = route.set ∪ s;

route.tqos = tqos;route.tqos = tqos;

node[s].set = route.set;node [s] .set = route.set;

}}

상기 과정이 완료되면 상기 호출된 노드에 대한 경로 탐색이 완료되었으므로, 각각의 이웃한 노드에 대해 경로 탐색을 위해 (i, Qospath(i, route))메시지를 보낸다. 이 메시지는 상기 도 1의 호출을 수신하는 부분(S5)으로 전송된다. 그리고 상기 메시지에 수신에 따라 호출이 수행되면 상기와 같은 과정(T1 ∼ T6)을 반복 수행한다.When the process is completed, since the path search for the called node is completed, a message (i, Qospath (i, route)) is sent for path search for each neighboring node. This message is sent to part S5 which receives the call of FIG. When the call is performed according to the message, the above processes (T1 to T6) are repeated.

특히 상기 호출에 의해 경로 탐색 알고리즘이 반복 수행될 경우에는 다음 노드에 대한 연결을 나타내는 집합에서 상기 수행되었던 라우트 집합을 뺀 후 경로 탐색을 시작한다. 이는 한번 거쳐왔던 경로는 다시 반복하지 않도록 하기 위해서이다(T7).In particular, when the path search algorithm is repeatedly executed by the call, the path search is started after subtracting the performed route set from the set representing the connection to the next node. This is to avoid repeating the path once it has passed (T7).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

for (each i ∈ (nextset[s] route.set))for (each i ∈ (nextset [s] route.set))

send (i, route) ;send (i, route);

도 3은 상기 도 1에서 시작점이 소스노드에 해당하지 않을 경우 수행하는 경로탐색 과정(MC_back_qospath())을 나타내는 순서도로, 현재 노드에 저장되어 있는 중첩도보다 높은 중첩도의 경로가 존재하는지 판단하여 존재하면, 현재 중첩도 값을 상기 새로이 발견된 중첩도가 높은 경로의 값으로 변경하고, 중첩도를 1 증가 시킨다(T11).FIG. 3 is a flowchart illustrating a path search process (MC_back_qospath ()) performed when the starting point does not correspond to the source node in FIG. 1, and determines whether there is a path having a higher degree of overlap than the degree of overlap stored in the current node. If present, the current overlapping degree value is changed to the value of the newly found overlapping path, and the overlapping degree is increased by one (T11).

그런다음 지금까지의 경로에서 현재 노드를 제거하고 직전 노드에 경로발견 메시지(REPLY 메시지)를 전송한다(T12).Then, the current node is removed from the path so far and a path discovery message (REPLY message) is transmitted to the immediately preceding node (T12).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

if(node.W 〈 W) { /* 현재 노드에 저장되어 있는 중첩도보다 높은 중첩도의 경로 발견 */if (node.W <W) {/ * find a path with a nesting degree higher than the nesting degree stored at the current node * /

node.W = W;node.W = W;

W++;W ++;

R_node = E(route.set);R_node = E (route.set);

route.set = route.set - R_node;route.set = route.set-R_node;

send(REP, R_node, route, W);send (REP, R_node, route, W);

}}

도 4는 본 발명의 또 다른 실시예로 QoS를 지원하는 디스죠인트 다중경로(Disjointed Multi-path) 탐색 알고리즘을 나타내는 순서도로, 이 알고리즘은 본 출원인이 출원(국내출원번호 99-23623 (99.6.23.) 서비스품질(QoS)을 지원하는 경로탐색방법)한 바 있는 경로탐색방법 중 단일 소스노드에서 단일 목적 노드에 도착하는 경로 중 요구된 QoS를 만족하는 모든 경로를 선택하는 알고리즘(QRDGSPA)에서, 선택된 다중 경로간의 중간 경로 중복을 피한 알고리즘이다.FIG. 4 is a flowchart illustrating a disjointed multi-path search algorithm supporting QoS according to another embodiment of the present invention. The algorithm is disclosed by the applicant (Domestic Application No. 99-23623 (99.6.23). In the path search method that supports quality of service (QoS), in the algorithm that selects all paths that meet the required QoS among the paths arriving from a single source node to a single destination node, This algorithm avoids intermediate path duplication between selected multipaths.

이 방법을 적용하게 되면 여러 경로들간에 서로 중복되는 중간 경로가 없게되므로, 한 중간 노드의 장애로 인해 상기 노드를 가지는 여러 개의 경로가 사용 불가되는 상황을 방지할 수 있는장점이 있다.Applying this method, there is no intermediate path overlapping each other between the various paths, there is an advantage that can prevent the situation that the multiple paths having the node is unavailable due to the failure of one intermediate node.

그 과정을 설명하면 다음과 같다.The process is as follows.

임의의 노드 s에 대한 총 QoS값을 이 노드는 패스되지 않는 노드라는 것을 의미하는 'MAXQ' 값으로 초기화 시키고, 상기 임의의 노드에 대한 정보를 가지는 값과, 이 노드와 연결될 다음 노드를 가리키는 값은 빈 집합으로 초기화시킨다(U1).Initialize the total QoS value for any node s with a value of 'MAXQ', meaning that this node is a node that is not passed, a value with information about that node, and a value for the next node to be connected to this node. Initializes to an empty set (U1).

참고로 이때의 알고리즘과 변수 정의는 다음과 같다.For reference, the algorithm and variable definitions are as follows.

typedef struct{ Qos tqos; Oset set; } Route;typedef struct {Qos tqos; Oset set; } Route;

struct { Qos tqos; Oset set;} node[s];struct {Qos tqos; Oset set;} node [s];

Oset nextset[s];Oset nextset [s];

Qos linkqos[s][N];Qos linkqos [s] [N];

Route route;Route route;

node[s].tqos = MAXQ;node [s] .tqos = MAXQ;

node[s].set = {@};node [s] .set = {@};

nextset[s] = {@};nextset [s] = {@};

이어 상기 임의의 노드 s와 그 옆의 임의의 노드 j사이에 연결되는 링크의 QoS 값을 초기화 시키는 바, 이 역시 반복 문장을 이용하여 QoS값을 대입하는데 현재 초기화 시킬 노드가 자신의 노드인지를 판단하여 자신의 노드가 아니면 기 설정된 QoS값을 대입하고, 자신의 노드이면 '0'값을 대입한다(U2).Subsequently, the QoS value of the link connected between the arbitrary node s and the arbitrary node j next to it is initialized. This also substitutes the QoS value by using a repetition sentence and determines whether the node to be initialized is its own node. If it is not its own node, it assigns a predetermined QoS value, and if it is its own node, it assigns a value of '0' (U2).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

for (j = 0; j 〈 N; j++) {for (j = 0; j <N; j ++) {

if (s == j) linkqos[s][j] = ZERO else linkqos[s][j] = getlinkqos();if (s == j) linkqos [s] [j] = ZERO else linkqos [s] [j] = getlinkqos ();

}}

이어 상기에서 대입한 연결 QoS값을 이용하여 자신의 노드 다음에 연결될 노드의 정보를 나타내는 집합을 구축하는데, 이 역시 옆에 연결된 노드에 대해 반복 문장을 이용하여 연결 집합을 구축한다.Subsequently, a set representing a node representing information of a node to be connected next to its own node is constructed using the above-described connection QoS value, which is also constructed by using a repetitive sentence for the next connected node.

즉, 현재의 노드에서 다음에 연결될 노드가 자기 자신의 노드가 아니면서 패스가 연결된 노드이면 다음 연결 노드를 표시하는 집합에 추가로 등록한다(U3).That is, if the node to be connected next in the current node is not a node of its own, the node is additionally registered in the set indicating the next connecting node (U3).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

for (j = 0; j 〈 N; j++) {for (j = 0; j <N; j ++) {

if (linkqos[s][j] != ZERO && linkqos[s][j] != MAXQ) nextset[s] = nextset[s] ∪ j;if (linkqos [s] [j]! = ZERO && linkqos [s] [j]! = MAXQ) nextset [s] = nextset [s] ∪ j;

}}

/*연결됨: Qos값, 연결안됨: MAXQ, 13), nextset[s] : s의 이웃집합*// * Connected: Qos, not connected: MAXQ, 13), nextset [s]: neighbors of s * /

상기와 같이 모든 초기화가 완료되면 경로 탐색 알고리즘을 시작하게 되는데, 현재 노드가 소스노드에 해당하는지 여부를 판단하여, 소스노드이면 라우트 집합을 현재노드로 초기화하고, 라우트 QoS 값 역시 '0'로 초기화시킨 다음 경로 탐색 알고리즘을 수행하도록 호출한다(QoSpath(s, route, req)).As described above, when all the initialization is completed, the path search algorithm is started. If the current node corresponds to the source node, the path search algorithm is determined. If the source node is the source node, the route set is initialized to the current node. Then call to perform the route search algorithm (QoSpath (s, route, req)).

그리고 상기에서 판단결과 소스노드가 아니면 타 노드에서 경로 탐색을 완료하고 그 다음 노드의 경로 탐색을 위해 경로탐색 과정에서 결과로 전송된 값인 노드와 이때의 라우트 값이 수신(receive(s,route,req))되기를 대기한다. 결과값이 수신되면 경로탐색알고리즘을 호출한다(QoSpath(s, route, req))(U4, U5).If it is determined that the source node is not a source node as a result of the determination, the node, which is a value transmitted as a result of the route search process and receives the route value, is received in another node to complete the route search of the next node. Waiting to be)) When the result is received, the route search algorithm is called (QoSpath (s, route, req)) (U4, U5).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

if(s is the source node)if (s is the source node)

{ route.set = {s};{route.set = {s};

route.tqos = ZERO;route.tqos = ZERO;

}}

elseelse

{{

receive(s, Qospath(s, route, req));receive (s, Qospath (s, route, req));

call(Qospath(s, route, req));call (Qospath (s, route, req));

}}

도 5는 상기 도 4에서의 경로 탐색 과정의 상세 과정을 나타내는 순서도로, 현재까지 경로 탐색된 노드까지의 총 QoS값을 계산한다(U51).FIG. 5 is a flowchart illustrating a detailed process of the path searching process of FIG. 4, and calculates a total QoS value up to the node searched for the path (U51).

참고로 이때의 알고리즘 및 변수 정의는 다음과 같다.For reference, the algorithm and variable definitions are as follows.

tqos = F(route.tqos, linkqos[E(route.set),s]);tqos = F (route.tqos, linkqos [E (route.set), s]);

상기에서 경로 탐색된 현재 노드까지의 총 QoS값이 계산이 되었으면, 이때의 총 QoS값과 다른 경로를 통해 현재 노드까지 도달하여 기 계산되었던(현재까지의 노드에 도착하는 경로는 여러 경로가 존재하기 때문임) 총 QoS값과 비교하여 기 계산되었던 값이 더 작으면 현재 탐색 중이던 경로 탐색을 중단하고 다른 경로 탐색 호출이 있기를 대기한다(U52).If the total QoS value to the current node searched for the path has been calculated, there are several paths that reach the current node through the path different from the total QoS value at this time. If the previously calculated value is smaller than the total QoS value, the path search that is currently being searched is stopped and another path search call is waited for (U52).

상기 비교결과 현재 도착한 경로의 총 QoS값이 더 작으면 이 경로가 지난번 경로보다 최단 거리가 되므로 경로 탐색 정보를 이 경로로 수정해야 하는 바, 먼저 여러 경로들의 중간 노드가 중복되서는 안되므로 새로 발견된 경로들의 중간 노드와 이전 경로들의 중간 노드의 중복 여부를 판단한다.As a result of the comparison, if the total QoS value of the currently arrived path is smaller, this path is the shortest distance from the last path, and thus the path search information should be modified to this path. It is determined whether the intermediate node of the paths and the intermediate node of the previous paths overlap.

판단결과 중복 노드가 존재하면 현재 노드는 새로운 경로로 추가할 필요가 없으므로 경로 탐색 알고리즘을 중단한다(U53).If it is determined that the duplicate node exists, the current node does not need to be added as a new path and thus stops the path search algorithm (U53).

한편, 상기 판단결과 중복된 노드가 없으면, 현재 경로로 도착한 경로의 마지막 노드가 자신의 노드와 동일한가의 여부를 확인하여, 자신의 노드가 아니면 이 노드를 연결 정보에 추가 등록시키고 다음 과정(U56)을 수행한다(U54).On the other hand, if there is no duplicate node as a result of the determination, it is checked whether or not the last node of the path arriving in the current path is the same as its own node. (54).

그리고 상기 판단결과 자신의 노드이면 상기 과정(U55)을 생략하고 곧바로 현재까지의 경로에 대한 총 QoS값을 계산하는 바, 이는 연결 정보를 추가할 경우 자신의 노드는 추가시 중복되므로 생략하는 것이다.If it is determined that the node is its own node, the process (U55) is omitted and the total QoS value for the path up to the present is immediately calculated. When adding the connection information, the node is duplicated when the node is added.

즉, 경로를 나타내는 전체 QoS값에 상기에서 계산한 총 QoS값을 대입하고, 상기에서 발견된 경로를 기존 경로 집합에서 우선 순위에 따라 적당한 위치에 값을 입력하고 그 이후 순서를 조정한다(U56).That is, the total QoS value calculated above is substituted into the total QoS value representing the path, and the value found at the appropriate position is input to the found path according to priority in the existing path set, and then the sequence is adjusted (U56). .

이어 지금까지 경유한 모든 중간 노드 집합에 상기 새로이 발견된 중간 노드 정보를 추가하고, 새로운 경로 정보를 노드의 다중 경로 집합에 추가한다(U57).Subsequently, the newly discovered intermediate node information is added to all intermediate node sets passed through so far, and new path information is added to the multipath set of nodes (U57).

상기 과정이 완료되면 상기 호출된 노드에 대한 경로 탐색이 완료되었으므로, 노드의 인접 노드 중 중간경로에 포함되어 있지 않은 노드에 경로 탐색 정보 메시지(i, route, req))를 보낸다. 이 메시지는 상기 초기화 과정 중 호출을 수신하는 부분으로 전송된다. 그리고 상기 메시지에 수신에 따라 호출이 수행되면 상기와 같은 과정(U51 ∼ U57)을 반복 수행한다.When the process is completed, since the path search for the called node is completed, a path search information message (i, route, req) is sent to a node not included in the intermediate path among the adjacent nodes of the node. This message is sent to the part that receives the call during the initialization process. When the call is performed according to the message, the above processes (U51 to U57) are repeated.

특히 상기 호출에 의해 경로 탐색 알고리즘이 반복 수행될 경우에는 다음 노드에 대한 연결을 나타내는 집합에서 상기 수행되었던 라우트 집합을 뺀 후 경로 탐색을 시작한다. 이는 한번 거쳐왔던 경로는 다시 반복하지 않도록 하기 위해서이다(U58).In particular, when the path search algorithm is repeatedly executed by the call, the path search is started after subtracting the performed route set from the set representing the connection to the next node. This is to avoid repeating the path once it has passed (U58).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

if(C(tqos) 〈 C(node[s].tqos[p])){if (C (tqos) 〈C (node [s] .tqos [p])) {

0 =〈 p 〈 m /* m개의 다중 경로를 발견하였을 경우, 이때 p는 m개의 경로를 좋은 순서대로 나열하였을 때 해당되는 순서를 나타냄 */0 = <p <m / * If m multipaths are found, p indicates the order in which m paths are listed in good order * /

if((route.set - node[s].sset) == (route.set - ss)){if ((route.set-node [s] .sset) == (route.set-ss)) {

if(E(route.set) != s)route.set = route.set U s;if (E (route.set)! = s) route.set = route.set U s;

route.tqos = tqos;route.tqos = tqos;

for(k = p ; k 〈 m-1 ; k++) {for (k = p; k <m-1; k ++) {

node[s].tqos[k+1] = node[s].tqos[k];node [s] .tqos [k + 1] = node [s] .tqos [k];

node[s].set[k+1] = node[s].set[k];node [s] .set [k + 1] = node [s] .set [k];

}}

node[s].sset = node[s].sset U route.set;node [s] .sset = node [s] .sset U route.set;

node[s].tqos[p] = tqos;node [s] .tqos [p] = tqos;

node[s].set[p] = route.set;node [s] .set [p] = route.set;

for(each i ?? (nextset[s] - route.set))for (each i ?? (nextset [s]-route.set))

send(i, route, req);send (i, route, req);

}}

}}

한편, 상기까지는 네트워크의 구성이 1레벨에 해당할 경우 경로탐색 과정을 설명한 것이고 하기에서부터는 네크워크 구성이 2레벨(two level hierarchical network)일 경우 경로탐색을 수행하는 과정을 설명한다.In the meantime, the path search process is described when the network configuration corresponds to the first level, and the process of performing the path search when the network configuration is the two level hierarchical network will be described below.

네트워크 구성이 2레벨일 경우 먼저 2레벨 계층 구조적 네트워크의 주소를 한 쌍의 정수인 [n, m]으로 정의한다.If the network configuration is two levels, the address of the two-level hierarchical network is first defined as a pair of integers [n, m].

여기서 n은 상위 어드레스(higher address)를 의미하고, m은 하위 어드레스(lower address)를 의미한다.Here n denotes a higher address and m denotes a lower address.

같은 상위 어드레스를 가진 노드의 집합을 영역(region)이라 하고, 특히, 계층 구조적 네트워크는 다른 상위 주소를 가진 주소 또는, 주소들로 분리된 연결 주소 리스트가 같은 상위 어드레스를 가질 수 없다.A set of nodes having the same higher address is called a region. In particular, in a hierarchical network, an address having a different upper address or a connection address list divided into addresses may not have the same upper address.

즉, 특정 영역을 벗어난 연결은 이미 경유한 같은 영역을 다시는 경유할 수 없다는 것이다.In other words, a connection outside a certain area cannot go through the same area again.

예를 들어 [1,2][1,4][1,3][3,1][3,2][3,3][2,1][2,2]와 같은 라우팅 어드레스 리스트는 계층 구조적 라우팅을 위한 어드레스 리스트로 적합하나 [1,2][1,4][1,3][3,1][2,1][3,2][3,3][2,2]와 같은 어드레스 리스트는 어드레스 그룹이 같은 상위 어드레스(다른 상위 어드레스)를 가진 [2,1]에 의해 격리된 [3,.]를 가지고 있기 때문에 계층 구조적 라우팅으로서는 부적합 하다.For example, routing address lists such as [1,2] [1,4] [1,3] [3,1] [3,2] [3,3] [2,1] [2,2] are hierarchical. It is suitable as an address list for structural routing, but with [1,2] [1,4] [1,3] [3,1] [2,1] [3,2] [3,3] [2,2] The same address list is not suitable for hierarchical routing because the address groups have [3 ,.] separated by [2,1] with the same upper address (different higher address).

즉, 이 연결은 노드[3,1]을 통해서 영역 3을 벗어나 노드[2,1]을 지나서 노드[3,2]를 통해 다시 같은 영역 3으로 다시 들어가는 것이므로, 한반 경유한 영역을 지나면 다시 상기 경유한 동일한 영역으로 들어갈 수 없는 점에 위배되기 때문이다.In other words, this connection leaves node 3 through node [3,1], passes through node [2, 1], and enters node 3 again through node [3, 2]. That's because you can't go into the same area.

이하 2레벨에서의 경로 탐색 방법을 설명한다.Hereinafter, a path search method at two levels will be described.

도 6은 본 발명에 의한 제 2 실시예로, 2레벨 네트워크에서의 QoS를 지원하는 다중경로 탐색 (MCHDGSPA) 과정을 나타내는 순서도로, 이는 상기 설명한 MCDGSPA와 거의 유사하며, 다른 부분은 초기화를 시킬 경우 2레벨 계층 모두를 초기화 시켜야 한다는 점이다.FIG. 6 is a flowchart illustrating a multipath discovery (MCHDGSPA) process supporting QoS in a two-level network according to a second embodiment of the present invention, which is almost similar to the above-described MCDGSPA, and the other part is initialized. You need to initialize both levels.

임의의 계층 i에 속하는 임의의 노드 p에 대한 총 QoS값을 이 노드는 패스되지 않는 노드라는 것을 의미하는 'MAXQ' 값으로 초기화 시키고, 상기 임의의 계층에 속하는 임의의 노드에 대한 정보를 가지는 집합과, 이 노드와 연결될 다음 계층에 속하는 노드를 가리키는 집합을 빈 집합으로 초기화시킨다(V1).A total QoS value for any node p belonging to any layer i is initialized to a value of 'MAXQ' which means that this node is a node that is not passed, and a set having information about any node belonging to any layer. In this case, the set indicating the node belonging to the next layer to be connected with this node is initialized to an empty set (V1).

참고로 이때의 알고리즘과 변수 정의는 다음과 같다.For reference, the algorithm and variable definitions are as follows.

struct{ Qos tqos; Oset set;} node [H,N]; /* 계층 주소 */struct {Qos tqos; Oset set;} node [H, N]; / * Hierarchical address * /

Qos linkqos[[H,N],[H,N]];Qos linkqos [[H, N], [H, N]];

Oset nextset[H,N];Oset nextset [H, N];

struct Route { Qos tqos; Oset set; } route;struct Route {Qos tqos; Oset set; } route;

struct Node { int s; int p;};struct Node {int s; int p;};

node[i,p].tqos = MAXQ;node [i, p] .tqos = MAXQ;

node[i,p].set = {@};node [i, p] .set = {@};

nextset[i,p] = {@};nextset [i, p] = {@};

이어 상기 임의의 계층 i에 속하는 임의의 노드 p와 그 옆의 임의의 계층 j에 속하는 임의의 노드 q사이에 연결되는 링크의 QoS 값을 초기화 시키는 바, 이 역시 반복 문장을 이용하여 QoS값을 대입하는데 현재 초기화 시킬 계층의 노드가 자신의 노드인지를 판단하여 자신의 노드가 아니면 기 설정된 QoS값을 대입하고, 자신의 노드이면 '0'값을 대입한다(V2).Subsequently, the QoS value of the link connected between any node p belonging to the arbitrary layer i and any node q belonging to any layer j next to it is initialized, which is also assigned a QoS value using a repetitive statement. However, it determines whether the node of the layer to be initialized is its own node, and if it is not its own node, substitutes a preset QoS value, and if it is its own node, substitutes a value of '0' (V2).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

for(i = 0; i 〈 H; i++)for(j = 0 ; j 〈 H; j++){for (i = 0; i <H; i ++) for (j = 0; j <H; j ++) {

for(p = 0; p 〈 N ; p++)for(q = 0; q 〈 N; q++){for (p = 0; p <N; p ++) for (q = 0; q <N; q ++) {

if((i,p) == (j,q))linkqos[[i,p],[j,q]] = ZERO;if ((i, p) == (j, q)) linkqos [[i, p], [j, q]] = ZERO;

else linkqos[[i,p],[j,q]] = getlinkqos();else linkqos [[i, p], [j, q]] = getlinkqos ();

}}

이어 상기에서 대입한 연결 QoS값을 이용하여 자신의 노드 다음에 연결될 계층의 노드 정보를 나타내는 집합을 구축하는데, 이 역시 옆에 연결된 계층의 노드에 대해 반복 문장을 이용하여 연결 집합을 구축한다.Subsequently, a set representing node information of a layer to be connected next to its own node is constructed using the above-described connection QoS value, which is also constructed by using a repetition sentence for nodes of a layer connected to the next.

즉, 현재 계층의 노드에서 다음에 연결될 계층의 노드가 자기 자신의 노드가 아니면서 패스가 연결된 노드이면 다음 연결 노드를 표시하는 집합에 추가로 등록한다(V3).That is, if the node of the layer to be connected next in the node of the current layer is not a node of its own, the node is additionally registered in the set indicating the next connecting node (V3).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

for(i = 0; i 〈 H; i++)for(j = 0 ; j 〈 H; j++){for (i = 0; i <H; i ++) for (j = 0; j <H; j ++) {

for(p = 0; p 〈 N ; p++)for(q = 0; q 〈 N; q++){for (p = 0; p <N; p ++) for (q = 0; q <N; q ++) {

if(linkqos[[i,p],[j,q]] != ZERO && linkqos[[i,p],[j,q]]!= MAXQ)if (linkqos [[i, p], [j, q]]! = ZERO & & linkqos [[i, p], [j, q]]! = MAXQ)

nextset[i,p] = nextset[i,p] ∪ (j,q);nextset [i, p] = nextset [i, p] ∪ (j, q);

}}

}}

/*연결됨: Qos값, 연결안됨: MAXQ *// * Connected: Qos value, not connected: MAXQ * /

이어 경로 탐색을 시작하기 위해 경로탐색을 나타내는 집합에 시작점 노드를 대입하고, 이때의 총 QoS값에 '0'값을 대입한 다음, 경로 탐색을 시작하게 될 때 상기 초기화된 시작점이 소스 노드에 해당하는지 여부를 확인한다(V4).Subsequently, the start point node is assigned to the set representing the path search to start the path search, the value '0' is substituted for the total QoS value at this time, and when the path search is started, the initialized start point corresponds to the source node. Check whether it is (V4).

상기 확인결과 소스노드에 해당하면 다중 경로탐색 알고리즘(MC_qospath())을 호출하고, 이어 경로 탐색 메시지를 전송하고 요구되는 딜레이 시간의 2배 시간 동안 경로가 발견되었다는 신호가 수신되기를 기다린다.If the check result corresponds to the source node, the multipath search algorithm (MC_qospath ()) is called, and then the path search message is transmitted and waited for a signal that the path was found for two times the required delay time.

경로 발견 메시지(REPLY)가 수신되면 중첩도(W)가 가장 높은 경로를 선정하여 경로가 발견되었음을 통보하고, 수신하지 못하면 실패했음을 통보한다(V5).When the path discovery message REPLY is received, the overlapping degree W selects the highest path and notifies that the path has been found. If not, the path discovery message REPLY is notified (V5).

참고로 상기 중첩도(W)는 다수개의 목적지로 행할 경우 그 중간까지 동일한 노드로 진행할 경우를 중첩도라고 설정한다.For reference, when the overlapping degree W is performed to a plurality of destinations, the overlapping degree W is set as the overlapping degree when going to the same node up to the middle.

즉, 동일 소스 노드에서 동일 노드들을 경유하여 가다가 목적지 노드가 달라 나누어지는 노드의 앞 노드까지를 말한다.That is, it refers to the node before the node where the destination node is divided by going through the same node in the same source node.

한편, 상기에서 시작점이 소스 노드에 해당하지 않으면 이는 중간노드에 속하는 것이므로 다음에 수신되는 메시지 종류에 따라 해당 경로 탐색 알고리즘을 호출한다. 이때의 경로 탐색 알고리즘으로는 상기 순차적으로 경로를 탐색하는 알고리즘(MC_qospath())과, 현재의 중간노드가 마지막 목적노드일 경우에는 더 이상 경로탐색을 하지않고 소스노드 측으로 현재까지의 경로를 송신하는 알고리즘(MC_back_qospath())이 있다(V6).Meanwhile, if the starting point does not correspond to the source node, it belongs to the intermediate node, and thus, the corresponding path search algorithm is called according to the next message type received. At this time, the path search algorithm includes the sequential path search algorithm (MC_qospath ()), and when the current intermediate node is the last destination node, the path to the source node is transmitted to the source node without searching the path anymore. There is an algorithm (MC_back_qospath ()) (V6).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

route.set = {ss};route.set = {ss};

route.tqos = ZERO;route.tqos = ZERO;

if(ss is the source node) {if (ss is the source node) {

MC_qospath(ss, route, req));MC_qospath (ss, route, req));

while(delay 〈 2*requested_QoS_delay) {while (delay 〈2 * requested_QoS_delay) {

wait_message_from_socket();wait_message_from_socket ();

if (received the REPLY message from all destination nodes) {if (received the REPLY message from all destination nodes) {

select the weightiest route from source to destination nodes;select the weightiest route from source to destination nodes;

exit(success);exit (success);

}}

exit(fail);exit (fail);

}}

}}

else {else {

while(1) {while (1) {

wait_message_from_socket();wait_message_from_socket ();

if(message_type == REQ)if (message_type == REQ)

MC_qospath();MC_qospath ();

else if(message_type == REP)else if (message_type == REP)

MC_back_qospath();MC_back_qospath ();

}}

}}

이어 상기 도 6에서 시작점이 소스노드에 해당할 경우 수행하는 경로 탐색 과정과, 시작점이 소스노드에 해당하지 않을 경우 수행하는 경로탐색 과정은 상기 도 2와 도 3에 제시된 과정과 동일하므로 설명을 생략하며, 단지 차이점은 경로 탐색을 반복하기 위해 도 2의 T7과정에서 경로 탐색 메시지를 전송하는 과정에 차이가 있다.Subsequently, a path search process performed when the starting point corresponds to the source node and a path search process performed when the starting point does not correspond to the source node in FIG. 6 are the same as the processes shown in FIGS. The only difference is that the path discovery message is transmitted in step T7 of FIG. 2 to repeat the path search.

이는 2레벨 네트워크 상에서의 경로 탐색이므로 한번 거쳐왔던 계층내 경로는 다시 반복하지 않도록 하기 위함이며, 이의 예를 들면 다음과 같다.Since this is a path search on a two-level network, the path in the layer that has been passed once is not repeated again. For example,

즉, { (s,p),(w,r),(f,g),(h,k)} - {(c,p),(w,r),(f,v),(h,r)} = {(s,p),(h,k)} 이다. 이는 h계층을 기준으로 했을 때 s계층은 거치지 않았으므로 거쳐야 할 경로로 남고, w와 f계층은 이미 거쳤으므로 다시는 거치지 않으며, h계층내의 k노드는 아직 거치지 않았으므로 거쳐야 할 노드로 남게 되는 것이다.{(S, p), (w, r), (f, g), (h, k)}-{(c, p), (w, r), (f, v), (h, r)} = {(s, p), (h, k)}. This means that the hierarchical layer does not go through the hierarchical path, and the w and f hierarchies have already gone through, so it does not go through again. .

도 7은 본 발명에 의한 제 3 실시예로, 2레벨 네트워크에서의 QoS를 지원하는 디스죠인트 다중경로(Disjointed Multi-path) 탐색 과정을 나타내는 순서도로, 이는 상기 도 6의 초기화 부분 V1 ∼ V3 과정까지는 동일하고 그 다음 부분만 상이한 바, 동일한 부분은 설명을 생략한다.FIG. 7 is a flowchart illustrating a disjointed multi-path discovery process supporting QoS in a two-level network according to a third embodiment of the present invention, which is an initialization part V1 to V3 process of FIG. Until the same and only the next part is different, the same parts will be omitted.

상기 V1 ∼ V3 과정을 거쳐 모든 초기화가 완료되면 경로 탐색 알고리즘을 시작하게 되는데, 현재 계층의 노드가 소스노드에 해당하는지 여부를 판단하여, 소스노드이면 경로탐색을 시작할 집합을 현재노드로 초기화하고, 그에 따른 QoS 값 역시 '0'로 초기화시킨 다음 경로 탐색 알고리즘을 수행하도록 호출한다(QoSpath(s, route)).When all the initialization is completed through the steps V1 to V3, a path search algorithm is started. If the node of the current layer corresponds to a source node, the path search algorithm is determined. If the source node is a source node, the path search algorithm is initialized to the current node. The corresponding QoS value is also initialized to '0' and then called to perform the path search algorithm (QoSpath (s, route)).

그리고 상기에서 판단결과 소스노드가 아니면 타 노드에서 경로 탐색을 완료하고 그 다음 노드의 경로 탐색을 위해 경로탐색 과정에서 결과로 전송된 값인 노드와 이때의 라우트 값이 수신(receive(s, route))되기를 대기한다. 결과값이 수신되면 경로탐색알고리즘을 호출한다(QoSpath(s, route))(V7, V8).If it is determined that the source node is not the source node, the node completes the route search and receives the node, which is the value transmitted as a result of the route search process, and the route value at this time for receiving the route of the next node (receive (s, route)). Wait to be. When the result is received, the route search algorithm is called (QoSpath (s, route)) (V7, V8).

참고로 이때의 알고리즘은 다음과 같다.For reference, the algorithm is as follows.

if(s is the source node)if (s is the source node)

{ route.set = {s};{route.set = {s};

route.tqos = ZERO;route.tqos = ZERO;

}}

elseelse

{{

receive(s, Qospath(s, route));receive (s, Qospath (s, route));

call(Qospath(s, route));call (Qospath (s, route));

}}

이어 상기 도 7에서의 경로 탐색 과정의 상세 과정은 상기 도 5에 도시된 과정과 동일하므로 그 설명을 생략하며, 단지 차이점은 경로 탐색을 반복하기 위해 도 2의 T7과정에서 경로 탐색 메시지를 전송하는 과정에 차이가 있다.Subsequently, the detailed process of the route search process in FIG. 7 is the same as the process shown in FIG. 5, and thus description thereof is omitted. The only difference is that the route search message is transmitted in process T7 of FIG. 2 to repeat the route search. There is a difference in the process.

이는 2레벨 네트워크 상에서의 경로 탐색이므로 한번 거쳐왔던 계층내 경로는 다시 반복하지 않도록 하기 위함이며, 이는 상기 도 6에 대한 경로 탐색 과정에서 일 예를 들어 설명한 부분과 동일하므로 설명을 생략한다.Since this is a path search on a two-level network, a path in a layer that has been once passed is not repeated again. This is the same as an example described in the path search process of FIG.

이상 본 발명에서 제공하는 경로 탐색 방법에 대해 설명하였으며, 덧붙여 상기에서 코스트 함수(C)에서 비교하는 부분 중 비교 대상이 메시지 전송에 대한 수신값을 받는 딜레이 값과, 소스노드에서 목적노드 사이에 존재하는 중간노드(hops)수가 되는 경우에는 현재 경로에서 발생한 값이 기존 경로에서 발생한 값보다 작으면 좋고, 대역폭 값 비교일 경우에는 현재 경로에서 발생한 값이 기존 경로에서 발생한 값보다 커야지만 좋다.As described above, the path searching method provided by the present invention has been described. In addition, the comparison object in the cost function C is present between a delay value for receiving a reception value for message transmission and a destination node in the source node. In the case of the number of hops, the value generated in the current path may be smaller than the value generated in the existing path. In the case of comparing bandwidth values, the value generated in the current path may be larger than the value generated in the existing path.

이러한 조건들은 각 경로탐색방법을 사용하는 사용자들에 따라 선택적으로 사용할 수 있음은 물론이며, 또한, 상기 2레벨 계층에서의 MCHDGSPA와 DMHDGSPA알고리즘은 설명의 편의상 네트워크가 2레벨로 되어 있을 경우를 예를 들어 설명하였으나, 이 네트워크의 레벨은 얼마든지 다중레벨로 구성될 수 있고, 이에 따라 본 발명 역시 집합을 레벨에 따라 증가시키면 되므로 다중레벨에 적용할 수 있음은 물론이다.These conditions can be selectively used according to the users using the respective path searching methods. Also, the MCHDGSPA and DMHDGSPA algorithms in the second level layer can be used as an example for the case where the network is in the second level. For example, the level of the network can be configured as many levels as possible, and accordingly, the present invention can also be applied to multiple levels because the set is increased according to the level.

이상에서 상세히 설명한 바와 같이 본 발명은 각종 정보통신 네트웍 상에서 멀티미디어 정보 전송시 요구되는 QoS 기반의 경로 탐색(Routing)을 제공하기 위해, 단일계층 네트워크에서 최단 경로를 제공하는 방법으로 소스노드는 동일하고 목적노드는 다수개일 경우 적용하는 방법(MCDGSPA)과, 단일 소스노드에서 단일목적로 발생할 수 있는 기준 QoS를 만족하는 모든 경로를 다수개 설정하는 방법(QRDGSPA)에서 중간노드까지 동일한 노드가 하나라도 포함되는 경로가 있으면 이 중 하나의 노드는 삭제하는 방법(DMDGSPA)들을 제공하고, 다중레벨 계층에 적용되는 최단 경로 탐색을 제공하는 알고리즘으로, 상기 MCDGSPA알고리즘과 DMDGSPA알고리즘을 다중레벨에 적용할 수 있도록 응용한 각각의 알고리즘(MCHDGSPA, DMHDGSPA)을 제공하므로써, 상기 각 경로 탐색 알고리즘 중에서 사용자가 자신의 시스템 환경에 가장 알맞는 알고리즘을 선택적으로 사용할 수 있도록 하는 잇점이 있다.As described in detail above, the present invention provides a shortest path in a single-layer network in order to provide QoS-based routing of routing required for transmitting multimedia information on various information communication networks. In the case where there are multiple nodes (MCDGSPA), and in the case of setting up multiple paths that satisfy the baseline QoS that may occur for a single purpose in a single source node (QRDGSPA), the same node may be included from the middle node. If there is a path, one of the nodes provides methods to delete (DMDGSPA) and provides the shortest path search applied to the multilevel layer. By providing respective algorithms (MCHDGSPA, DMHDGSPA), each of the above path search algorithms Standing has the advantage of allowing users to selectively use the algorithm that best matches your system environment.

아울러 본 발명의 바람직한 실시예들은 예시의 목적을 위해 개시된 것이며, 당업자라면 본 발명의 사상과 범위안에서 다양한 수정, 변경, 부가등이 가능할 것이며, 이러한 수정 변경 등은 이하의 특허 청구의 범위에 속하는 것으로 보아야 할 것이다.In addition, preferred embodiments of the present invention are disclosed for the purpose of illustration, those skilled in the art will be able to various modifications, changes, additions, etc. within the spirit and scope of the present invention, such modifications and modifications belong to the following claims You will have to look.

Claims (28)

정보통신 네트워크 상에서의 경로 탐색 방법에 있어서,In the path search method on an information communication network, 단일 소스노드에서 다수의 목적지 노드로 발생하는 다수 경로들의 최단 경로를 탐색하기 위해 상기 네트워크 상에 존재하는 모든 경로에 있는 노드들의 연결정보를 나타내는 집합 및 서비스 품질(QoS)값을 초기화 시키는 제 1 과정과;A first process of initializing a set and quality of service (QoS) values indicating connection information of nodes in all paths existing in the network to search the shortest paths of multiple paths occurring from a single source node to multiple destination nodes. and; 상기 초기화가 완료되면 경로 탐색을 분산처리 하기 위해, 경로 탐색 할 시작점을 지정하여 경로 탐색 수단을 호출하고, 상기 경로 탐색 수단에서의 결과 메시지를 수신 대기하는 제 2 과정과;A second process of calling a route search means by designating a starting point for the route search and receiving a result message from the route search means to distribute the route search when the initialization is completed; 상기 호출에 따라 경로 탐색을 수행한 후, 결과 메시지를 상기 호출 대상으로 전송하는 제 3과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.And performing a path search according to the call, and then transmitting a result message to the call target. 제 1항에 있어서,The method of claim 1, 상기 제 1 과정은 노드 0에서부터 노드 N까지 소스로부터 가장 짧은 라우트를 따라 임의의 노드에 쌓인 총 QoS 값들을 초기화 시키는 제 1 과정과;The first step of initializing total QoS values accumulated in any node along the shortest route from the source from node 0 to node N; 상기 임의의 노드에 대한 정보를 가지는 값과, 이 노드와 연결될 다음 노드를 가리키는 값을 초기화 시키는 제 2 과정과;A second step of initializing a value having information about the arbitrary node and a value indicating a next node to be connected with the node; 상기 임의의 노드와 그 옆의 임의의 노드 사이에 연결되는 링크의 QoS 값을 초기화 시키는 제 3 과정과;A third step of initializing a QoS value of a link connected between the any node and any node next to it; 상기 제 3 과정에서 초기화 된 QoS값을 이용해 자신의 노드 다음에 연결될 노드의 정보를 나타내는 집합을 구축하는 제 4 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.And a fourth step of constructing a set representing information of a node to be connected next to its own node using the QoS value initialized in the third step. 제 2항에 있어서,The method of claim 2, 상기 제 4 과정에서 자신의 노드 다음에 연결될 노드의 정보를 나타내는 집합을 구축할 경우, 현재의 노드에서 다음에 연결될 노드가 자기 자신의 노드가 아니면서 패스가 연결된 노드이면 다음 연결 노드를 표시하는 집합에 추가로 등록하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.In the fourth step, when a set representing information about a node to be connected next to the node is constructed, the next node is connected if the node to be connected next to the current node is not a node of its own. Path searching method supporting quality of service (QoS), characterized in that the registration in addition to. 제 1항에 있어서,The method of claim 1, 상기 제 2 과정은 상기 제 1 과정에서 초기화가 완료되면, 경로 탐색 수행을 위해 경로탐색을 나타내는 집합에 경로탐색을 시작할 노드를 대입하고, 이때의 총 QoS값에 '0'값을 대입한 다음, 상기 초기화된 시작점이 소스 노드에 해당하는지 여부를 판단하는 제 1 과정과;In the second process, when the initialization is completed in the first process, a node to start the route search is assigned to the set representing the route search to perform the route search, and the value 0 is substituted in the total QoS value. A first step of determining whether the initialized starting point corresponds to a source node; 상기 판단결과 소스노드에 해당하면 소스노드부터 경로탐색을 시작하는 다중 경로탐색 요구 메시지를 전송하고, 요구되는 딜레이 시간의 특정 시간 동안 경로발견신호 수신을 대기하는 제 2 과정과;A second step of transmitting a multi-path search request message for starting a path search from the source node if the source node corresponds to the source node and waiting for a path discovery signal to be received for a specific time of the required delay time; 상기 판단결과 시작점이 소스 노드에 해당하지 않으면 수신되는 메시지 종류에 따라 상기 다중경로탐색 수단 및 중첩도비교경로탐색 수단을 호출하는 제 3 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.And a third process of invoking the multipath search means and the overlapping comparison path search means according to the received message type if the starting point does not correspond to the source node. How to navigate the route. 제 4항에 있어서,The method of claim 4, wherein 상기 제 3 과정에서의 다중 경로 탐색 수단의 경로 탐색 과정은 현재까지 경로 탐색된 노드까지의 총 QoS값을 계산하는 제 1 과정과;The path search step of the multipath search means in the third step includes: a first step of calculating a total QoS value up to the node searched for the path; 입력된 노드가 다수의 목적 노드 중 하나에 속하는지 여부를 판단하고, 목적 노드이면 상기 총 QoS값이 요구된 기준 QoS값을 만족하는지 여부를 판단하는 제 2 과정과;Determining whether the input node belongs to one of a plurality of target nodes, and if the target node determines whether the total QoS value satisfies the required reference QoS value; 상기 목적 노드에 속하지 않으면 총 QoS 값과 다른 경로를 통해 현재 노드까지 도달하여 기 계산되었던 총 QoS값과 비교하여 기 계산되었던 값이 더 작으면 현재 탐색 중이던 경로 탐색을 중단하고 다른 경로 탐색 호출이 있기를 대기하는 제 3 과정과;If the value does not belong to the target node, the total QoS value is different from the total QoS value, which is reached to the current node through a different path. A third process of waiting for; 상기 비교결과 현재 도착한 경로의 총 QoS값이 더 작으면 경로 탐색 정보를 수정하기 위해, 현재 경로로 도착한 경로의 마지막 노드가 자신의 노드와 동일한가의 여부를 판단하는 제 4 과정과;A fourth step of determining whether or not the last node of the route arriving at the current route is the same as its own node in order to modify the route search information if the total QoS value of the currently arrived route is smaller as a result of the comparison; 상기 판단결과 자신의 노드가 아니면 이 노드를 연결 정보에 추가 등록시키고, 자신의 노드이면 추가 등록을 생략하는 제 5 과정과;A fifth step of additionally registering the node in the connection information if the node is not its own node and omitting the additional registration if the node is its own node; 상기 4 과정 후, 상기 제 1단계에서 계산된 총 QoS값을 현재까지의 경로에 대한 총 라우트 QoS값에 대입하고, 현재까지의 노드를 나타내는 집합에 상기 라우트 경로를 등록하는 제 6 과정과;A sixth step of substituting the total QoS value calculated in the first step into the total route QoS value for the path up to now and registering the route path in a set representing the node up to now; 상기 각 과정이 완료되면 상기 호출된 노드의 다음 노드에 대한 경로 탐색을 위해, 상기 다음 노드에 대한 연결을 나타내는 집합에서 상기 수행되었던 라우트 집합을 뺀 후, 이 결과 메시지를 상기 경로탐색 수단을 호출한 곳으로 전송하는 제 7 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.After each process is completed, the route set is subtracted from the set representing the connection to the next node for the route search to the next node of the called node. And a seventh process of transmitting to a place, wherein the route searching method supports quality of service. 제 5항에 있어서,The method of claim 5, 상기 제 2 과정에서 기준 QoS 값을 만족하면, 소스 노드에 경로 발견을 통보하고, 중간에 발생되는 경로중 중첩도가 높은 경로를 발견하기 위해 경로발견메시지를 직전 노드에 전송하면서, 중첩도 값을 1로 변경하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.If the reference QoS value is satisfied in the second process, a path discovery message is notified to the source node, and a path discovery message is transmitted to the immediately preceding node in order to find a path having a high overlapping rate among intermediate paths, and the overlapping value is transmitted. Path discovery method supporting quality of service (QoS), characterized in that the change to 1. 제 4항에 있어서,The method of claim 4, wherein 상기 제 2 과정에서 경로 발견 메시지를 수신하면 중첩도가 가장 높은 경로를 선정하여 경로가 발견되었음을 통보하고, 수신하지 못하면 경로 탐색을 실패하였음을 통보하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.When receiving the path discovery message in the second process, the path having the highest overlap is selected and notified that the path is found, and if not, the path discovery message is notified. How to navigate the route. 제 4항에 있어서,The method of claim 4, wherein 상기 제 3 과정에서 중첩도 비교 경로 탐색 과정은 현재 노드에 저장되어 있는 중첩도보다 높은 중첩도의 경로가 존재하는지 판단하여 존재하면, 현재 중첩도 값을 상기 새로이 발견된 중첩도가 높은 경로의 값으로 변경하고, 중첩도를 1 증가 시키는 제 1 과정과;In the third process, the process of searching for the overlapping degree comparison path determines whether there is a path having a higher degree of overlap than the degree of overlapping stored in the current node. A first process of changing to and increasing the degree of overlap by one; 상기 과정 후, 현재까지의 경로에서 현재 노드를 제거하고 직전 노드에 경로발견 메시지를 전송하는 제 2 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.And a second process of removing the current node from the path up to the present and transmitting a path discovery message to the immediately preceding node after the above process. 정보통신 네트워크 상에서의 경로 탐색 방법에 있어서,In the path search method on an information communication network, 단일 소스노드에서 단일 목적지 노드로 발생할 수 있는 다수의 경로 중 기준 QoS 값을 만족하는 모든 경로를 탐색하기 위해 상기 네트워크 상에 존재하는 모든 경로에 있는 노드들의 연결정보를 나타내는 집합 및 서비스 품질(QoS)값을 초기화 시키는 제 1 과정과;Aggregation and Quality of Service (QoS) indicating the connection information of nodes in all paths existing in the network to search all paths satisfying the baseline QoS value among the multiple paths that can occur from a single source node to a single destination node. A first step of initializing a value; 상기 초기화가 완료되면 경로 탐색을 분산처리 하기 위해, 경로 탐색 할 시작점과, 기준 QoS 값을 지정하여 경로 탐색 수단을 호출하고, 상기 경로 탐색 수단에서의 결과 메시지를 수신 대기하는 제 2 과정과;A second step of calling the route search means by specifying a starting point to search for the route and a reference QoS value to distribute the route search when the initialization is completed, and receiving a result message from the route search means; 상기 호출에 따라 경로 탐색을 수행하며, 탐색된 다수의 경로 중 중복 노드가 존재하는 경로 중 하나를 제외한 나머지 경로는 삭제한 후, 결과 메시지를 상기 호출 대상으로 전송하는 제 3 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.And performing a path search according to the call, deleting the remaining paths except one of the paths in which duplicate nodes exist among the found plurality of paths, and then transmitting a result message to the call target. Path discovery method that supports quality of service (QoS). 제 9항에 있어서,The method of claim 9, 상기 제 1 과정은 노드 0에서부터 노드 N까지 소스로부터 가장 짧은 라우트를 따라 임의의 노드에 쌓인 총 QoS 값들을 초기화 시키는 제 1 과정과;The first step of initializing total QoS values accumulated in any node along the shortest route from the source from node 0 to node N; 상기 임의의 노드에 대한 정보를 가지는 값과, 이 노드와 연결될 다음 노드를 가리키는 값을 초기화 시키는 제 2 과정과;A second step of initializing a value having information about the arbitrary node and a value indicating a next node to be connected with the node; 상기 임의의 노드와 그 옆의 임의의 노드 사이에 연결되는 링크의 QoS 값을 초기화 시키는 제 3 과정과;A third step of initializing a QoS value of a link connected between the any node and any node next to it; 상기 제 3 과정에서 초기화 된 QoS값을 이용해 자신의 노드 다음에 연결될 노드의 정보를 나타내는 집합을 구축하는 제 4 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.And a fourth step of constructing a set representing information of a node to be connected next to its own node using the QoS value initialized in the third step. 제 10항에 있어서,The method of claim 10, 상기 제 4 과정에서 자신의 노드 다음에 연결될 노드의 정보를 나타내는 집합을 구축할 경우, 현재의 노드에서 다음에 연결될 노드가 자기 자신의 노드가 아니면서 패스가 연결된 노드이면 다음 연결 노드를 표시하는 집합에 추가로 등록하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.In the fourth step, when a set representing information about a node to be connected next to the node is constructed, the next node is connected if the node to be connected next to the current node is not a node of its own. Path searching method supporting quality of service (QoS), characterized in that the registration in addition to. 제 9항에 있어서,The method of claim 9, 상기 제 2 과정은 상기 제 1 과정에서 초기화가 완료되면 현재 노드가 소스노드에 해당하는지 여부를 판단하는 제 1 과정과;The second process may include: a first process of determining whether a current node corresponds to a source node when initialization is completed in the first process; 상기 판단결과 소스노드이면 경로를 나타내는 집합을 현재노드로 초기화하고, 상기 집합의 QoS 값을 '0'로 초기화시킨 다음 경로 탐색 수단을 호출하는 제 2 과정과;A second step of initializing a set representing a path as a current node if the determination result is a source node, initializing a QoS value of the set to '0', and then calling a path searching unit; 상기 판단결과 소스노드가 아니면 이전 노드에 대한 경로 탐색을 완료한 후 전송된 결과 값인 노드와 이때의 경로를 나타내는 집합 및 값을 이용하여 경로 탐색 수단을 호출하는 제 3 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.And a third process of calling a path search means by using a set and a value indicating a node which is a result value transmitted at the time of completing a path search for a previous node and a path at this time if it is not the source node as a result of the determination. Path discovery method that supports quality of service (QoS). 제 9항에 있어서,The method of claim 9, 상기 제 3 과정에서 수행되는 경로탐색과정은 현재까지 경로 탐색된 노드까지의 총 QoS값을 계산하는 제 1 과정과;The path search process performed in the third process may include a first process of calculating a total QoS value of a node searched for a path to date; 상기 총 QoS값이 계산되면, 이때의 총 QoS값과 다른 경로를 통해 현재 노드까지 도달하여 기 계산되었던 총 QoS값과 비교하여 기 계산되었던 값이 더 작으면 현재 탐색 중이던 경로 탐색을 중단하고 다른 경로 탐색 호출이 있기를 대기하는 제 2 과정과;When the total QoS value is calculated, if the calculated value is smaller than the total QoS value previously reached and reached to the current node through a path different from the total QoS value at this time, the search for the current path is stopped and the other path is stopped. A second process of waiting for a search call; 상기 비교결과 현재 도착한 경로의 총 QoS값이 더 작으면, 새로 발견된 경로들의 중간 노드와 이전 경로들의 중간 노드의 중복 여부를 판단하는 제 3 과정과;A third step of determining whether the intermediate node of the newly discovered paths and the intermediate node of the previous paths overlap if the total QoS value of the currently arrived path is smaller as a result of the comparison; 상기 판단결과 중복된 노드가 없으면, 현재 경로로 도착한 경로의 마지막 노드가 자신의 노드와 동일한가의 여부를 판단하는 제 3 과정과;If there is no duplicate node as a result of the determination, determining whether the last node of the route arriving at the current route is the same as its own node; 상기 판단결과 자신의 노드가 아니면 이 노드를 연결 정보에 추가 등록시키고, 자신의 노드이면 추가 등록을 생략하는 제 4 과정과;A fourth step of additionally registering the node in the connection information if the node is not its own node and omitting the additional registration if the node is its own node; 상기 4 과정 후, 상기 제 1 과정에서 계산된 총 QoS값을 현재까지의 경로에 대한 총 라우트 QoS값에 대입하고, 상기 발견된 경로를 기존 경로 집합에서 우선 순위에 따른 위치에 입력하는 제 5 과정과;A fifth step of substituting the total QoS value calculated in the first step into the total route QoS value for the current path after the step 4 and inputting the found path to a position according to priority in the existing path set; and; 상기 5 과정 후, 현재까지 경유한 모든 중간 노드 집합에 상기 새로 발견된 중간 노드 정보를 추가하고, 새로운 경로 정보를 노드의 다중 경로 집합에 추가하는 제 6 과정과;A sixth step of adding the newly found intermediate node information to all the intermediate node sets passed through to date and adding the new path information to the multipath set of nodes after the fifth step; 상기 각 과정이 완료되면 상기 호출된 노드의 다음 노드에 대한 경로 탐색을 위해, 이 결과 메시지를 상기 경로탐색 수단을 호출한 곳으로 전송하는 제 7 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.Quality of Service (QoS) characterized in that it comprises a seventh process of transmitting the resulting message to the place where the path search means is called for the path search for the next node of the called node when each process is completed. Path navigation method that supports. 제 13항에 있어서,The method of claim 13, 상기 제 3 과정에서 판단 결과 중복 노드가 존재하면 현재 노드는 새로운 경로로 추가할 필요가 없으므로 경로 탐색 과정을 중단하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.If there is a duplicate node as a result of the determination in the third process, the current node does not need to add a new path, and thus the path search process is interrupted. 정보통신 네트워크 상에서의 경로 탐색 방법에 있어서,In the path search method on an information communication network, 상기 네크워크의 계층이 다중레벨인 네트워크 상에서 단일 소스노드에서 다수의 목적지 노드로 발생하는 다수 경로들의 최단 경로를 탐색하기 위해 상기 다중 레벨 네트워크 상에 존재하는 모든 경로에 있는 계층내 노드들의 연결정보를 나타내는 집합 및 서비스 품질(QoS)값을 초기화 시키는 제 1 과정과;Represents connection information of nodes in layers in all paths existing on the multi-level network to search the shortest paths of the multiple paths occurring from a single source node to a plurality of destination nodes on a network in which the layer of the network is multilevel. A first step of initializing an aggregate and a quality of service (QoS) value; 상기 초기화가 완료되면 경로 탐색을 분산처리 하기 위해, 경로 탐색 할 시작점을 지정하여 경로 탐색 수단을 호출하고, 상기 경로 탐색 수단에서의 결과 메시지를 수신 대기하는 제 2 과정과;A second process of calling a route search means by designating a starting point for the route search and receiving a result message from the route search means to distribute the route search when the initialization is completed; 상기 호출에 따라 경로 탐색 수행시 한번 경유한 계층의 영역은 재 경유하지 않으며, 경로탐색이 수행되면 결과 메시지를 상기 호출 대상으로 전송하는 제 3과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.When the route search is performed according to the call, the layer of the layer that has once passed through is not re-routed, and when the route search is performed, a third process of transmitting a result message to the call target is provided. Supported route navigation methods. 제 15항에 있어서,The method of claim 15, 상기 제 1 과정은 노드 0에서부터 노드 N까지 소스로부터 가장 짧은 라우트를 따라 임의의 계층내 노드에 쌓인 총 QoS 값들을 초기화 시키는 제 1 과정과;The first step of initializing total QoS values accumulated in nodes in an arbitrary layer along the shortest route from the source from node 0 to node N; 상기 임의의 계층내 노드에 대한 정보를 가지는 값과, 이 계층내 노드와 연결될 다음 노드를 가리키는 값을 초기화 시키는 제 2 과정과;A second step of initializing a value having information about a node in the arbitrary hierarchy and a value indicating a next node to be connected with the node in the hierarchy; 상기 임의의 계층내 노드와 그 옆의 임의의 노드 사이에 연결되는 링크의 QoS 값을 초기화 시키는 제 3 과정과;A third step of initializing a QoS value of a link connected between the node in any layer and any node next to it; 상기 제 3 과정에서 초기화 된 QoS값을 이용해 자신의 노드 다음에 연결될 노드의 정보를 나타내는 집합을 구축하는 제 4 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.And a fourth step of constructing a set representing information of a node to be connected next to its own node using the QoS value initialized in the third step. 제 16항에 있어서,The method of claim 16, 상기 제 4 과정에서 자신의 노드 다음에 연결될 노드의 정보를 나타내는 집합을 구축할 경우, 현재의 계층내 노드에서 다음에 연결될 계층내 노드가 자기 자신의 노드가 아니면서 패스가 연결된 노드이면 다음 연결 노드를 표시하는 집합에 추가로 등록하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.In the fourth step, when a set representing information about a node to be connected after the node is constructed, if the node in the layer to be connected next is a node in which the path is connected without being a node of the node in the current layer, the next connection node. Path searching method supporting quality of service (QoS), characterized in that the additional registration to the set indicating. 제 15항에 있어서,The method of claim 15, 상기 제 2 과정은 상기 제 1 과정에서 초기화가 완료되면, 경로 탐색 수행을 위해 경로탐색을 나타내는 집합에 경로탐색을 시작할 노드를 대입하고, 이때의 총 QoS값에 '0'값을 대입한 다음, 상기 초기화된 시작점이 소스 노드에 해당하는지 여부를 판단하는 제 1 과정과;In the second process, when the initialization is completed in the first process, a node to start the route search is assigned to the set representing the route search to perform the route search, and the value 0 is substituted in the total QoS value. A first step of determining whether the initialized starting point corresponds to a source node; 상기 판단결과 소스노드에 해당하면 소스노드부터 경로탐색을 시작하는 다중 경로탐색 요구 메시지를 전송하고, 요구되는 딜레이 시간의 특정 시간 동안 경로발견신호 수신을 대기하는 제 2 과정과;A second step of transmitting a multi-path search request message for starting a path search from the source node if the source node corresponds to the source node and waiting for a path discovery signal to be received for a specific time of the required delay time; 상기 판단결과 시작점이 소스 노드에 해당하지 않으면 수신되는 메시지 종류에 따라 상기 다중경로탐색 수단 및 중첩도비교경로탐색 수단을 호출하는 제 3 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.And a third process of invoking the multipath search means and the overlapping comparison path search means according to the received message type if the starting point does not correspond to the source node. How to navigate the route. 제 18항에 있어서,The method of claim 18, 상기 제 3 과정에서의 다중 경로 탐색 수단의 경로 탐색 과정은 현재까지 경로 탐색된 계층내 노드까지의 총 QoS값을 계산하는 제 1 과정과;The path search step of the multipath search means in the third step includes: a first step of calculating a total QoS value up to nodes in the layer searched for to date; 입력된 계층내 노드가 다수의 목적 노드 중 하나에 속하는지 여부를 판단하고, 목적 노드이면 상기 총 QoS값이 요구된 기준 QoS값을 만족하는지 여부를 판단하는 제 2 과정과;Determining whether an input node in the hierarchy belongs to one of a plurality of target nodes, and if the target node determines whether the total QoS value satisfies a required reference QoS value; 상기 목적 노드에 속하지 않으면 총 QoS 값과 다른 경로를 통해 현재 노드까지 도달하여 기 계산되었던 총 QoS값과 비교하여 기 계산되었던 값이 더 작으면 현재 탐색 중이던 경로 탐색을 중단하고 다른 경로 탐색 호출이 있기를 대기하는 제 3 과정과;If the value does not belong to the target node, the total QoS value is different from the total QoS value, which is reached to the current node through a different path. A third process of waiting for; 상기 비교결과 현재 도착한 경로의 총 QoS값이 더 작으면 경로 탐색 정보를 수정하기 위해, 현재 경로로 도착한 경로의 마지막 노드가 자신의 노드와 동일한가의 여부를 판단하는 제 4 과정과;A fourth step of determining whether or not the last node of the route arriving at the current route is the same as its own node in order to modify the route search information if the total QoS value of the currently arrived route is smaller as a result of the comparison; 상기 판단결과 자신의 노드가 아니면 이 노드를 연결 정보에 추가 등록시키고, 자신의 노드이면 추가 등록을 생략하는 제 5 과정과;A fifth step of additionally registering the node in the connection information if the node is not its own node and omitting the additional registration if the node is its own node; 상기 4 과정 후, 상기 제 1단계에서 계산된 총 QoS값을 현재까지의 경로에 대한 총 라우트 QoS값에 대입하고, 현재까지의 노드를 나타내는 집합에 상기 라우트 경로를 등록하는 제 6 과정과;A sixth step of substituting the total QoS value calculated in the first step into the total route QoS value for the path up to now and registering the route path in a set representing the node up to now; 상기 각 과정이 완료되면 상기 호출된 계층내 노드의 다음 노드에 대한 경로 탐색을 위해, 상기 다음 노드에 대한 연결을 나타내는 집합에서 상기 수행되었던 라우트 집합을 뺀 후, 이 결과 메시지를 상기 경로탐색 수단을 호출한 곳으로 전송하는 제 7 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.After each process is completed, the route set means is subtracted from the set representing the connection to the next node for the route search for the next node of the node in the called hierarchy. And a seventh process of transmitting to the called place. 제 19항에 있어서,The method of claim 19, 상기 제 2 과정에서 기준 QoS 값을 만족하면, 소스 노드에 경로 발견을 통보하고, 중간에 발생되는 경로중 중첩도가 높은 경로를 발견하기 위해 경로발견메시지를 직전 노드에 전송하면서, 중첩도 값을 1로 변경하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.If the reference QoS value is satisfied in the second process, a path discovery message is notified to the source node, and a path discovery message is transmitted to the immediately preceding node in order to find a path having a high overlapping rate among intermediate paths, and the overlapping value is transmitted. Path discovery method supporting quality of service (QoS), characterized in that the change to 1. 제 18항에 있어서,The method of claim 18, 상기 제 2 과정에서 경로 발견 메시지를 수신하면 중첩도가 가장 높은 경로를 선정하여 경로가 발견되었음을 통보하고, 수신하지 못하면 경로 탐색을 실패하였음을 통보하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.When receiving the path discovery message in the second process, the path having the highest overlap is selected and notified that the path is found, and if not, the path discovery message is notified. How to navigate the route. 제 18항에 있어서,The method of claim 18, 상기 제 3 과정에서 중첩도 비교 경로 탐색 과정은 현재 노드에 저장되어 있는 중첩도보다 높은 중첩도의 경로가 존재하는지 판단하여 존재하면, 현재 중첩도 값을 상기 새로이 발견된 중첩도가 높은 경로의 값으로 변경하고, 중첩도를 1 증가 시키는 제 1 과정과;In the third process, the process of searching for the overlapping degree comparison path determines whether there is a path having a higher degree of overlap than the degree of overlapping stored in the current node. A first process of changing to and increasing the degree of overlap by one; 상기 과정 후, 현재까지의 경로에서 현재 노드를 제거하고 직전 노드에 경로발견 메시지를 전송하는 제 2 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.And a second process of removing the current node from the path up to the present and transmitting a path discovery message to the immediately preceding node after the above process. 정보통신 네트워크 상에서의 경로 탐색 방법에 있어서,In the path search method on an information communication network, 상기 네크워크의 계층이 다중레벨인 네트워크 상에서 단일 소스노드에서 단일 목적지 노드로 발생할 수 있는 다수의 경로 중 기준 QoS 값을 만족하는 모든 경로를 탐색하기 위해 상기 다중 레벨 네트워크 상에 존재하는 모든 경로에 있는 노드들의 연결정보를 나타내는 집합 및 서비스 품질(QoS)값을 초기화 시키는 제 1 과정과;Nodes on all paths existing on the multi-level network to search all paths satisfying the reference QoS value among the multiple paths that can occur from a single source node to a single destination node on a network where the layer of the network is multilevel. A first step of initializing a set indicating a connection information of the service and a quality of service (QoS) value; 상기 초기화가 완료되면 경로 탐색을 분산처리 하기 위해, 경로 탐색 할 시작점과, 기준 QoS 값을 지정하여 경로 탐색 수단을 호출하고, 상기 경로 탐색 수단에서의 결과 메시지를 수신 대기하는 제 2 과정과;A second step of calling the route search means by specifying a starting point to search for the route and a reference QoS value to distribute the route search when the initialization is completed, and receiving a result message from the route search means; 상기 호출에 따라 경로 탐색을 수행 시 한번 경우한 계층의 영역은 재 경유하지 않으며, 탐색된 다수의 경로 중 중복 노드가 존재하는 경로 중 하나를 제외한 나머지 경로는 삭제한 후, 결과 메시지를 상기 호출 대상으로 전송하는 제 3 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.When performing a path search according to the call, the area of a layer that has been one-time does not go through again, and deletes the remaining paths except one of the paths where duplicate nodes exist among a plurality of searched paths, and then outputs the result message. And a third process of transmitting the data to a path search method supporting quality of service (QoS). 제 23항에 있어서,The method of claim 23, wherein 상기 제 1 과정은 노드 0에서부터 노드 N까지 소스로부터 가장 짧은 라우트를 따라 임의의 계층내 노드에 쌓인 총 QoS 값들을 초기화 시키는 제 1 과정과;The first step of initializing total QoS values accumulated in nodes in an arbitrary layer along the shortest route from the source from node 0 to node N; 상기 임의의 계층내 노드에 대한 정보를 가지는 값과, 이 계층내 노드와 연결될 다음 노드를 가리키는 값을 초기화 시키는 제 2 과정과;A second step of initializing a value having information about a node in the arbitrary hierarchy and a value indicating a next node to be connected with the node in the hierarchy; 상기 임의의 계층내 노드와 그 옆의 임의의 노드 사이에 연결되는 링크의 QoS 값을 초기화 시키는 제 3 과정과;A third step of initializing a QoS value of a link connected between the node in any layer and any node next to it; 상기 제 3 과정에서 초기화 된 QoS값을 이용해 자신의 노드 다음에 연결될 노드의 정보를 나타내는 집합을 구축하는 제 4 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.And a fourth step of constructing a set representing information of a node to be connected next to its own node using the QoS value initialized in the third step. 제 24항에 있어서,The method of claim 24, 상기 제 4 과정에서 자신의 노드 다음에 연결될 노드의 정보를 나타내는 집합을 구축할 경우, 현재의 계층내 노드에서 다음에 연결될 계층내 노드가 자기 자신의 노드가 아니면서 패스가 연결된 노드이면 다음 연결 노드를 표시하는 집합에 추가로 등록하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.In the fourth step, when a set representing information about a node to be connected after the node is constructed, if the node in the layer to be connected next is a node in which the path is connected without being a node of the node in the current layer, the next connection node. Path searching method supporting quality of service (QoS), characterized in that the additional registration to the set indicating. 제 23항에 있어서,The method of claim 23, wherein 상기 제 2 과정은 상기 제 1 과정에서 초기화가 완료되면 현재 계층내 노드가 소스노드에 해당하는지 여부를 판단하는 제 1 과정과;The second process includes a first process of determining whether a node in a current layer corresponds to a source node when initialization is completed in the first process; 상기 판단결과 소스노드이면 경로를 나타내는 집합을 현재 노드로 초기화하고, 상기 집합의 QoS 값을 '0'로 초기화시킨 다음 경로 탐색 수단을 호출하는 제 2 과정과;A second step of initializing a set indicating a path to a current node if it is a source node, initializing a QoS value of the set to '0', and then calling a path searching unit; 상기 판단결과 소스노드가 아니면 이전 노드에 대한 경로 탐색을 완료한 후 전송된 결과 값인 노드와 이때의 경로를 나타내는 집합 및 값을 이용하여 경로 탐색 수단을 호출하는 제 3 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.And a third process of calling a path search means by using a set and a value indicating a node which is a result value transmitted at the time of completing a path search for a previous node and a path at this time if it is not the source node as a result of the determination. Path discovery method that supports quality of service (QoS). 제 23항에 있어서,The method of claim 23, wherein 상기 제 3 과정에서 수행되는 경로탐색과정은 현재까지 경로 탐색된 노드까지의 총 QoS값을 계산하는 제 1 과정과;The path search process performed in the third process may include a first process of calculating a total QoS value of a node searched for a path to date; 상기 총 QoS값이 계산되면, 이때의 총 QoS값과 다른 경로를 통해 현재 노드까지 도달하여 기 계산되었던 총 QoS값과 비교하여 기 계산되었던 값이 더 작으면 현재 탐색 중이던 경로 탐색을 중단하고 다른 경로 탐색 호출이 있기를 대기하는 제 2 과정과;When the total QoS value is calculated, if the calculated value is smaller than the total QoS value previously reached and reached to the current node through a path different from the total QoS value at this time, the search for the current path is stopped and the other path is stopped. A second process of waiting for a search call; 상기 비교결과 현재 도착한 경로의 총 QoS값이 더 작으면, 새로 발견된 경로들의 중간 노드와 이전 경로들의 중간 노드의 중복 여부를 판단하는 제 3 과정과;A third step of determining whether the intermediate node of the newly discovered paths and the intermediate node of the previous paths overlap if the total QoS value of the currently arrived path is smaller as a result of the comparison; 상기 판단결과 중복된 노드가 없으면, 현재 경로로 도착한 경로의 마지막 노드가 자신의 노드와 동일한가의 여부를 판단하는 제 3 과정과;If there is no duplicate node as a result of the determination, determining whether the last node of the route arriving at the current route is the same as its own node; 상기 판단결과 자신의 노드가 아니면 이 노드를 연결 정보에 추가 등록시키고, 자신의 노드이면 추가 등록을 생략하는 제 4 과정과;A fourth step of additionally registering the node in the connection information if the node is not its own node and omitting the additional registration if the node is its own node; 상기 4 과정 후, 상기 제 1 과정에서 계산된 총 QoS값을 현재까지의 경로에 대한 총 라우트 QoS값에 대입하고, 상기 발견된 경로를 기존 경로 집합에서 우선 순위에 따른 위치에 입력하는 제 5 과정과;A fifth step of substituting the total QoS value calculated in the first step into the total route QoS value for the current path after the step 4 and inputting the found path to a position according to priority in the existing path set; and; 상기 5 과정 후, 현재까지 경유한 모든 중간 노드 집합에 상기 새로 발견된 중간 노드 정보를 추가하고, 새로운 경로 정보를 노드의 다중 경로 집합에 추가하는 제 6 과정과;A sixth step of adding the newly found intermediate node information to all the intermediate node sets passed through to date and adding the new path information to the multipath set of nodes after the fifth step; 상기 각 과정이 완료되면 상기 호출된 노드의 다음 노드에 대한 경로 탐색을 위해, 이 결과 메시지를 상기 경로탐색 수단을 호출한 곳으로 전송하는 제 7 과정을 구비하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.Quality of Service (QoS) characterized in that it comprises a seventh process of transmitting the resulting message to the place where the path search means is called for the path search for the next node of the called node when each process is completed. Path navigation method that supports. 제 27항에 있어서,The method of claim 27, 상기 제 3 과정에서 판단 결과 중복 노드가 존재하면 현재 노드는 새로운 경로로 추가할 필요가 없으므로 경로 탐색 과정을 중단하는 것을 특징으로 하는 서비스 품질(QoS)을 지원하는 경로 탐색 방법.If there is a duplicate node as a result of the determination in the third process, the current node does not need to add a new path, and thus the path search process is interrupted.
KR1019990025632A 1999-06-23 1999-06-30 Quality of Service(QoS) based generic shortest path search method KR100343416B1 (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
KR1019990025632A KR100343416B1 (en) 1999-06-30 1999-06-30 Quality of Service(QoS) based generic shortest path search method
US09/595,862 US6813272B1 (en) 1999-06-23 2000-06-16 QoS-based routing method

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
KR1019990025632A KR100343416B1 (en) 1999-06-30 1999-06-30 Quality of Service(QoS) based generic shortest path search method

Publications (2)

Publication Number Publication Date
KR20010004871A true KR20010004871A (en) 2001-01-15
KR100343416B1 KR100343416B1 (en) 2002-07-11

Family

ID=19597477

Family Applications (1)

Application Number Title Priority Date Filing Date
KR1019990025632A KR100343416B1 (en) 1999-06-23 1999-06-30 Quality of Service(QoS) based generic shortest path search method

Country Status (1)

Country Link
KR (1) KR100343416B1 (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR100710896B1 (en) * 2006-01-26 2007-04-27 연세대학교 산학협력단 Method of communicating multimedia in dynamic communication environments
CN110807542A (en) * 2019-09-26 2020-02-18 深圳市保臻社区服务科技有限公司 Method, apparatus and computer readable storage medium for intelligently orchestrating system business capabilities
CN110837914A (en) * 2019-09-26 2020-02-25 深圳市保臻社区服务科技有限公司 Method and device for promoting management charge payment rate and computer readable storage medium

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR0146545B1 (en) * 1995-06-08 1998-08-17 양승택 Band width control and call admission method in the atm access network with ring structure
JP2723097B2 (en) * 1995-12-04 1998-03-09 日本電気株式会社 QOS routing device
JP2943677B2 (en) * 1995-12-06 1999-08-30 日本電気株式会社 Line detour control system for asynchronous transfer mode communication
US6633569B2 (en) * 1998-04-16 2003-10-14 Samsung Electronics Co., Ltd. System and method for routing data cells through an ATM architecture using quality of service data in a service control point

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR100710896B1 (en) * 2006-01-26 2007-04-27 연세대학교 산학협력단 Method of communicating multimedia in dynamic communication environments
CN110807542A (en) * 2019-09-26 2020-02-18 深圳市保臻社区服务科技有限公司 Method, apparatus and computer readable storage medium for intelligently orchestrating system business capabilities
CN110837914A (en) * 2019-09-26 2020-02-25 深圳市保臻社区服务科技有限公司 Method and device for promoting management charge payment rate and computer readable storage medium

Also Published As

Publication number Publication date
KR100343416B1 (en) 2002-07-11

Similar Documents

Publication Publication Date Title
US7656857B2 (en) Directed acyclic graph computation by orienting shortest path links and alternate path links obtained from shortest path computation
US7969992B2 (en) Method and system for optimizing routing of data packets
US7586894B2 (en) Communication system capable of selecting optimum gateway for terminals
CA2484502C (en) Hierarchical mobile ad-hoc network and methods for performing reactive routing therein using dynamic source routing (dsr)
US7281057B2 (en) Hierarchical mobile ad-hoc network and methods for performing reactive routing therein
US6718394B2 (en) Hierarchical mobile ad-hoc network and methods for performing reactive routing therein using ad-hoc on-demand distance vector routing (AODV)
US6628620B1 (en) Hierarchical modile ad-hoc network and methods for route error recovery therein
US8473633B2 (en) Method of routing packets in a packet network
TW200836517A (en) Mesh node mobility across static and mobile mesh networks
KR100343416B1 (en) Quality of Service(QoS) based generic shortest path search method
KR100296076B1 (en) Quality of Service(QoS) based generic shortest path search method
KR101175086B1 (en) Multi-topology and multi-service routing system
Hong et al. Dynamic group support in LANMAR routing ad hoc networks
Asokan et al. Design and Performance Analysis of Proxy Discovery Routing in Mobile Ad Hoc Networks
Redey et al. Surge routing in ATM networks

Legal Events

Date Code Title Description
A201 Request for examination
E902 Notification of reason for refusal
AMND Amendment
E601 Decision to refuse application
J201 Request for trial against refusal decision
AMND Amendment
AMND Amendment
B701 Decision to grant
GRNT Written decision to grant
FPAY Annual fee payment

Payment date: 20130605

Year of fee payment: 12

FPAY Annual fee payment

Payment date: 20140603

Year of fee payment: 13

FPAY Annual fee payment

Payment date: 20150605

Year of fee payment: 14

FPAY Annual fee payment

Payment date: 20160809

Year of fee payment: 15

FPAY Annual fee payment

Payment date: 20170605

Year of fee payment: 16

LAPS Lapse due to unpaid annual fee