Simple Module TED

Package: inet.networklayer.ted
File: src/inet/networklayer/ted/TED.ned

C++ definition

Traffic Engineering Database. Stores network topology with detailed link information, including total and reserved bandwidths.

TED is filled in and kept up-to-date via link state routing protocols, like LinkStateRouting or (in the future) OSPF-TE.

TED exposes several public methods for querying the current network state and allows RSVP and individual applications to calculate feasible LSPs meeting the chosen bandwidth criteria.

TED

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Used in compound modules:

Name Type Description
LDP_LSR compound module

An LDP-capable router.

RSVP_LSR compound module

An RSVP-TE capable router.

Parameters:

Name Type Default value Description
interfaceTableModule string

The path to the InterfaceTable module

routingTableModule string

Properties:

Name Value Description
display i=block/table

Source code:

//
// Traffic Engineering Database. Stores network topology with detailed
// link information, including total and reserved bandwidths.
//
// ~TED is filled in and kept up-to-date via link state routing protocols,
// like ~LinkStateRouting or (in the future) OSPF-TE.
//
// TED exposes several public methods for querying the current network state
// and allows ~RSVP and individual applications to calculate feasible LSPs
// meeting the chosen bandwidth criteria.
//
simple TED
{
    parameters:
        string interfaceTableModule;   // The path to the InterfaceTable module
        string routingTableModule;
        @display("i=block/table");
}