Network RTPUnicast2

Package: inet.examples.rtp.unicast2
File: examples/rtp/unicast2/unicast.ned

(no description)

RTPHost RTPHost IPv4NetworkConfigurator

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.

Properties:

Name Value Description
isNetwork

Unassigned submodule parameters:

Name Type Default value Description
sender.status.initialStatus string "UP"

TODO @signal, @statistic

sender.routingTable.forwarding bool
sender.routingTable.multicastForwarding bool
sender.interfaceTable.displayAddresses bool false

whether to display IP addresses on links

sender.pcapRecorder.verbose bool false

whether to log packets on the module output

sender.pcapRecorder.pcapFile string ""

the PCAP file to be written

sender.pcapRecorder.snaplen int 65535

maximum number of bytes to record per packet

sender.pcapRecorder.dumpBadFrames bool true

enable dump of frames with hasBitError

sender.pcapRecorder.moduleNamePatterns string "wlan[*] eth[*] ppp[*] ext[*]"

space-separated list of sibling module names to listen on

sender.pcapRecorder.sendingSignalNames string "packetSentToLower"

space-separated list of outbound packet signals to subscribe to

sender.pcapRecorder.receivingSignalNames string "packetReceivedFromLower"

space-separated list of inbound packet signals to subscribe to

sender.pcapRecorder.alwaysFlush bool false

flush the pcapFile after each write to ensure that all packets are captured in case of a crash

sender.lo0.lo.interfaceTableModule string

The path to the InterfaceTable module

sender.lo0.lo.mtu int 4470B
sender.rtpApp.commonName string

the common name (CNAME) of this host

sender.rtpApp.sessionEnterDelay double

delay before starts a new session

sender.rtpApp.transmissionStartDelay double

delay before start transmission (related to "sender module created")

sender.rtpApp.transmissionStopDelay double

delay before stops transmission (related to "start transmission")

sender.rtpApp.sessionLeaveDelay double

delay before leave session (related to "file transmission finished/stopped" or "session entered" when fileName is "")

sender.rtp.interfaceTableModule string

The path to the InterfaceTable module

sender.rtp.routingTableModule string
sender.rtcp.interfaceTableModule string

The path to the InterfaceTable module

receiver.status.initialStatus string "UP"

TODO @signal, @statistic

receiver.routingTable.forwarding bool
receiver.routingTable.multicastForwarding bool
receiver.interfaceTable.displayAddresses bool false

whether to display IP addresses on links

receiver.pcapRecorder.verbose bool false

whether to log packets on the module output

receiver.pcapRecorder.pcapFile string ""

the PCAP file to be written

receiver.pcapRecorder.snaplen int 65535

maximum number of bytes to record per packet

receiver.pcapRecorder.dumpBadFrames bool true

enable dump of frames with hasBitError

receiver.pcapRecorder.moduleNamePatterns string "wlan[*] eth[*] ppp[*] ext[*]"

space-separated list of sibling module names to listen on

receiver.pcapRecorder.sendingSignalNames string "packetSentToLower"

space-separated list of outbound packet signals to subscribe to

receiver.pcapRecorder.receivingSignalNames string "packetReceivedFromLower"

space-separated list of inbound packet signals to subscribe to

receiver.pcapRecorder.alwaysFlush bool false

flush the pcapFile after each write to ensure that all packets are captured in case of a crash

receiver.lo0.lo.interfaceTableModule string

The path to the InterfaceTable module

receiver.lo0.lo.mtu int 4470B
receiver.rtpApp.commonName string

the common name (CNAME) of this host

receiver.rtpApp.sessionEnterDelay double

delay before starts a new session

receiver.rtpApp.transmissionStartDelay double

delay before start transmission (related to "sender module created")

receiver.rtpApp.transmissionStopDelay double

delay before stops transmission (related to "start transmission")

receiver.rtpApp.sessionLeaveDelay double

delay before leave session (related to "file transmission finished/stopped" or "session entered" when fileName is "")

receiver.rtp.interfaceTableModule string

The path to the InterfaceTable module

receiver.rtp.routingTableModule string
receiver.rtcp.interfaceTableModule string

The path to the InterfaceTable module

configurator.minLinkWeight double 1E-3
configurator.config xml xml("")

XML configuration parameters for IP address assignment and adding manual routes

configurator.assignAddresses bool true

assign IP addresses to all interfaces in the network

configurator.assignDisjunctSubnetAddresses bool true

avoid using the same address prefix and netmask on different links when assigning IP addresses to interfaces

configurator.addStaticRoutes bool true

add static routes to the routing tables of all nodes to route to all destination interfaces (only where applicable; turn off when config file contains manual routes)

configurator.addDefaultRoutes bool true

add default routes if all routes from a source node go through the same gateway (used only if addStaticRoutes is true)

configurator.addSubnetRoutes bool true

add subnet routes instead of destination interface routes (only where applicable; used only if addStaticRoutes is true)

configurator.optimizeRoutes bool true

optimize routing tables by merging routes, the resulting routing table might route more packets than the original (used only if addStaticRoutes is true)

configurator.dumpTopology bool false

print extracted network topology to the module output

configurator.dumpLinks bool false

print recognized network links to the module output

configurator.dumpAddresses bool false

print assigned IP addresses for all interfaces to the module output

configurator.dumpRoutes bool false

print configured and optimized routing tables for all nodes to the module output

configurator.dumpConfig string ""

write configuration into the given config file that can be fed back to speed up subsequent runs (network configurations)

Source code:

network RTPUnicast2
{
    types:
        channel ethernet extends ned.DatarateChannel
        {
            parameters:
                delay = normal(0.00015s, 0.00005s);
                datarate = 10Mbps;
                ber = 0.00001;
        }

    submodules:
        sender: RTPHost {
            parameters:
                forwarding = false;
                profileName = "inet.transportlayer.rtp.RTPAVProfile";
                destinationAddress = "receiver";
                portNumber = 5004;
                bandwidth = 8000;
                fileName = "../data/moving.mpg.gdf";
                payloadType = 32;
                @display("p=185,128");
        }
        receiver: RTPHost {
            parameters:
                forwarding = false;
                profileName = "inet.transportlayer.rtp.RTPAVProfile";
                destinationAddress = "sender";
                portNumber = 5004;
                bandwidth = 8000;
                fileName = "";
                payloadType = 32;
                @display("p=54,128");
        }
        configurator: IPv4NetworkConfigurator {
            parameters:
                @display("p=54,23");
        }
    connections:
        sender.pppg++ <--> ethernet <--> receiver.pppg++;
}