Package: inet.examples.internetcloud.earthcloud
EarthCloud
network(no description)
Usage diagram
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
Properties
| Name | Value | Description |
|---|---|---|
| isNetwork | ||
| display | bgi=maps/world;bgb=875,414 |
Unassigned submodule parameters
| Name | Type | Default value | Description |
|---|---|---|---|
| configurator.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| configurator.minLinkWeight | double | 1E-3 | |
| configurator.configureIsolatedNetworksSeparatly | bool | false | |
| 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.assignUniqueAddresses | bool | true |
Avoid using the same address and raise an error if not possible |
| 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.addDirectRoutes | bool | true |
Add direct routes towards local network members (i.e. directly connected interfaces) to the routing table (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.updateRoutes | bool | false |
Recalculate static routes if an interface goes down/up or a carrier is lost/back |
| 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) |
| internet.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| internet.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| internet.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| internet.environment.initStage | int | 0 |
Initialization stage for the setup command |
| internet.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| internet.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| internet.environment.setupCommand | string | "" |
A host OS system command |
| internet.environment.teardownCommand | string | "" |
A host OS system command |
| internet.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| internet.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| internet.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| internet.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| internet.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| internet.pcapRecorder.fileFormat | string | "pcapng" | |
| internet.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| internet.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| internet.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| internet.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| internet.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| internet.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| internet.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| internet.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| internet.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| internet.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| internet.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| internet.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| internet.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| internet.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| internet.cb.forwardServiceRegistration | bool | true | |
| internet.cb.forwardProtocolRegistration | bool | true | |
| internet.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| internet.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| internet.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| internet.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| internet.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| internet.bl.forwardServiceRegistration | bool | true | |
| internet.bl.forwardProtocolRegistration | bool | true | |
| internet.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| internet.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| internet.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| internet.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| internet.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| internet.li.forwardServiceRegistration | bool | true | |
| internet.li.forwardProtocolRegistration | bool | true | |
| internet.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| internet.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| internet.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| internet.eth.bitrate | double | ||
| internet.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| internet.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| internet.nl.forwardServiceRegistration | bool | true | |
| internet.nl.forwardProtocolRegistration | bool | true | |
| internet.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| internet.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| internet.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.router.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.router.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| africa.router.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.router.environment.initStage | int | 0 |
Initialization stage for the setup command |
| africa.router.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| africa.router.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| africa.router.environment.setupCommand | string | "" |
A host OS system command |
| africa.router.environment.teardownCommand | string | "" |
A host OS system command |
| africa.router.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.router.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| africa.router.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| africa.router.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| africa.router.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| africa.router.pcapRecorder.fileFormat | string | "pcapng" | |
| africa.router.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| africa.router.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| africa.router.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| africa.router.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| africa.router.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| africa.router.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| africa.router.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| africa.router.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| africa.router.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| africa.router.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| africa.router.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.router.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| africa.router.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.router.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.router.cb.forwardServiceRegistration | bool | true | |
| africa.router.cb.forwardProtocolRegistration | bool | true | |
| africa.router.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.router.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.router.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.router.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.router.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.router.bl.forwardServiceRegistration | bool | true | |
| africa.router.bl.forwardProtocolRegistration | bool | true | |
| africa.router.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.router.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.router.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.router.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.router.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.router.li.forwardServiceRegistration | bool | true | |
| africa.router.li.forwardProtocolRegistration | bool | true | |
| africa.router.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.router.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.router.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.router.eth.bitrate | double | ||
| africa.router.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.router.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.router.nl.forwardServiceRegistration | bool | true | |
| africa.router.nl.forwardProtocolRegistration | bool | true | |
| africa.router.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.router.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.router.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.router.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.router.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.router.tn.forwardServiceRegistration | bool | true | |
| africa.router.tn.forwardProtocolRegistration | bool | true | |
| africa.router.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.router.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.router.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.router.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.router.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.router.at.forwardServiceRegistration | bool | true | |
| africa.router.at.forwardProtocolRegistration | bool | true | |
| africa.router.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.router.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.router.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.router.bgp.interfaceTableModule | string |
The path to the InterfaceTable module |
|
| africa.router.bgp.routingTableModule | string | ||
| africa.router.bgp.ospfRoutingModule | string | parent.hasOspf ? "^.ospf" : "" | |
| africa.client.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.client.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| africa.client.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.client.environment.initStage | int | 0 |
Initialization stage for the setup command |
| africa.client.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| africa.client.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| africa.client.environment.setupCommand | string | "" |
A host OS system command |
| africa.client.environment.teardownCommand | string | "" |
A host OS system command |
| africa.client.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.client.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| africa.client.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| africa.client.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| africa.client.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| africa.client.pcapRecorder.fileFormat | string | "pcapng" | |
| africa.client.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| africa.client.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| africa.client.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| africa.client.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| africa.client.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| africa.client.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| africa.client.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| africa.client.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| africa.client.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| africa.client.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| africa.client.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.client.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| africa.client.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.client.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.client.cb.forwardServiceRegistration | bool | true | |
| africa.client.cb.forwardProtocolRegistration | bool | true | |
| africa.client.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.client.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.client.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.client.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.client.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.client.bl.forwardServiceRegistration | bool | true | |
| africa.client.bl.forwardProtocolRegistration | bool | true | |
| africa.client.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.client.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.client.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.client.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.client.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.client.li.forwardServiceRegistration | bool | true | |
| africa.client.li.forwardProtocolRegistration | bool | true | |
| africa.client.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.client.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.client.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.client.eth.bitrate | double | ||
| africa.client.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.client.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.client.nl.forwardServiceRegistration | bool | true | |
| africa.client.nl.forwardProtocolRegistration | bool | true | |
| africa.client.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.client.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.client.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.client.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.client.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.client.tn.forwardServiceRegistration | bool | true | |
| africa.client.tn.forwardProtocolRegistration | bool | true | |
| africa.client.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.client.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.client.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.client.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.client.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.client.at.forwardServiceRegistration | bool | true | |
| africa.client.at.forwardProtocolRegistration | bool | true | |
| africa.client.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.client.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.client.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.server.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.server.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| africa.server.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.server.environment.initStage | int | 0 |
Initialization stage for the setup command |
| africa.server.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| africa.server.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| africa.server.environment.setupCommand | string | "" |
A host OS system command |
| africa.server.environment.teardownCommand | string | "" |
A host OS system command |
| africa.server.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.server.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| africa.server.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| africa.server.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| africa.server.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| africa.server.pcapRecorder.fileFormat | string | "pcapng" | |
| africa.server.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| africa.server.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| africa.server.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| africa.server.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| africa.server.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| africa.server.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| africa.server.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| africa.server.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| africa.server.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| africa.server.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| africa.server.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.server.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| africa.server.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.server.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.server.cb.forwardServiceRegistration | bool | true | |
| africa.server.cb.forwardProtocolRegistration | bool | true | |
| africa.server.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.server.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.server.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.server.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.server.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.server.bl.forwardServiceRegistration | bool | true | |
| africa.server.bl.forwardProtocolRegistration | bool | true | |
| africa.server.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.server.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.server.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.server.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.server.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.server.li.forwardServiceRegistration | bool | true | |
| africa.server.li.forwardProtocolRegistration | bool | true | |
| africa.server.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.server.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.server.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.server.eth.bitrate | double | ||
| africa.server.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.server.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.server.nl.forwardServiceRegistration | bool | true | |
| africa.server.nl.forwardProtocolRegistration | bool | true | |
| africa.server.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.server.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.server.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.server.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.server.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.server.tn.forwardServiceRegistration | bool | true | |
| africa.server.tn.forwardProtocolRegistration | bool | true | |
| africa.server.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.server.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.server.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| africa.server.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| africa.server.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| africa.server.at.forwardServiceRegistration | bool | true | |
| africa.server.at.forwardProtocolRegistration | bool | true | |
| africa.server.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| africa.server.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| africa.server.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.router.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.router.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| asia.router.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.router.environment.initStage | int | 0 |
Initialization stage for the setup command |
| asia.router.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| asia.router.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| asia.router.environment.setupCommand | string | "" |
A host OS system command |
| asia.router.environment.teardownCommand | string | "" |
A host OS system command |
| asia.router.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.router.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| asia.router.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| asia.router.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| asia.router.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| asia.router.pcapRecorder.fileFormat | string | "pcapng" | |
| asia.router.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| asia.router.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| asia.router.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| asia.router.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| asia.router.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| asia.router.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| asia.router.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| asia.router.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| asia.router.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| asia.router.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| asia.router.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.router.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| asia.router.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.router.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.router.cb.forwardServiceRegistration | bool | true | |
| asia.router.cb.forwardProtocolRegistration | bool | true | |
| asia.router.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.router.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.router.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.router.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.router.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.router.bl.forwardServiceRegistration | bool | true | |
| asia.router.bl.forwardProtocolRegistration | bool | true | |
| asia.router.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.router.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.router.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.router.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.router.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.router.li.forwardServiceRegistration | bool | true | |
| asia.router.li.forwardProtocolRegistration | bool | true | |
| asia.router.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.router.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.router.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.router.eth.bitrate | double | ||
| asia.router.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.router.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.router.nl.forwardServiceRegistration | bool | true | |
| asia.router.nl.forwardProtocolRegistration | bool | true | |
| asia.router.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.router.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.router.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.router.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.router.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.router.tn.forwardServiceRegistration | bool | true | |
| asia.router.tn.forwardProtocolRegistration | bool | true | |
| asia.router.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.router.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.router.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.router.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.router.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.router.at.forwardServiceRegistration | bool | true | |
| asia.router.at.forwardProtocolRegistration | bool | true | |
| asia.router.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.router.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.router.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.router.bgp.interfaceTableModule | string |
The path to the InterfaceTable module |
|
| asia.router.bgp.routingTableModule | string | ||
| asia.router.bgp.ospfRoutingModule | string | parent.hasOspf ? "^.ospf" : "" | |
| asia.client.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.client.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| asia.client.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.client.environment.initStage | int | 0 |
Initialization stage for the setup command |
| asia.client.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| asia.client.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| asia.client.environment.setupCommand | string | "" |
A host OS system command |
| asia.client.environment.teardownCommand | string | "" |
A host OS system command |
| asia.client.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.client.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| asia.client.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| asia.client.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| asia.client.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| asia.client.pcapRecorder.fileFormat | string | "pcapng" | |
| asia.client.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| asia.client.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| asia.client.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| asia.client.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| asia.client.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| asia.client.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| asia.client.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| asia.client.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| asia.client.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| asia.client.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| asia.client.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.client.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| asia.client.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.client.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.client.cb.forwardServiceRegistration | bool | true | |
| asia.client.cb.forwardProtocolRegistration | bool | true | |
| asia.client.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.client.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.client.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.client.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.client.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.client.bl.forwardServiceRegistration | bool | true | |
| asia.client.bl.forwardProtocolRegistration | bool | true | |
| asia.client.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.client.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.client.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.client.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.client.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.client.li.forwardServiceRegistration | bool | true | |
| asia.client.li.forwardProtocolRegistration | bool | true | |
| asia.client.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.client.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.client.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.client.eth.bitrate | double | ||
| asia.client.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.client.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.client.nl.forwardServiceRegistration | bool | true | |
| asia.client.nl.forwardProtocolRegistration | bool | true | |
| asia.client.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.client.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.client.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.client.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.client.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.client.tn.forwardServiceRegistration | bool | true | |
| asia.client.tn.forwardProtocolRegistration | bool | true | |
| asia.client.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.client.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.client.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.client.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.client.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.client.at.forwardServiceRegistration | bool | true | |
| asia.client.at.forwardProtocolRegistration | bool | true | |
| asia.client.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.client.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.client.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.server.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.server.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| asia.server.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.server.environment.initStage | int | 0 |
Initialization stage for the setup command |
| asia.server.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| asia.server.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| asia.server.environment.setupCommand | string | "" |
A host OS system command |
| asia.server.environment.teardownCommand | string | "" |
A host OS system command |
| asia.server.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.server.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| asia.server.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| asia.server.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| asia.server.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| asia.server.pcapRecorder.fileFormat | string | "pcapng" | |
| asia.server.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| asia.server.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| asia.server.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| asia.server.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| asia.server.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| asia.server.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| asia.server.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| asia.server.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| asia.server.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| asia.server.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| asia.server.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.server.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| asia.server.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.server.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.server.cb.forwardServiceRegistration | bool | true | |
| asia.server.cb.forwardProtocolRegistration | bool | true | |
| asia.server.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.server.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.server.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.server.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.server.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.server.bl.forwardServiceRegistration | bool | true | |
| asia.server.bl.forwardProtocolRegistration | bool | true | |
| asia.server.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.server.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.server.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.server.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.server.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.server.li.forwardServiceRegistration | bool | true | |
| asia.server.li.forwardProtocolRegistration | bool | true | |
| asia.server.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.server.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.server.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.server.eth.bitrate | double | ||
| asia.server.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.server.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.server.nl.forwardServiceRegistration | bool | true | |
| asia.server.nl.forwardProtocolRegistration | bool | true | |
| asia.server.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.server.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.server.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.server.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.server.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.server.tn.forwardServiceRegistration | bool | true | |
| asia.server.tn.forwardProtocolRegistration | bool | true | |
| asia.server.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.server.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.server.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| asia.server.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| asia.server.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| asia.server.at.forwardServiceRegistration | bool | true | |
| asia.server.at.forwardProtocolRegistration | bool | true | |
| asia.server.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| asia.server.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| asia.server.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.router.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.router.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| australia.router.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.router.environment.initStage | int | 0 |
Initialization stage for the setup command |
| australia.router.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| australia.router.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| australia.router.environment.setupCommand | string | "" |
A host OS system command |
| australia.router.environment.teardownCommand | string | "" |
A host OS system command |
| australia.router.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.router.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| australia.router.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| australia.router.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| australia.router.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| australia.router.pcapRecorder.fileFormat | string | "pcapng" | |
| australia.router.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| australia.router.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| australia.router.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| australia.router.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| australia.router.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| australia.router.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| australia.router.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| australia.router.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| australia.router.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| australia.router.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| australia.router.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.router.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| australia.router.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.router.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.router.cb.forwardServiceRegistration | bool | true | |
| australia.router.cb.forwardProtocolRegistration | bool | true | |
| australia.router.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.router.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.router.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.router.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.router.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.router.bl.forwardServiceRegistration | bool | true | |
| australia.router.bl.forwardProtocolRegistration | bool | true | |
| australia.router.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.router.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.router.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.router.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.router.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.router.li.forwardServiceRegistration | bool | true | |
| australia.router.li.forwardProtocolRegistration | bool | true | |
| australia.router.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.router.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.router.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.router.eth.bitrate | double | ||
| australia.router.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.router.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.router.nl.forwardServiceRegistration | bool | true | |
| australia.router.nl.forwardProtocolRegistration | bool | true | |
| australia.router.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.router.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.router.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.router.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.router.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.router.tn.forwardServiceRegistration | bool | true | |
| australia.router.tn.forwardProtocolRegistration | bool | true | |
| australia.router.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.router.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.router.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.router.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.router.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.router.at.forwardServiceRegistration | bool | true | |
| australia.router.at.forwardProtocolRegistration | bool | true | |
| australia.router.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.router.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.router.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.router.bgp.interfaceTableModule | string |
The path to the InterfaceTable module |
|
| australia.router.bgp.routingTableModule | string | ||
| australia.router.bgp.ospfRoutingModule | string | parent.hasOspf ? "^.ospf" : "" | |
| australia.client.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.client.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| australia.client.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.client.environment.initStage | int | 0 |
Initialization stage for the setup command |
| australia.client.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| australia.client.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| australia.client.environment.setupCommand | string | "" |
A host OS system command |
| australia.client.environment.teardownCommand | string | "" |
A host OS system command |
| australia.client.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.client.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| australia.client.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| australia.client.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| australia.client.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| australia.client.pcapRecorder.fileFormat | string | "pcapng" | |
| australia.client.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| australia.client.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| australia.client.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| australia.client.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| australia.client.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| australia.client.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| australia.client.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| australia.client.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| australia.client.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| australia.client.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| australia.client.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.client.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| australia.client.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.client.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.client.cb.forwardServiceRegistration | bool | true | |
| australia.client.cb.forwardProtocolRegistration | bool | true | |
| australia.client.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.client.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.client.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.client.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.client.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.client.bl.forwardServiceRegistration | bool | true | |
| australia.client.bl.forwardProtocolRegistration | bool | true | |
| australia.client.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.client.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.client.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.client.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.client.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.client.li.forwardServiceRegistration | bool | true | |
| australia.client.li.forwardProtocolRegistration | bool | true | |
| australia.client.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.client.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.client.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.client.eth.bitrate | double | ||
| australia.client.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.client.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.client.nl.forwardServiceRegistration | bool | true | |
| australia.client.nl.forwardProtocolRegistration | bool | true | |
| australia.client.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.client.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.client.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.client.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.client.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.client.tn.forwardServiceRegistration | bool | true | |
| australia.client.tn.forwardProtocolRegistration | bool | true | |
| australia.client.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.client.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.client.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.client.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.client.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.client.at.forwardServiceRegistration | bool | true | |
| australia.client.at.forwardProtocolRegistration | bool | true | |
| australia.client.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.client.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.client.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.server.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.server.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| australia.server.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.server.environment.initStage | int | 0 |
Initialization stage for the setup command |
| australia.server.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| australia.server.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| australia.server.environment.setupCommand | string | "" |
A host OS system command |
| australia.server.environment.teardownCommand | string | "" |
A host OS system command |
| australia.server.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.server.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| australia.server.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| australia.server.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| australia.server.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| australia.server.pcapRecorder.fileFormat | string | "pcapng" | |
| australia.server.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| australia.server.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| australia.server.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| australia.server.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| australia.server.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| australia.server.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| australia.server.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| australia.server.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| australia.server.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| australia.server.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| australia.server.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.server.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| australia.server.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.server.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.server.cb.forwardServiceRegistration | bool | true | |
| australia.server.cb.forwardProtocolRegistration | bool | true | |
| australia.server.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.server.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.server.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.server.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.server.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.server.bl.forwardServiceRegistration | bool | true | |
| australia.server.bl.forwardProtocolRegistration | bool | true | |
| australia.server.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.server.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.server.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.server.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.server.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.server.li.forwardServiceRegistration | bool | true | |
| australia.server.li.forwardProtocolRegistration | bool | true | |
| australia.server.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.server.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.server.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.server.eth.bitrate | double | ||
| australia.server.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.server.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.server.nl.forwardServiceRegistration | bool | true | |
| australia.server.nl.forwardProtocolRegistration | bool | true | |
| australia.server.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.server.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.server.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.server.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.server.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.server.tn.forwardServiceRegistration | bool | true | |
| australia.server.tn.forwardProtocolRegistration | bool | true | |
| australia.server.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.server.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.server.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| australia.server.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| australia.server.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| australia.server.at.forwardServiceRegistration | bool | true | |
| australia.server.at.forwardProtocolRegistration | bool | true | |
| australia.server.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| australia.server.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| australia.server.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.router.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.router.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| europe.router.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.router.environment.initStage | int | 0 |
Initialization stage for the setup command |
| europe.router.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| europe.router.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| europe.router.environment.setupCommand | string | "" |
A host OS system command |
| europe.router.environment.teardownCommand | string | "" |
A host OS system command |
| europe.router.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.router.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| europe.router.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| europe.router.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| europe.router.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| europe.router.pcapRecorder.fileFormat | string | "pcapng" | |
| europe.router.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| europe.router.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| europe.router.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| europe.router.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| europe.router.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| europe.router.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| europe.router.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| europe.router.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| europe.router.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| europe.router.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| europe.router.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.router.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| europe.router.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.router.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.router.cb.forwardServiceRegistration | bool | true | |
| europe.router.cb.forwardProtocolRegistration | bool | true | |
| europe.router.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.router.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.router.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.router.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.router.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.router.bl.forwardServiceRegistration | bool | true | |
| europe.router.bl.forwardProtocolRegistration | bool | true | |
| europe.router.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.router.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.router.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.router.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.router.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.router.li.forwardServiceRegistration | bool | true | |
| europe.router.li.forwardProtocolRegistration | bool | true | |
| europe.router.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.router.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.router.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.router.eth.bitrate | double | ||
| europe.router.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.router.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.router.nl.forwardServiceRegistration | bool | true | |
| europe.router.nl.forwardProtocolRegistration | bool | true | |
| europe.router.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.router.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.router.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.router.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.router.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.router.tn.forwardServiceRegistration | bool | true | |
| europe.router.tn.forwardProtocolRegistration | bool | true | |
| europe.router.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.router.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.router.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.router.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.router.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.router.at.forwardServiceRegistration | bool | true | |
| europe.router.at.forwardProtocolRegistration | bool | true | |
| europe.router.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.router.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.router.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.router.bgp.interfaceTableModule | string |
The path to the InterfaceTable module |
|
| europe.router.bgp.routingTableModule | string | ||
| europe.router.bgp.ospfRoutingModule | string | parent.hasOspf ? "^.ospf" : "" | |
| europe.client.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.client.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| europe.client.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.client.environment.initStage | int | 0 |
Initialization stage for the setup command |
| europe.client.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| europe.client.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| europe.client.environment.setupCommand | string | "" |
A host OS system command |
| europe.client.environment.teardownCommand | string | "" |
A host OS system command |
| europe.client.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.client.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| europe.client.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| europe.client.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| europe.client.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| europe.client.pcapRecorder.fileFormat | string | "pcapng" | |
| europe.client.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| europe.client.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| europe.client.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| europe.client.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| europe.client.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| europe.client.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| europe.client.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| europe.client.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| europe.client.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| europe.client.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| europe.client.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.client.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| europe.client.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.client.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.client.cb.forwardServiceRegistration | bool | true | |
| europe.client.cb.forwardProtocolRegistration | bool | true | |
| europe.client.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.client.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.client.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.client.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.client.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.client.bl.forwardServiceRegistration | bool | true | |
| europe.client.bl.forwardProtocolRegistration | bool | true | |
| europe.client.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.client.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.client.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.client.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.client.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.client.li.forwardServiceRegistration | bool | true | |
| europe.client.li.forwardProtocolRegistration | bool | true | |
| europe.client.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.client.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.client.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.client.eth.bitrate | double | ||
| europe.client.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.client.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.client.nl.forwardServiceRegistration | bool | true | |
| europe.client.nl.forwardProtocolRegistration | bool | true | |
| europe.client.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.client.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.client.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.client.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.client.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.client.tn.forwardServiceRegistration | bool | true | |
| europe.client.tn.forwardProtocolRegistration | bool | true | |
| europe.client.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.client.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.client.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.client.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.client.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.client.at.forwardServiceRegistration | bool | true | |
| europe.client.at.forwardProtocolRegistration | bool | true | |
| europe.client.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.client.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.client.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.server.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.server.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| europe.server.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.server.environment.initStage | int | 0 |
Initialization stage for the setup command |
| europe.server.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| europe.server.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| europe.server.environment.setupCommand | string | "" |
A host OS system command |
| europe.server.environment.teardownCommand | string | "" |
A host OS system command |
| europe.server.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.server.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| europe.server.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| europe.server.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| europe.server.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| europe.server.pcapRecorder.fileFormat | string | "pcapng" | |
| europe.server.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| europe.server.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| europe.server.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| europe.server.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| europe.server.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| europe.server.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| europe.server.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| europe.server.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| europe.server.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| europe.server.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| europe.server.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.server.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| europe.server.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.server.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.server.cb.forwardServiceRegistration | bool | true | |
| europe.server.cb.forwardProtocolRegistration | bool | true | |
| europe.server.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.server.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.server.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.server.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.server.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.server.bl.forwardServiceRegistration | bool | true | |
| europe.server.bl.forwardProtocolRegistration | bool | true | |
| europe.server.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.server.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.server.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.server.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.server.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.server.li.forwardServiceRegistration | bool | true | |
| europe.server.li.forwardProtocolRegistration | bool | true | |
| europe.server.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.server.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.server.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.server.eth.bitrate | double | ||
| europe.server.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.server.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.server.nl.forwardServiceRegistration | bool | true | |
| europe.server.nl.forwardProtocolRegistration | bool | true | |
| europe.server.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.server.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.server.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.server.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.server.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.server.tn.forwardServiceRegistration | bool | true | |
| europe.server.tn.forwardProtocolRegistration | bool | true | |
| europe.server.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.server.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.server.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| europe.server.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| europe.server.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| europe.server.at.forwardServiceRegistration | bool | true | |
| europe.server.at.forwardProtocolRegistration | bool | true | |
| europe.server.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| europe.server.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| europe.server.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.router.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.router.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| northAmerica.router.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.router.environment.initStage | int | 0 |
Initialization stage for the setup command |
| northAmerica.router.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| northAmerica.router.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| northAmerica.router.environment.setupCommand | string | "" |
A host OS system command |
| northAmerica.router.environment.teardownCommand | string | "" |
A host OS system command |
| northAmerica.router.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.router.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| northAmerica.router.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| northAmerica.router.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| northAmerica.router.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| northAmerica.router.pcapRecorder.fileFormat | string | "pcapng" | |
| northAmerica.router.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| northAmerica.router.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| northAmerica.router.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| northAmerica.router.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| northAmerica.router.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| northAmerica.router.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| northAmerica.router.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| northAmerica.router.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| northAmerica.router.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| northAmerica.router.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| northAmerica.router.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.router.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| northAmerica.router.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.router.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.router.cb.forwardServiceRegistration | bool | true | |
| northAmerica.router.cb.forwardProtocolRegistration | bool | true | |
| northAmerica.router.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.router.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.router.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.router.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.router.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.router.bl.forwardServiceRegistration | bool | true | |
| northAmerica.router.bl.forwardProtocolRegistration | bool | true | |
| northAmerica.router.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.router.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.router.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.router.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.router.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.router.li.forwardServiceRegistration | bool | true | |
| northAmerica.router.li.forwardProtocolRegistration | bool | true | |
| northAmerica.router.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.router.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.router.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.router.eth.bitrate | double | ||
| northAmerica.router.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.router.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.router.nl.forwardServiceRegistration | bool | true | |
| northAmerica.router.nl.forwardProtocolRegistration | bool | true | |
| northAmerica.router.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.router.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.router.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.router.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.router.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.router.tn.forwardServiceRegistration | bool | true | |
| northAmerica.router.tn.forwardProtocolRegistration | bool | true | |
| northAmerica.router.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.router.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.router.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.router.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.router.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.router.at.forwardServiceRegistration | bool | true | |
| northAmerica.router.at.forwardProtocolRegistration | bool | true | |
| northAmerica.router.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.router.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.router.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.router.bgp.interfaceTableModule | string |
The path to the InterfaceTable module |
|
| northAmerica.router.bgp.routingTableModule | string | ||
| northAmerica.router.bgp.ospfRoutingModule | string | parent.hasOspf ? "^.ospf" : "" | |
| northAmerica.client.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.client.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| northAmerica.client.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.client.environment.initStage | int | 0 |
Initialization stage for the setup command |
| northAmerica.client.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| northAmerica.client.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| northAmerica.client.environment.setupCommand | string | "" |
A host OS system command |
| northAmerica.client.environment.teardownCommand | string | "" |
A host OS system command |
| northAmerica.client.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.client.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| northAmerica.client.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| northAmerica.client.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| northAmerica.client.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| northAmerica.client.pcapRecorder.fileFormat | string | "pcapng" | |
| northAmerica.client.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| northAmerica.client.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| northAmerica.client.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| northAmerica.client.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| northAmerica.client.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| northAmerica.client.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| northAmerica.client.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| northAmerica.client.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| northAmerica.client.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| northAmerica.client.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| northAmerica.client.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.client.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| northAmerica.client.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.client.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.client.cb.forwardServiceRegistration | bool | true | |
| northAmerica.client.cb.forwardProtocolRegistration | bool | true | |
| northAmerica.client.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.client.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.client.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.client.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.client.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.client.bl.forwardServiceRegistration | bool | true | |
| northAmerica.client.bl.forwardProtocolRegistration | bool | true | |
| northAmerica.client.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.client.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.client.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.client.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.client.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.client.li.forwardServiceRegistration | bool | true | |
| northAmerica.client.li.forwardProtocolRegistration | bool | true | |
| northAmerica.client.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.client.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.client.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.client.eth.bitrate | double | ||
| northAmerica.client.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.client.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.client.nl.forwardServiceRegistration | bool | true | |
| northAmerica.client.nl.forwardProtocolRegistration | bool | true | |
| northAmerica.client.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.client.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.client.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.client.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.client.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.client.tn.forwardServiceRegistration | bool | true | |
| northAmerica.client.tn.forwardProtocolRegistration | bool | true | |
| northAmerica.client.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.client.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.client.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.client.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.client.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.client.at.forwardServiceRegistration | bool | true | |
| northAmerica.client.at.forwardProtocolRegistration | bool | true | |
| northAmerica.client.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.client.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.client.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.server.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.server.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| northAmerica.server.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.server.environment.initStage | int | 0 |
Initialization stage for the setup command |
| northAmerica.server.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| northAmerica.server.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| northAmerica.server.environment.setupCommand | string | "" |
A host OS system command |
| northAmerica.server.environment.teardownCommand | string | "" |
A host OS system command |
| northAmerica.server.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.server.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| northAmerica.server.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| northAmerica.server.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| northAmerica.server.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| northAmerica.server.pcapRecorder.fileFormat | string | "pcapng" | |
| northAmerica.server.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| northAmerica.server.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| northAmerica.server.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| northAmerica.server.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| northAmerica.server.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| northAmerica.server.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| northAmerica.server.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| northAmerica.server.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| northAmerica.server.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| northAmerica.server.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| northAmerica.server.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.server.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| northAmerica.server.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.server.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.server.cb.forwardServiceRegistration | bool | true | |
| northAmerica.server.cb.forwardProtocolRegistration | bool | true | |
| northAmerica.server.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.server.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.server.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.server.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.server.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.server.bl.forwardServiceRegistration | bool | true | |
| northAmerica.server.bl.forwardProtocolRegistration | bool | true | |
| northAmerica.server.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.server.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.server.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.server.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.server.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.server.li.forwardServiceRegistration | bool | true | |
| northAmerica.server.li.forwardProtocolRegistration | bool | true | |
| northAmerica.server.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.server.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.server.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.server.eth.bitrate | double | ||
| northAmerica.server.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.server.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.server.nl.forwardServiceRegistration | bool | true | |
| northAmerica.server.nl.forwardProtocolRegistration | bool | true | |
| northAmerica.server.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.server.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.server.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.server.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.server.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.server.tn.forwardServiceRegistration | bool | true | |
| northAmerica.server.tn.forwardProtocolRegistration | bool | true | |
| northAmerica.server.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.server.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.server.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| northAmerica.server.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| northAmerica.server.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| northAmerica.server.at.forwardServiceRegistration | bool | true | |
| northAmerica.server.at.forwardProtocolRegistration | bool | true | |
| northAmerica.server.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| northAmerica.server.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| northAmerica.server.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.router.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.router.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| southAmerica.router.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.router.environment.initStage | int | 0 |
Initialization stage for the setup command |
| southAmerica.router.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| southAmerica.router.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| southAmerica.router.environment.setupCommand | string | "" |
A host OS system command |
| southAmerica.router.environment.teardownCommand | string | "" |
A host OS system command |
| southAmerica.router.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.router.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| southAmerica.router.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| southAmerica.router.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| southAmerica.router.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| southAmerica.router.pcapRecorder.fileFormat | string | "pcapng" | |
| southAmerica.router.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| southAmerica.router.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| southAmerica.router.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| southAmerica.router.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| southAmerica.router.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| southAmerica.router.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| southAmerica.router.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| southAmerica.router.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| southAmerica.router.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| southAmerica.router.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| southAmerica.router.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.router.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| southAmerica.router.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.router.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.router.cb.forwardServiceRegistration | bool | true | |
| southAmerica.router.cb.forwardProtocolRegistration | bool | true | |
| southAmerica.router.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.router.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.router.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.router.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.router.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.router.bl.forwardServiceRegistration | bool | true | |
| southAmerica.router.bl.forwardProtocolRegistration | bool | true | |
| southAmerica.router.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.router.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.router.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.router.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.router.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.router.li.forwardServiceRegistration | bool | true | |
| southAmerica.router.li.forwardProtocolRegistration | bool | true | |
| southAmerica.router.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.router.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.router.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.router.eth.bitrate | double | ||
| southAmerica.router.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.router.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.router.nl.forwardServiceRegistration | bool | true | |
| southAmerica.router.nl.forwardProtocolRegistration | bool | true | |
| southAmerica.router.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.router.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.router.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.router.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.router.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.router.tn.forwardServiceRegistration | bool | true | |
| southAmerica.router.tn.forwardProtocolRegistration | bool | true | |
| southAmerica.router.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.router.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.router.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.router.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.router.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.router.at.forwardServiceRegistration | bool | true | |
| southAmerica.router.at.forwardProtocolRegistration | bool | true | |
| southAmerica.router.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.router.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.router.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.router.bgp.interfaceTableModule | string |
The path to the InterfaceTable module |
|
| southAmerica.router.bgp.routingTableModule | string | ||
| southAmerica.router.bgp.ospfRoutingModule | string | parent.hasOspf ? "^.ospf" : "" | |
| southAmerica.client.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.client.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| southAmerica.client.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.client.environment.initStage | int | 0 |
Initialization stage for the setup command |
| southAmerica.client.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| southAmerica.client.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| southAmerica.client.environment.setupCommand | string | "" |
A host OS system command |
| southAmerica.client.environment.teardownCommand | string | "" |
A host OS system command |
| southAmerica.client.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.client.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| southAmerica.client.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| southAmerica.client.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| southAmerica.client.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| southAmerica.client.pcapRecorder.fileFormat | string | "pcapng" | |
| southAmerica.client.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| southAmerica.client.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| southAmerica.client.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| southAmerica.client.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| southAmerica.client.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| southAmerica.client.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| southAmerica.client.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| southAmerica.client.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| southAmerica.client.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| southAmerica.client.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| southAmerica.client.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.client.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| southAmerica.client.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.client.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.client.cb.forwardServiceRegistration | bool | true | |
| southAmerica.client.cb.forwardProtocolRegistration | bool | true | |
| southAmerica.client.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.client.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.client.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.client.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.client.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.client.bl.forwardServiceRegistration | bool | true | |
| southAmerica.client.bl.forwardProtocolRegistration | bool | true | |
| southAmerica.client.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.client.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.client.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.client.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.client.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.client.li.forwardServiceRegistration | bool | true | |
| southAmerica.client.li.forwardProtocolRegistration | bool | true | |
| southAmerica.client.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.client.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.client.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.client.eth.bitrate | double | ||
| southAmerica.client.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.client.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.client.nl.forwardServiceRegistration | bool | true | |
| southAmerica.client.nl.forwardProtocolRegistration | bool | true | |
| southAmerica.client.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.client.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.client.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.client.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.client.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.client.tn.forwardServiceRegistration | bool | true | |
| southAmerica.client.tn.forwardProtocolRegistration | bool | true | |
| southAmerica.client.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.client.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.client.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.client.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.client.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.client.at.forwardServiceRegistration | bool | true | |
| southAmerica.client.at.forwardProtocolRegistration | bool | true | |
| southAmerica.client.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.client.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.client.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.server.status.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.server.status.initialStatus | string | "UP" |
TODO @signal, @statistic |
| southAmerica.server.environment.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.server.environment.initStage | int | 0 |
Initialization stage for the setup command |
| southAmerica.server.environment.globalNamespace | bool | false |
Create new network namespaces under /var/run/netns/ (Linux only) |
| southAmerica.server.environment.namespace | string | "" |
Name of the host OS network namespace (optional) (Linux only) |
| southAmerica.server.environment.setupCommand | string | "" |
A host OS system command |
| southAmerica.server.environment.teardownCommand | string | "" |
A host OS system command |
| southAmerica.server.pcapRecorder.displayStringTextFormat | string | "rec: %n pks" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.server.pcapRecorder.verbose | bool | true |
Whether to log packets on the module output |
| southAmerica.server.pcapRecorder.recordEmptyPackets | bool | true |
Specifies if zero length packets are recorded or not |
| southAmerica.server.pcapRecorder.enableConvertingPackets | bool | true |
Specifies if converting packets to link type is allowed or not |
| southAmerica.server.pcapRecorder.pcapFile | string | "" |
The PCAP file to be written, suggested value: pcapFile = "${resultdir}/${configname}-#${runnumber}" + fullpath() + ".pcap" |
| southAmerica.server.pcapRecorder.fileFormat | string | "pcapng" | |
| southAmerica.server.pcapRecorder.snaplen | int | 65535 |
Maximum number of bytes to record per packet |
| southAmerica.server.pcapRecorder.timePrecision | int | 6 |
Time precision in recorded file. pcap supports only 6 (usec) or 9 (nanosec), pcapng supports more values (see 'if_tsresol' option in pcapng file format). |
| southAmerica.server.pcapRecorder.dumpBadFrames | bool | true |
Enable dump of frames with hasBitError |
| southAmerica.server.pcapRecorder.moduleNamePatterns | string | "wlan[*] eth[*] ppp[*]" |
Space-separated list of sibling module names to listen on |
| southAmerica.server.pcapRecorder.sendingSignalNames | string | "transmissionEnded" |
Space-separated list of outbound packet signals to subscribe to |
| southAmerica.server.pcapRecorder.receivingSignalNames | string | "receptionEnded" |
Space-separated list of inbound packet signals to subscribe to |
| southAmerica.server.pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
Space-separated list of protocol names as defined in the Protocol class |
| southAmerica.server.pcapRecorder.packetFilter | object | "*" |
Which packets are considered, matches all packets by default |
| southAmerica.server.pcapRecorder.helpers | string | "" |
Usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
| southAmerica.server.pcapRecorder.alwaysFlush | bool | false |
Flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
| southAmerica.server.interfaceTable.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.server.interfaceTable.displayAddresses | bool | false |
Whether to display IP addresses on links |
| southAmerica.server.cb.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.server.cb.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.server.cb.forwardServiceRegistration | bool | true | |
| southAmerica.server.cb.forwardProtocolRegistration | bool | true | |
| southAmerica.server.cb.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.server.cb.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.server.cb.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.server.bl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.server.bl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.server.bl.forwardServiceRegistration | bool | true | |
| southAmerica.server.bl.forwardProtocolRegistration | bool | true | |
| southAmerica.server.bl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.server.bl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.server.bl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.server.li.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.server.li.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.server.li.forwardServiceRegistration | bool | true | |
| southAmerica.server.li.forwardProtocolRegistration | bool | true | |
| southAmerica.server.li.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.server.li.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.server.li.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.server.eth.bitrate | double | ||
| southAmerica.server.nl.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.server.nl.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.server.nl.forwardServiceRegistration | bool | true | |
| southAmerica.server.nl.forwardProtocolRegistration | bool | true | |
| southAmerica.server.nl.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.server.nl.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.server.nl.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.server.tn.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.server.tn.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.server.tn.forwardServiceRegistration | bool | true | |
| southAmerica.server.tn.forwardProtocolRegistration | bool | true | |
| southAmerica.server.tn.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.server.tn.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.server.tn.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
| southAmerica.server.at.displayStringTextFormat | string | "processed %p pk (%l)" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| southAmerica.server.at.interfaceTableModule | string |
Module path to the ~InterfaceTable module |
|
| southAmerica.server.at.forwardServiceRegistration | bool | true | |
| southAmerica.server.at.forwardProtocolRegistration | bool | true | |
| southAmerica.server.at.interfaceMapping | object | {} |
Maps network interface names to connected submodule names (e.g. {"eth0": "bridging"}), overrides automatically learned dispatching; * overrides all learned network interfaces, ? overrides default |
| southAmerica.server.at.serviceMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ethernetmac": "bridging"}), overrides automatically learned dispatching; * overrides all learned services, ? overrides default |
| southAmerica.server.at.protocolMapping | object | {} |
Maps protocols to connected submodule names (e.g. {"ipv4": "bridging"}), overrides automatically learned dispatching; * overrides all learned protocols, ? overrides default |
Source code
network EarthCloud { @display("bgi=maps/world;bgb=875,414"); submodules: configurator: Ipv4NetworkConfigurator { parameters: @display("p=100,200;is=s"); } internet: InternetCloud { @display("p=387,185;is=vl"); } africa: SimpleContinentCloud { @display("p=465,288"); } asia: SimpleContinentCloud { @display("p=662,121"); } australia: SimpleContinentCloud { @display("p=759,299;"); } europe: SimpleContinentCloud { @display("p=446,77"); } northAmerica: SimpleContinentCloud { @display("p=170,120"); } southAmerica: SimpleContinentCloud { @display("p=260,270"); } connections: africa.pppg++ <--> { datarate = 100Mbps; delay = 2ms; } <--> internet.pppg++; asia.pppg++ <--> { datarate = 100Mbps; delay = 2ms; } <--> internet.pppg++; australia.pppg++ <--> { datarate = 100Mbps; delay = 2ms; } <--> internet.pppg++; europe.pppg++ <--> { datarate = 100Mbps; delay = 2ms; } <--> internet.pppg++; northAmerica.pppg++ <--> { datarate = 100Mbps; delay = 2ms; } <--> internet.pppg++; southAmerica.pppg++ <--> { datarate = 100Mbps; delay = 2ms; } <--> internet.pppg++; }File: examples/internetcloud/earthcloud/EarthCloud.ned