EP1258103A2 - Apparatus and method for network data modeling - Google Patents

Apparatus and method for network data modeling

Info

Publication number
EP1258103A2
EP1258103A2 EP01909154A EP01909154A EP1258103A2 EP 1258103 A2 EP1258103 A2 EP 1258103A2 EP 01909154 A EP01909154 A EP 01909154A EP 01909154 A EP01909154 A EP 01909154A EP 1258103 A2 EP1258103 A2 EP 1258103A2
Authority
EP
European Patent Office
Prior art keywords
network
computer system
nodes
layer
entities
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Withdrawn
Application number
EP01909154A
Other languages
German (de)
English (en)
French (fr)
Inventor
Terry P. Lindsey
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Orillion International Inc
Original Assignee
Orillion International Inc
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Orillion International Inc filed Critical Orillion International Inc
Publication of EP1258103A2 publication Critical patent/EP1258103A2/en
Withdrawn legal-status Critical Current

Links

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L41/00Arrangements for maintenance, administration or management of data switching networks, e.g. of packet switching networks
    • H04L41/08Configuration management of networks or network elements
    • H04L41/085Retrieval of network configuration; Tracking network configuration history
    • H04L41/0853Retrieval of network configuration; Tracking network configuration history by actively collecting configuration information or by backing up configuration information

