Network HandoverExample

Package: inet.showcases.wireless.handover
File: showcases/wireless/handover/HandoverExample.ned

(no description)

IntegratedCanvasVisualizer Ieee80211ScalarRadioMedium WirelessHost AccessPoint AccessPoint

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
display bgb=640,420

Unassigned submodule parameters:

Name Type Default value Description
radioMedium.neighborCache.refillPeriod double
host.status.initialStatus string "UP"

TODO @signal, @statistic

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

whether to display IP addresses on links

host.pcapRecorder.verbose bool false

whether to log packets on the module output

host.pcapRecorder.pcapFile string ""

the PCAP file to be written

host.pcapRecorder.snaplen int 65535

maximum number of bytes to record per packet

host.pcapRecorder.dumpBadFrames bool true

enable dump of frames with hasBitError

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

space-separated list of sibling module names to listen on

host.pcapRecorder.sendingSignalNames string "packetSentToLower"

space-separated list of outbound packet signals to subscribe to

host.pcapRecorder.receivingSignalNames string "packetReceivedFromLower"

space-separated list of inbound packet signals to subscribe to

host.pcapRecorder.alwaysFlush bool false

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

host.lo0.lo.interfaceTableModule string

The path to the InterfaceTable module

host.lo0.lo.mtu int 4470B
ap1.status.initialStatus string "UP"

TODO @signal, @statistic

ap1.interfaceTable.displayAddresses bool false

whether to display IP addresses on links

ap1.macTable.agingTime double
ap1.macTable.addressTableFile string
ap2.status.initialStatus string "UP"

TODO @signal, @statistic

ap2.interfaceTable.displayAddresses bool false

whether to display IP addresses on links

ap2.macTable.agingTime double
ap2.macTable.addressTableFile string

Source code:

network HandoverExample
{
    parameters:
        @display("bgb=640,420");
    submodules:
        visualizer: IntegratedCanvasVisualizer {
            parameters:
                @display("p=100,200");
        }
        radioMedium: Ieee80211ScalarRadioMedium {
            parameters:
                @display("p=100,100");
        }
        host: WirelessHost {
            parameters:
                @display("p=50,280;r=,,#707070");
        }
        ap1: AccessPoint {
            parameters:
                @display("p=100,350;r=,,#707070");
        }
        ap2: AccessPoint {
            parameters:
                @display("p=500,350;r=,,#707070");
        }
}