Network SimpleContinentCloud

Package: inet.examples.internetcloud.earthcloud
File: examples/internetcloud/earthcloud/EarthCloud.ned

(no description)

Router StandardHost StandardHost

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.

Networks:

Name Type Description
EarthCloud network (no description)

Parameters:

Name Type Default value Description
numClients int

Properties:

Name Value Description
isNetwork
display i=device/lan-ring

Gates:

Name Direction Size Description
pppg [ ] inout

Unassigned submodule parameters:

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

TODO @signal, @statistic

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

whether to display IP addresses on links

router.pcapRecorder.verbose bool false

whether to log packets on the module output

router.pcapRecorder.pcapFile string ""

the PCAP file to be written

router.pcapRecorder.snaplen int 65535

maximum number of bytes to record per packet

router.pcapRecorder.dumpBadFrames bool true

enable dump of frames with hasBitError

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

space-separated list of sibling module names to listen on

router.pcapRecorder.sendingSignalNames string "packetSentToLower"

space-separated list of outbound packet signals to subscribe to

router.pcapRecorder.receivingSignalNames string "packetReceivedFromLower"

space-separated list of inbound packet signals to subscribe to

router.pcapRecorder.alwaysFlush bool false

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

router.lo0.lo.interfaceTableModule string

The path to the InterfaceTable module

router.lo0.lo.mtu int 4470B
router.bgp.interfaceTableModule string

The path to the InterfaceTable module

router.bgp.routingTableModule string
router.bgp.ospfRoutingModule string hasOSPF ? "^.ospf" : ""
router.bgp.dataTransferMode string
client.status.initialStatus string "UP"

TODO @signal, @statistic

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

whether to display IP addresses on links

client.pcapRecorder.verbose bool false

whether to log packets on the module output

client.pcapRecorder.pcapFile string ""

the PCAP file to be written

client.pcapRecorder.snaplen int 65535

maximum number of bytes to record per packet

client.pcapRecorder.dumpBadFrames bool true

enable dump of frames with hasBitError

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

space-separated list of sibling module names to listen on

client.pcapRecorder.sendingSignalNames string "packetSentToLower"

space-separated list of outbound packet signals to subscribe to

client.pcapRecorder.receivingSignalNames string "packetReceivedFromLower"

space-separated list of inbound packet signals to subscribe to

client.pcapRecorder.alwaysFlush bool false

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

client.lo0.lo.interfaceTableModule string

The path to the InterfaceTable module

client.lo0.lo.mtu int 4470B
server.status.initialStatus string "UP"

TODO @signal, @statistic

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

whether to display IP addresses on links

server.pcapRecorder.verbose bool false

whether to log packets on the module output

server.pcapRecorder.pcapFile string ""

the PCAP file to be written

server.pcapRecorder.snaplen int 65535

maximum number of bytes to record per packet

server.pcapRecorder.dumpBadFrames bool true

enable dump of frames with hasBitError

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

space-separated list of sibling module names to listen on

server.pcapRecorder.sendingSignalNames string "packetSentToLower"

space-separated list of outbound packet signals to subscribe to

server.pcapRecorder.receivingSignalNames string "packetReceivedFromLower"

space-separated list of inbound packet signals to subscribe to

server.pcapRecorder.alwaysFlush bool false

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

server.lo0.lo.interfaceTableModule string

The path to the InterfaceTable module

server.lo0.lo.mtu int 4470B

Source code:

network SimpleContinentCloud
{
    parameters:
        int numClients;
        @display("i=device/lan-ring");
    gates:
        inout pppg[];
    submodules:
        router: Router;
        client[numClients]: StandardHost;
        server: StandardHost;
    connections:
        for i=0..sizeof(pppg)-1 {
            pppg[i] <--> router.pppg++;
        }
        router.ethg++ <--> Eth100M <--> server.ethg++;
        for i=0..numClients-1 {
            router.ethg++ <--> Eth100M <--> client[i].ethg++;
        }
}