Definitions

  • the present invention relates generally to networks. More particularly, the present invention relates to an apparatus and method for modeling the physical and the logical configurations of a network.
  • the definition of a network is a system of interconnected elements.
  • Telecommunications networks can be described in terms of relational databases and object databases.
  • a brief discussion of relation database technology can be found in the "Encyclopedia of Computer Science” Third Edition by Anthony Ralston and Edwin D. Reilly (Van Nostrand Reinhold, New York, 1993) pages 1161-1165. Excerpts from that reference are paraphrased herein for convenience .
  • a relational database is one that is built and operated in accordance with the "relational model of data" proposed by E.F. Codd in his 1970 article entitled “A Relational Model of Data for Large Shared Data Banks," which may be found in Comm. ACM, volume 13, 6, pages 377-387. The Codd model has gained widespread acceptance and has engendered a great deal of additional study covering numerous aspects of database theory and practice. MISSING AT THE TIME OF PUBLICATION
  • the relational model provides a simple and intuitive method for defining a database, storing and updating data in it, and submitting queries of arbitrary complexity to it. More important, it provides a firm, sound and consistent foundation for all the other topics that database management systems must commonly embrace, such as security and authorization, database integrity, transaction management, recoverability, and distribution of data.
  • the relational model is founded on the mathematical disciplines of predicate calculus and set theory. All data in a relational database is organized as a set of two- dimensional arrays, or tables .
  • the mathematical term relation occurs in the study of predicate logic but is most commonly used in connection with predicates in exactly two variables. See, for example, E.J. Lemmon, "Beginning Logic” (London: Nelson, 1965) .
  • a predicate in any nonnegative number, n, of variables is considered an n-ary relation. For instance, a ternary (3- ary) relation could be "where did who do what . "
  • relational table is the common bank check data table, where the verb of the predicates (check written) has become a relation name, and the variables
  • attribute names that are defined in the relational schema of this relation. Normally, there is a set of permissible values for the attribute in question that is part of a domain that underlies the database.
  • n- tuple A particular instantiation of a predicate in n variables is represented by an n- tuple.
  • relational database nomenclature There are other common terms in relational database nomenclature, namely: Table for relation; Heading for relational schema; Column (name) for attribute (name) ; Row for (n-) tuple; and Body (or extension) for the set of tuples "in” the relation.
  • a relational database is a collection of relations.
  • a relational database schema is a collection of relation schemas, along with a collection of domain definitions, with the possible addition of integrity rules, access authorizations, and so on.
  • a relational database management system must minimally support the definition of domains and relation schemas, the insertion, updating and deletion of tuples, and a relational query language for defining new relations that may be derived from the "base relations" of the database.
  • An example of a relational query language would be the "Structured Query Language” more commonly known by its acronym: SQL. See also, Jeffry D. Ullman, “Principles of Database Systems” 2nd Ed., Computer Science Press (Potomac, Maryland, 1982) and C.J. Date, "An Introduction to Database Systems: Volume I” 5th Ed., “Part III: The Relational Model” (Addison- Wesley, Reading, Massachusetts, 1989) .
  • an object-oriented database system must satisfy two criteria: it should be a database management system (DBMS), and it should be an object-oriented system, i.e., to the extent possible, it should be consistent with the current set of object-oriented programming languages, such as C++ and Java.
  • the first criterion translates into five features: persistence, secondary storage management, concurrency, recovery and an ad hoc query facility.
  • the second criteria translates into eight features: complex objects, object identity, encapsulation, types or classes, inheritance, overriding combined with late binding, extensibility and computational completeness.
  • the object-oriented model is based on objects, which are structures that combine related code and data.
  • objects are structures that combine related code and data.
  • the description of an object is contained in its class declaration.
  • the basic properties of objects are called encapsulation, inheritance and polymorphism. We will use invoices as an example to illustrate these points.
  • Encapsulation means that code and data are packaged together to form objects, and that the implementation of these objects can be hidden from the rest of the program. For instance, a class declaration for an item might look like this: class Item ⁇ Private :
  • Virtual float ServiceTime () ; Virtual logical Available ();
  • Public functions may be accessed by any function or class.
  • Inheritance is a powerful mechanism that lets a new class to be built using code and data declared in other classes. This allows common features of a set of classes to be expressed in a base class.
  • Switch is an Item it has all the code and data defined for Item.
  • Items For instance, telecommunications equipment might be available for a given time period whereas a simple cable is either available or not.
  • Available() a function called Available()
  • C++ this is done with virtual functions.
  • class Item ⁇ Private
  • class Switch public Item ⁇ int numberjports; int ports_in_use; PtString connector_type; public
  • a function that calculates the instant availability of an item can ask each item for its availability without knowing how it is computed for that item.
  • This code will, be valid for any Item class--even new classes that are added later! Every object in an object-oriented system has its own identity. This identity does not depend on the values it contains. For example, in C++ the address of an object is used as its object identity. This allows pointer references to establish the relationships among objects. Relationships among objects are generally established using pointers. Container classes can be created to express many to one relationships. For instance, if an invoice has a date, a. customer, and a set of items, we could declare it like this: class Invoice ⁇
  • Relational database systems revolutionized database management systems in the 1980s, and object oriented programming languages are revolutionizing software development in the 1990s. These systems seem to have complementary strengths. Relational database systems are good for managing large amounts of data; object oriented programming languages are good at expressing complex relationships among objects. Relational database systems are good for data retrieval but provide little support for data manipulation; object oriented programming languages are excellent at data manipulation but provide little or no support for data persistence and retrieval . Many people are trying to combine the two in order to manage large amounts of data with complex relationships.
  • Relational database systems are based on two-dimensional tables in which each item appears as a row. Relationships among the data are expressed by comparing the values stored in these tables. Languages like SQL allow tables to be combined on the fly to express relationships among the data.
  • the object model is based on the tight integration of code and data, flexible data types, hierarchical relationships among data types, and references. Expressing these basic structures in the two- dimensional tables of relational database systems is not trivial, and this is only the first step. The interface between the two systems must correctly handle data manipulation and data retrieval.
  • Object oriented database systems are usually much simpler to use in object oriented programs .
  • traffic is the flow of information or messages throughout the network. Consequently, a definition of a telecommunications network is a system of interconnected elements linked by facilities (i.e., physical connections) over which traffic will flow.
  • the traffic may be conversations, information, or complex video or audio services.
  • the telecommunications network must also be able to control the interconnected elements. According to the prior art, two distinct types of networks can be identified: the direct connect network and the centralized network.
  • each network component is directly connected to every other network component. This arrangement results in a congested and costly network configuration.
  • the direct connection formula is:
  • Theodore Vail was responsible for the telephone network as we know it today. Because of Vail, the early railroads were used as the model for development of a new kind of telephone network - the centralized telephone network.
  • the basic components of the Railroad Network include: A hub (switch); a trunk; a local; and a distribution.
  • the centralized telephone network looks very much like the configuration of a railroad network.
  • Various network components are connected to a centralized point (such as a switch in a central office) which handles switching and routing functions.
  • a centralized point such as a switch in a central office
  • the functions of control and interconnection i.e., switching
  • Centralized systems are virtually unlimited in how large they can become. Their major advantage is that customers can be interconnected through switching centers for worldwide communications. Additional considerations of the centralized network are: Some loss of control over the call by the customer; the switch controls routing and connection (i.e., if there, is excessive congestion a call may be blocked) ; possible loss of privacy (although there are many safeguards against this) ; location of centralized switching system; and capacity.
  • the telecommunications network is comprised of one or more transmission facilities, a local loop; an IOF
  • Interoffice Facilities Interoffice Facilities
  • switching systems switching systems
  • CPE customer premise equipment
  • a transmission facility is a communication between two end points.
  • This communication path can also be referred to as a channel, a circuit or a trunk.
  • the communication path (also known as network facilities) can be classified into two broad categories: Local Loop and Interoffice Facility (IOF) /Trunk.
  • the local loop is a circuit that connects a customer to the telephone network.
  • the local loop also provides the customer with access to the switching system.
  • the term "loop" is derived from the pair of wires that forms the electrical path between the customer and the central office.
  • the local loop is also referred to as the subscriber loop.
  • the CPE is connected to the central office by means of the drop wire, distribution cable, and feeder cable which are cross-connected at specific points (e.g., terminals or ports) .
  • a Serving Area Interface is also known as a B- Box. (cross-connect box) .
  • An SAI includes Interoffice Facilities (IOF) that consist of trunks that connect switching systems.
  • the IOFs can carry multiple transmissions over a single path rather than a single transmission over a single path.
  • the IOF has the necessary equipment on each end, and the facility (i.e. cable) itself. Historically, copper cable was the facility used. Today, however, the facility may also be coaxial cable, radio links (microwave), and/or fiber optics.
  • switching systems The primary functions of switching systems are to provide call setup and routing; Call supervision; and Customer I.D. and phone numbers. These are accomplished by interconnecting the facilities. Switching systems located at the central office (CO) that are used to provide dial tone and ringing are referred to as end offices or local switches. These switches can also be interconnected with other switches. Another type of switch, tandem, is used as a hub to connect switches and provide routing. (No dial tone is provided to the customer.)
  • the transmitter There are three components of any transmission system, namely: the transmitter; the receiver; and the communication path.
  • the CPE or customer premises equipment is the transmitter and receiver.
  • the media twisted pair copper, coaxial cable, optical fiber, radio waves
  • the media that is connected to the CPE is the path.
  • databases have been used by network based companies, in particular, telecommunication companies, for tracking the components and configuration of network systems . These databases are structured to track known configuration information within one type of network.
  • Such databases fail to be able to support the introduction of new technologies into their data structures.
  • a database that organizes and tracks private line circuits cannot support or organize information regarding frame relay or IP technologies.
  • a database capable of tracking the physical and logical connectivity of a network of digital cross-connect switches cannot easily accommodate the structures necessary for the SONET network over which its inter-machine trunk circuits are carried.
  • new databases or complex extensions to existing databases are required to support new communication technologies or application specific information.
  • the end result is a series of disjointed databases with multiple appended tables, all of which cannot be operated, managed, or understood by a single individual . Consequently a large team of people and resources are needed to track the network configuration information and the interdependencies between the network components .
  • the present invention relates to a method and apparatus for modeling a network.
  • the method entails several steps.
  • one of the first steps is to provide information about the entities that make up the network. Thereafter, one or more of the entities are identified as either a node or an edge. The edges and nodes are then used to define a set of layers with the condition that each layer consists of at least one node . These nodes and edges can be a member of only one layer. That is, edges that are contained within a layer must terminate at one or more nodes that are also contained within that layer.
  • the method further includes the step of classifying one or more relationships between entities in one layer and entities in another layer.
  • the layers are organized in an order, i.e., a layer order.
  • Each layer order is defined as a hierarchy with a postal end and a distal end with the distal end being downward from the postal end.
  • a first layer contains a postal node.
  • This postal node is capable of having a distal relationship only with one or more distal nodes that are contained within one or more layers that are distal to the first layer.
  • each distal node may have one and only one relationship with a single postal node.
  • the present invention also relates to a computer system that models a network configuration.
  • the computer system includes a processor, a memory and an input media.
  • the input media is constructed and arranged to enable a user to define a set of layers with one or more nodes and one or more edges.
  • Each layer is defined as having at least one node .
  • These nodes or edges may be a member of only one layer. That is, edges that are contained within a layer must terminate at one or more nodes that are also contained within that layer.
  • the computer system further includes a database. This database is constructed and arranged to contain attributes of the edges and nodes .
  • the database may be a relational database, an object database or an object-relational database.
  • the computer system further includes an output media.
  • the output media is constructed and arranged to display the network configuration to a user.
  • the input media is further constructed and arranged to enable a user to input a query to said database about the network configuration.
  • the computer system is constructed and arranged to enable a user to model any or all network entities that comprise a complete set of complex network configuration information, wherein the ability to model may comprise identifying, classifying, loading, storing, querying, or displaying the network entities.
  • Figure lb illustrates a set of disconnected nodes of the present invention
  • Figure lc illustrates an edge of the present invention
  • Figure Id illustrates an edge connecting two nodes of the present invention
  • Figure le illustrates two disconnected sets of nodes linked together by two edges of the present invention
  • Figure If illustrates a set of entities of the present invention
  • Figure lg illustrates a graph of the present invention
  • Figure lh illustrates a connected containment graph of the present invention
  • Figure 2a illustrates a top view of a connectivity graph of the present invention
  • Figure 2b illustrates a side view of the connectivity graph of Figure 2a that forms a layer of the present invention
  • Figure 3 illustrates a containment graph that identifies relationships between layers of the present invention
  • Figure 4a illustrates a set of entities having identified hierarchical relationships that form a set of zero or more tree graphs of the present invention
  • Figure 4b illustrates two sets of entities with relationships there-between of the present invention
  • Figure 4c illustrates Figure 4b within a connectivity graph of the present invention
  • Figure 5 illustrates an unorganized set of network information of the present invention
  • Figure 6 illustrates the separation of the network information of Figure 6 into two sets of entities of the present invention
  • Figure 7 illustrates the characterization of the network entities of Figure 6 into classes of the present invention
  • Figure 8 illustrates the classes of Figure 7 with connectivity relationships identified to form layers of related connectivity graphs of the present invention
  • Figure 9 illustrates the hierarchical relationships of the related connectivity graphs of Figure 8.
  • Figure 10 illustrates containment relationships between the classes of Figure 9;
  • Figure 11 is a flowchart of the method of the present invention.
  • Figure 12 illustrates an organization of definitional terms of the present invention.
  • the present invention provides a method and apparatus for modeling network configuration data describing network systems, such as are found in networks in general, and telecommunication networks in particular.
  • the present invention also provides a paradigm for identifying and classifying the entities that make up a complex network into a set of nodes and edges . These nodes and edges are then arranged into connectivity and hierarchical graphs that can be displayed to a user (person) to illustrate the structure and characteristics of the network.
  • the present invention models the network system by storing the network configuration data into databases of related components and then establishing relationships (associations) between individual components across the databases.
  • associations associations
  • Attribute An attribute is a parameter that describes, or partially describes, an entity. Every attribute has an associated attribute name or identifier.
  • a cable is a type of span that (i) provides a conductive pathway for conducting electromagnetic
  • a cable may, but is not required to, contain one or more circuits. Examples of cables include, but are not limited to coaxial cables, fiber optic cables, metallic cables, and the like.
  • the conductive pathway traversed by radio signals can also be a form of cable.
  • a circuit is a type of span that either: (i) provides an information pathway or a signal pathway between two or more logical ports, or (ii) is a set of one or more related circuits that form a connected graph.
  • a circuit may, but is not required to, contain one or more other circuits. Examples of circuits include, but are not limited to, isochronous data circuits, Frame Relay virtual circuits, ATM virtual circuits, carrier circuits, trunk circuits, customer circuits, multi-drop circuits, broadcast circuits, and the like.
  • Complex Network A complex network is a network that is described and or represented by two or more related simple graphs to describe or to represent the network.
  • a conduit is a type of span that either: (i) describes or constrains the route traversed by a cable between two or more locations, or (ii) is a set of one or more related conduits that form a connected graph.
  • a conduit may, but is not required to, contain one or more other conduits.
  • a conduit may, but is not required to, contain one or more cables. Examples of conduits include, but are not limited to, wire wrap bundles, aluminum conduit, cable trays, and the like.
  • Another example of a conduit is a multi-conductor cable where the conductors are differentiated into two or more sets of conductors where each set is associated with a different cable.
  • Another example of a conduit is a right-of-way for buried cable, or any means of expressing the route of a cable.
  • Connectivity is a class that inherits the properties of edges and describes a type of peer relationship between two nodes indicating that the two nodes are physically, or logically attached to each other.
  • Connectivity Graph A connectivity graph is a graph wherein every relationship (i.e., edge) is of the same connectivity class. Each instance of an edge within the connectivity graph must derive from the same connectivity class.
  • Connectivity Relationship A connectivity relationship is a type of peer relationship wherein the relationship denotes physical or logical attachment.
  • Containment Containment is a class that inherits the properties of edges and describes a type of hierarchical relationship between two nodes indicating that a first node A includes within it a second node B.
  • a connected graph is a type of graph wherein every node belonging to the graph is related to every other node belonging to the same graph through 1) at least one edge, or 2) two or more graphically connected edges .
  • Edge An edge is a line on a graph drawn between two nodes on the same graph. An edge indicates that a specific (i.e. identified) type of relationship exists between the two nodes on which the edge terminates . Each and every edge identifies a single instance of a relationship class.
  • Entity An entity is a set of attributes that are uniquely distinguishable from the attributes of any other entity, whether or not the other entity can be described, or partially described, by the same set of attributes.
  • An entity's uniqueness can be fully established by the uniqueness of the value of at least one attribute, or by the uniqueness of the values of any specified combination of attributes.
  • Graph A graph is a set of zero or more nodes and edges, wherein every edge within the set must be graphically connected to exactly two nodes, and wherein no two edges may be of the same class and also terminate on the same two nodes. Any subset of graphical elements, all belonging to the same graph, also forms a graph, if such a subset would otherwise qualify as a graph.
  • a graph with zero nodes (and, thus, zero edges) is called a null graph. All graphs with one or more nodes are non-null graphs.
  • Graphical Element A graphical element is either a node or an edge .
  • Hierarchy or Hierarchical Graph A hierarchy or a hierarchical graph is a graph wherein every relationship
  • edge is of the same hierarchical class.
  • a hierarchical relationship is a type of relationship, wherein if a first node A has a hierarchical relationship to a second node B, then the second node B must also have a reciprocal and non-identical relationship to the first node A.
  • a hierarchical relationship can be described as having two directions: postal or distal. If the first node A has a distal relationship with a second node B, then the second node B will be permitted to have a postal relationship that is reciprocal to the first distal relationship with the first node A.
  • a node can have a distal relationship with more than one distal nodes.
  • a node can have a postal " relationship with only one postal node having a reciprocal distal relationship.
  • a layer is defined as a single connectivity graph.
  • Location A location is a type of terminator that corresponds to a position in three-dimensional space. Locations may, but are not required to contain certain types of other locations. Locations may, but are not required to, contain certain types of network elements. Examples of locations include, but are not limited to regions, cities, buildings, rooms, telephone poles, racks, shelves, any geographical coordinates, and the like.
  • Logical Port A logical port is a type of terminator corresponding to a configurable and/or discernable subset of an electrical or electromagnetic (including optical) signal passing through a given physical port. Logical ports may, but are not required to, contain certain types of other logical ports.
  • logical ports include, but are not limited to, all discernable, or configurable portions of a signal associated with a physical port, including portions defined by Frame Relay DLCI's, or ATM VPl/VCI's, one frequency out of a set of frequency multiplexed signals, DS-1 signals that are part of a DS-3, and the like.
  • a network is any set of information that can be organized into a set of one or more terminators and spans and represented as one or more related simple graphs.
  • a network element is a type of terminator wherein each such terminator corresponds to an electronic, electrical, or mechanical device, or identifiable portion of a device, that is a component of a network.
  • Network elements may, but are not required to, contain certain types of other network elements. Examples of network elements include, but are not limited to, telephone switches, multiplexers, digital cross-connect switches, fiber optic terminal sets, patch-panels, air conditioners, power supplies, batteries, any identifiable physical subcomponent of a network element, print circuit cards, physical ports, and the like.
  • Node is a graphical element that is depicted as a point on a graph.
  • a graphical pathway is a connected graph containing more than one edge .
  • Peer Relationship A peer relationship is a relationship, wherein if a first node A has a peer relationship to a second node B, then the second node B must also have the same identical relationship to the first node A.
  • Physical Port A physical port is a type of network element that is related through a hierarchy to another network element and can be connected to a cable. Examples of physical ports include, but are not limited to, optical connectors, coax connectors, multi-pin connectors, radio or microwave antennas, and the like.
  • Two simple graphs are said to be related if, and only if, at least one node is an element of both graphs, or if both graphs are related to a common third graph.
  • a set of more than two simple graphs are defined as interrelated if, and only if, any first graph in the set is related to all the other graphs in the set.
  • Relationship is an entity whose attributes describe an association between two nodes. Where entities are depicted as nodes on a graph, the relationships are depicted as edges.
  • Ring A ring is a series of three or more graphically connected edges, all of the same class, wherein the first edge and the last edge in the series are also graphically connected.
  • Simple Graph A simple graph is defined as a connected graph wherein all of the edges belong to the same class.
  • Span A span is a class that inherits the properties of nodes. Spans generally include, but are not required to be, all entities that can be associated with bridging the space (whether physical or logical) between terminators.
  • Terminator A terminator is a class that inherits the properties of nodes. Examples of terminators include, but are not limited to, locations, ports, network elements, and the like.
  • Figure 12 illustrates the arrangement of definitions into something akin to an object hierarchy. At the top is the most basic definition, entity 1202. As defined previously, an entity is merely a set of attributes that are uniquely distinguishable from the attributes of any other entity. Below entity 1202, the definitions split into two broad categories: nodes 1204 and edges 1206.
  • Nodes 1204 broadly speaking, pertain to physical elements that make up the complex network.
  • Node objects are instantiated as either terminators 1208 or spans 1210. Just what exactly is a terminator or a span varies from network to network. While something can be classified as a terminator in one network is better classified as a span in another network and vice versa.
  • Edges are instantiated as either containment 1212 or connectivity 1214. As shown in Figure 12, containment 1212 is used to model hierarchical relationships and connectivity 1214 is used to model peer relationships. In the preferred embodiment, containment edges and connectivity edges are mutually exclusive.
  • a hierarchical set of network elements would be a network device that contains several sub-systems, where each subsystem contains other sub-components.
  • An example of a hierarchical set of network elements would be a card cage. Card cages contain printed circuit cards . Printer circuit cards in turn contain physical ports.
  • An example of a point-to-point connection would be a cable that connects a physical port on one device to a physical port on another device.
  • An example of a concatenation relationship is the interconnection of a number of shorter circuits to form a more complex circuit that connects multiple locations, network elements, and the like.
  • a user By tracking all such relationships within a network, a user (person or software program) can determine the impact of a failure of one small piece of equipment (e.g. a physical port) on the customers of the network.
  • a user person or software program
  • the modeling of simple network configuration information has been accomplished by the ad hoc construction of many application specific models.
  • no model existed where an arbitrary complex network configuration could be decomposed and its components organized into a common data structure regardless of the component type, network service, or application.
  • the method of the preferred embodiment of the present invention is based on the desire to utilize graph theory to describe and to model the configuration data for most (if not all) real-world networks including complex networks.
  • real-world networks are typically too complex to be represented as a simple graph. Instead, real-world networks must typically be depicted as a diverse and complex set of nodes and edges belonging to many different classes. This diversity and complexity makes it very difficult to design computer systems and algorithms that can deal with the many tasks associated with managing such information.
  • the present invention provides a framework and paradigm for reducing any network to a set of related simple graphs. The method of the present invention set forth can be accomplished in a series of sequential steps or may be employed on a piece-wise or iterative basis.
  • any real-world network can be modeled by reducing the network configuration data to a set of interrelated simple connectivity and hierarchical graphs.
  • the benefit of the application of the method of the present invention is that generic computer systems and algorithms can be utilized to perform many of the tasks associated with managing such network configuration data.
  • Step 1104. identifying (collecting) all of the relevant network configuration data and grouping the data elements into sets of information called entities, step 1104.
  • Each entity will be identified with at least one node or one edge on one simple connectivity graph in a resulting set of simple connectivity graphs.
  • Nodes generally include all entities that can be associated with a component of the network.
  • Edges generally include all entities that can be associated with a relationship between two network components. Edges are depicted as graphical lines connecting the graphical nodes. Each individual entity must be classified as either a node or an edge .
  • each terminator and each span into at least one layer, step 1108. It is desirable, but not required, that each terminator and each span appear in only one layer.
  • any individual node be associated with only one simple hierarchical graph for each class of relationship.
  • any individual edge be associated with only one simple hierarchical graph for each class of relationship.
  • step 1114 Upon completing the tasks for an entire network' s configuration data, step 1114, the resulting classified data is easily mapped into almost any form of data repository or database.
  • One consequence -- and benefit -- of rigorously applying the method of the present invention is that the user is unable to include any entity more than once within a layer and/or within a simple hierarchical graph. Having an entity defined more than once is an indication of potential incompleteness in the data collection effort. While such completeness is desirable, it is not required.
  • Telecommunication network configuration data represents one of the most complicated data management problems that exist today and one of the most productive areas for applying the method of the present invention.
  • Figures la through lg illustrate the building blocks for the method and apparatus of the present invention.
  • Figure la shows a single node 12.
  • Figure lb illustrates a set of nodes 12.
  • Figure lc shows an edge 14.
  • Figure Id shows an edge 14 establishing a relationship between two nodes 12.
  • Figure le shows a more complex relationship having two edges 14 that identify a relationship between two sets of nodes 12, respectively.
  • Figure If illustrates a set of network entities 16 such as those shown in Figure le.
  • Figure lg shows a simple graph 18 of the present invention.
  • the graph 18 can illustrate either a connectivity graph or a hierarchical (tree) graph.
  • the direction from the first entity toward the one or more second entities shall be called the forward or downward direction that moves from the postal end toward the distal end.
  • the direction from the one or more second entities toward the first entity shall be referred to as the reverse or upward direction meaning from the distal end toward the postal end.
  • each direction within the hierarchical relationship must be defined in terms of the logical inverse of the other direction. Unless otherwise defined, a single entity can have one and only one reverse hierarchical relationship of the same relationship class.
  • the upward and downward directions mentioned above are merely illustrative of an embodiment of the present invention. Alternate embodiments of the present invention, the directions of the postal and distal relationships can be reoriented in any manner.
  • More complex hierarchies can be formed by combining the graphs depicting one or more simple hierarchies wherein the first entity of one simple hierarchy also belongs to the one or more second entities of another simple hierarchy, where the hierarchical relationships of both simple hierarchies are of the same class.
  • all hierarchies have an implied layered structure relative to the graph formed by all members of the hierarchy.
  • Hierarchies are depicted by tree graphs .
  • Figure lh shows a hierarchical graph 18h containing a set of nodes 12 in a hierarchical (inverted tree) relationship.
  • the first node 12 (designated "B") is at the topmost postal position. All of the nodes 12 to which the "B" node 12 is connected to lie in a downward or distal direction from the "B" node.
  • Figure lh the first set of distal nodes are designated “Bll,” “B12,” and “B13.”
  • the "B13” node 12 itself has a relationship with four nodes 12 designated “B131,” “B132,” “B133,” and “B134.”
  • the "B133” node 12 itself has a relationship with four additional nodes 12 designated “B1331,” “B1332,” “B1333,” and “B1334.”
  • Figure 2a shows a connectivity graph 18c containing a set of nodes 12 that are joined by edges 14 to form a simple network configuration.
  • Figure 2b shows a side view of the connectivity graph 18c of Figure 2a. When the connectivity graph 18c, such as the one in Figure 2a, is rotated flat, it is termed a layer 20 as shown in Figure 2b.
  • Figure 3 shows a series of layers 20, each having entities (nodes 12 and edges 14) arranged into three layers
  • node 12 designated as "B” is in Layer 1, which is in a postal (higher) relationship to Layer 2 and Layer 3.
  • the "B” node 12 has a relationship with three nodes 12 designated “Bll,” “B12,” and “B13” of Layer 2.
  • "B13” node 12 has a relationship with four nodes 12 designated "B131,” “B132,” “B133,” and “B134” of Layer 3.
  • Figure 4a shows a set of network entities 16.
  • a set of zero or more hierarchical graphs 18h can be related to the set of network entities 16 as shown in Figure 4a. Some of the entities within the set of network entities 16 can be identified as relationships that can be included in the hierarchical graph 18h of Figure 4a.
  • Figure 4b shows two sets of network entities 16 (designated "A" and "B" ) wherein one or more entities of set A may have a connectivity relationship 22 with one or more entities of set B.
  • Figure 4c illustrates the network entity sets 16 of Figure 4b wherein one or more entities of set A has a connectivity relationship 22 with one or more entities of set B to form a connectivity graph 18c.
  • Figures 5 through 10 set forth an example application of the present invention for classifying a general set of network configuration data into a set of interrelated graphs .
  • Figure 5 shows a generic unorganized set of network information 24 designated network "XYZ.”
  • Figure 6 shows a set of terminators 16t and a set of spans 16s that comprise part of the network information 24 of Figure 5.
  • Figure 6 illustrates part of the method of the present invention where the various network elements (terminators and spans) are identified and classified. Note in Figure 6 that there may be duplicate elements 26 within both sets 16t and 16s. The duplicate elements 26 must eventually be uniquely classified as either a terminator or a span according to the method of the preferred embodiment of the present invention.
  • the next step in the example is to identify all of the connectivity relationships and form the layers.
  • the set of terminators 16t and set of spans 16s are further classified into three sub-classes of layers (the geographic, the physical, and the logical layer sub-classes), as shown in Figure 7.
  • the geographic layers consist of location entities and conduits entities.
  • the physical layers consist of network element entities and cable entities.
  • the logical layers consist of logical port entities and circuit entities.
  • Each of the three sub-classes of layers has both terminators (36, 42, 48) and spans (38, 44, 50) . Further, each sub-class contains a set of terminator entities and a set of span entities, as indicated.
  • the network elements are further classified into finer sets 36, 38, 42, 44, 48, and 50. Within each network element sets can be additional subsets such as the physical port entities 16 within set 42.
  • Figure 8 illustrates the element sets of Figure 7 arranged into three layers 30, 32, and 34. Relationships (edges) (40, 46, 52) connect the terminators (36, 42, 48) ⁇ to the spans (38, 44, 50), respectively within the respective layers. As shown in Figure 8, all connectivity relationships are then identified and a set of interrelated connectivity graphs (layers) are formed. Terminator entities in each class may have connectivity relationships with individual span entities, and only span entities, belonging to the same layer. Such connectivity relationships may, or may not, be governed by other class and entity specific connectivity rules.
  • Figure 9 has the elements of Figure 8 with the addition of hierarchical graphs 37, 39, 43, 45, 49, and 51.
  • Figure 9 all of the hierarchical relationships between the terminators within each layer sub-class, and all spans within each layer sub-class, are identified.
  • Figure 10 has all the elements contained within Figure 9 with the hierarchical relationships (edges) 52, 54, 56, and 58 established among the various entity sets 36, 38, 42, 44, 48, and 50.
  • edges edges
  • Figure 10 is illustrative of a complete set of network configuration information expressed in a set of interrelated graphs.
  • the preferred embodiment of the present invention includes computer software working on a suitable computer system that enables a user to identify, to categorize, to classify, to load, to store, to query, and to display any or all of the network entities that comprise the complete network configuration information.
  • the steps of the method of the present invention may be performed or executed.
  • Computers may be specially programmed to execute or accomplish any or all of the methods of the present invention.
  • the storage and analysis of the network can be aided greatly with the use of a database.
  • the implementation of the invention is done on a computer system.
  • the computer system is equipped with a processor having an adequate amount of associated memory in the form of RAM or equivalent, and/or one or more hard disks or other non-volatile media such as CD-ROM, tape or equivalent.
  • the computer system of the preferred embodiment would have a keyboard and mouse for inputting data as well as a monitor and printer for outputting data.
  • Other input and output media that can load and/or view information from a processor will also be useful with the present invention.
  • the present invention lends itself to implementation on a relational database, an object database, and an object relational database that can be loaded into the computer system described above .
  • Implementation of the present invention on a relational database can be accomplished with a group of data tables within which the element information is stored.
  • the tables of the relational database are tailored to the specific entities contained within the network being modeled. It is suggested that the user utilize a relational database that allows for flexible table construction. The table should enable an entity to be stored within one record or tuple.
  • index keys consist of one or more fields within the table and are used by the relational database engine to uniquely identify a specific tuple. Another benefit of keys that are useful and desirable for the present invention is that keys prevent tuples having from having identical keys or, in other words, prevent the same entity from being loaded more than once.
  • Suitable input screens can be constructed to assist the user to identify and classify entities within the network and to load the entity attributes into the relational database.
  • Queries oftentimes in the form of SQL (Structured Query Language) statements, can be directed against the table within the relational database in order to solicit information regarding the network.
  • the result of the SQL query can be formatted in a variety of formats.
  • the results can be a tabular listing, although more preferably the results would be in the form of a viewable graph.
  • output media and platforms are applicable to the present invention.
  • the SQL query results can be sent to a server, a client, or formatted for viewing by a web browser over the network itself or remotely by, for example, the Internet.
  • the present invention can also be used with object database.
  • object database Unlike relational databases which employ tables having records (tuples) for each individual entity and fields that store the specific attributes of those entities, an object database uses classes to define specific kinds of entities. ' The properties of those classes are used to store the attributes of the entity. Unique instances of the classes are created for each individual entity.
  • object databases are also well equipped to handle relationships between objects that can be utilized to help model the associations between entities.
  • the object database can be queried using SQL or OQL (Object Query Language) in order to solicit information that can be provided to the user.
  • the results can be a tabular listing, although more preferably the results would be in the form of a viewable graph.
  • OQL (or SQL or other) query results can be sent to a server, a client, or formatted for viewing by a web browser over the network itself or remotely by, for example, the Internet.
  • the scope and spirit of the invention is not limited by the application of a particular input or output media or platform.
  • the present invention can be practiced by the use of any media that enables a user to input entities that have been classified and identified uniquely and that allows the user to query the information and allows the user to see the results in a coherent manner.
  • a relational database/object database hybrid often referred to as an object-relational database can be utilized by the present.
  • an object-relational database is used so that the network modeling can be designed according to object- oriented methods while the data itself is stored within a relational database (e.g., a set of tables in a database).
  • the object-relational database can be queried using SQL or OQL (Object Query Language) in order to solicit information that can be provided to the user.
  • OQL Object Query Language
  • the results can be a tabular listing, although more preferably the results would be in the form of a viewable graph.
  • the OQL (or SQL or other) query results can be sent to a server, a client, or formatted for viewing by a web browser over the network itself or remotely by, for example, the Internet.
  • the scope and spirit of the invention is not limited by the application of a particular input or output media or platform. Instead, the present invention can be practiced by the use of any media that enables a user to input entities that have been classified and identified uniquely and that allows the user to query the information and allows the user to see the results in a coherent manner.
  • the preferred embodiment of the present invention is a method for modeling a complex network by following a series of steps.
  • the first step is to provide information about the entities that comprise the network. This information is typically provided by the person who is modeling the network, i.e., the network modeler (user) .
  • the modeler then identifies each of the entities as either a node or an edge. It should be noted that the identification must be unique. A node cannot be an edge and vise versa. However, an entity can be a node in one model and an edge in another separate model.
  • the user defines a set of layers with the nodes and edges that were identified earlier as being part. of the network.
  • a layer must contain at least one node, although it need not contain any edges. Moreover, a node can only be a member of one layer. Similarly, an edge can be a member of only one layer. If an edge is contained within a layer, that edge must terminate at one or more nodes that are also contained within the same layer that contains the edge. Additional steps may be taken to further define a complex network. For instance, a series of steps can be added to the method of the present invention to provide another dimension to the network model. For instance, the user can identify one or more relationships between one or more entities in a first layer and one or more entities in a second layer.
  • the user can define a set of one or more layers in a hierarchical layer order, the layer order being arranged to have a postal end (nominally at the top) and a distal end (nominally at the bottom) .
  • a postal node within a first layer can have a distal relationship only with one or more distal nodes that are contained within one or more second layers, wherein the second layer is closer to the distal end than the first layer.
  • the distal nodes can have a postal relationship only with a single postal node.
  • Containment is a class of hierarchical relationships wherein a "container" entity is related to one or more other "content" entities. The content entities are understood to be contained by the container entity. If A, B, and C are entities, and A contains B, and B contains C, then A contains C. Conversely, if A, B, and C are entities, and C is contained by B, and B is contained by A, then C is contained by A.
  • a measure of optimization, and adherence to the paradigm of the present invention is to reduce the expression of the network to the smallest number of related simple graphs. However, such optimization is not required to practice the present invention.
  • any of the foregoing variations may be implemented by programming one or more suitable general-purpose computers having appropriate hardware.
  • the programming may be accomplished through the use of a program storage device readable by the computer and encoding a program of instructions executable by the computer for performing the operations described above.
  • the program storage device may take the form of, e.g., one or more floppy disks; a CD ROM or other optical disk; a magnetic tape; a read-only memory chip (ROM) ; and other forms of the kind well-known in the art or subsequently developed.
  • the program of instructions may be "object code,” i.e., in binary form that is executable more-or-less directly by the computer; in "source code” that requires compilation or interpretation before execution; or in some intermediate form such as partially compiled code.
  • object code i.e., in binary form that is executable more-or-less directly by the computer
  • source code that requires compilation or interpretation before execution
  • some intermediate form such as partially compiled code.
  • the precise forms of the program storage device and of the encoding of instructions is immaterial here.
  • the particular embodiments disclosed above are illustrative only, as the invention may be modified and practiced in different but equivalent manners apparent to those skilled in the art having the benefit of these teachings.
