Simple Module AccessNet

Package: oversim.underlay.inetunderlay
File: src/underlay/inetunderlay/AccessNet.ned

C++ definition

Access net connects participating hosts over an access router with the backbone

AccessNet

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Used in compound modules:

Name Type Description
AccessRouter compound module

Access router connects the access nets to the network backbone

AccessRouter6 compound module

Access router connects the access nets to the network backbone

OverlayAccessRouter compound module

Access router that participates in the overlay

OverlayAccessRouter6 compound module

Access router that participates in the overlay

Parameters:

Name Type Default value Description
channelTypes string

list of (tx) channel types (from common/channels.ned)

channelTypesRx string

list of (rx) channel types (from common/channels.ned)

useIPv6Addresses bool false

Properties:

Name Value Description
display i=block/cogwheel

Source code:

//
// Access net connects participating hosts over an access router with the backbone
//
simple AccessNet
{
    parameters:
        @display("i=block/cogwheel");
        string channelTypes;   // list of (tx) channel types (from common/channels.ned)
        string channelTypesRx; // list of (rx) channel types (from common/channels.ned)
        bool useIPv6Addresses = default(false);
}