EP01909154A 2000-02-23 2001-02-12 Apparatus and method for network data modeling Withdrawn EP1258103A2 (en)

Applications Claiming Priority (3)

Application Number Priority Date Filing Date Title
US511579 1990-04-20
US51157900A 2000-02-23 2000-02-23
PCT/US2001/004513 WO2001063447A2 (en) 2000-02-23 2001-02-12 Apparatus and method for network data modeling

Publications (1)

Publication Number Publication Date
EP1258103A2 true EP1258103A2 (en) 2002-11-20

Family

ID=24035509

Family Applications (1)

Application Number Title Priority Date Filing Date
EP01909154A Withdrawn EP1258103A2 (en) 2000-02-23 2001-02-12 Apparatus and method for network data modeling

Country Status (4)

Country Link
EP (1) EP1258103A2 (ja)
JP (1) JP2001251301A (ja)
AU (1) AU2001236939A1 (ja)
WO (1) WO2001063447A2 (ja)

Families Citing this family (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2004043044A1 (de) * 2002-11-05 2004-05-21 Ip2H Ag Funktionseinheit zur steuerung von informationsflüssen und verfahren zur übertragung von information mit einer derartigen funktionseinheit
US8126999B2 (en) 2004-02-06 2012-02-28 Microsoft Corporation Network DNA

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5276789A (en) * 1990-05-14 1994-01-04 Hewlett-Packard Co. Graphic display of network topology
EP0614151A1 (en) * 1993-03-02 1994-09-07 International Business Machines Corporation Information management process for cable network with automatic generation of graphic applications

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
See references of WO0163447A3 *

Also Published As

Publication number Publication date
JP2001251301A (ja) 2001-09-14
WO2001063447A3 (en) 2002-04-18
AU2001236939A1 (en) 2001-09-03
WO2001063447A2 (en) 2001-08-30

Similar Documents

Publication Publication Date Title
Motro et al. Fusionplex: resolution of data inconsistencies in the integration of heterogeneous information sources
US20030200296A1 (en) Apparatus and method for modeling, and storing within a database, services on a telecommunications network
US5937042A (en) Method and system for rehome optimization
US5202985A (en) Apparatus and method for displaying data communication network configuration after searching the network
CN100474835C (zh) 语义信息网络(sion)
JP4387599B2 (ja) 電気通信ネットワーク・リソース取り扱い装置および方法
US10169117B2 (en) Interfacing between a caller application and a service module
SE503021C2 (sv) Driftstödsnät för ett telekommunikationsnät innefattande nätelement, telekommunikationsnät innefattande nätelement, nätelement samt sätt att strukturera programvara i ett nätelement
US20070220451A1 (en) Method for modeling and documenting a network
CN109597877A (zh) 一种知识的推理方法及装置
CN110287223A (zh) 信息存储方法及装置、电子装置以及存储介质
CN101662489B (zh) 语义Web服务的发现方法、装置及系统
CN108876445A (zh) 一种基于营配网末端设备公共信息模型的数据互操作应用
EP1258103A2 (en) Apparatus and method for network data modeling
US6839749B1 (en) Network representation and manipulation thereof
Hümmer et al. A decathlon in multidimensional modeling: Open issues and some solutions
Lin et al. Distributed-program reliability analysis: complexity and efficient algorithms
Sköld Active database management systems for monitoring and control
Buchholz Lumpability and nearly-lumpability in hierarchical queueing networks
CN110321444A (zh) 基于图数据库的存储方法、装置和存储介质
US7941520B1 (en) System and method for tracking telephone network capacity and equipment
JPS59502041A (ja) デ−タベ−スのロツキング
Pavlov et al. CMIS/P++: extensions to CMIS/P for increased expressiveness and efficiency in the manipulation of management information
JP2872340B2 (ja) ネツトワーク構成管理方法
Georgalas A framework that uses repositories for information systems and knowledge integration

Legal Events

Date Code Title Description
PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

17P Request for examination filed

Effective date: 20020827

AK Designated contracting states

Kind code of ref document: A2

Designated state(s): AT BE CH CY DE DK ES FI FR GB GR IE IT LI LU MC NL PT SE TR

AX Request for extension of the european patent

Free format text: AL;LT;LV;MK;RO;SI

17Q First examination report despatched

Effective date: 20040727

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: THE APPLICATION IS DEEMED TO BE WITHDRAWN

18D Application deemed to be withdrawn

Effective date: 20041206