PppInterface

Package: inet.linklayer.ppp

PppInterface

compound module

This module implements a PPP network interface.

pcapRecorder[numPcapRecorders] : PcapRecorder

Records PCAP traces of frames sent/received by other modules within the same host.

Source:
pcapRecorder[numPcapRecorders]: PcapRecorder {
    parameters:
        moduleNamePatterns = ".^";
        @display("p=100,100;is=s");
} clock : like IClock

IClock: This module interface is implemented by clock models.

Source:
clock: <default("")> like IClock if typename != "" {
    parameters:
        @display("p=100,200;is=s");
} ingressTC : like ITrafficConditioner

OmittedTrafficConditioner: This module implements the module given interface and can be used as an omitted optional module...

ITrafficConditioner: This module interface is implemented by traffic conditioner modules.

Source:
ingressTC: <default("OmittedTrafficConditioner")> like ITrafficConditioner {
    parameters:
        @display("p=500,100");
} egressTC : like ITrafficConditioner

OmittedTrafficConditioner: This module implements the module given interface and can be used as an omitted optional module...

ITrafficConditioner: This module interface is implemented by traffic conditioner modules.

Source:
egressTC: <default("OmittedTrafficConditioner")> like ITrafficConditioner {
    parameters:
        @display("p=300,100");
} queue : like IPacketQueue

DropTailQueue: This module is a limited packet queue which drops packets at the tail of the queue.

IPacketQueue: This module interface is implemented by packet queue modules.

Source:
queue: <default("DropTailQueue")> like IPacketQueue {
    parameters:
        packetCapacity = default(10000);
        @display("p=300,200;q=l2queue");
} ppp : Ppp

PPP implementation.

Source:
ppp: Ppp {
    parameters:
        @display("p=500,300");
}

Usage diagram

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Extends

Name Type Description
NetworkInterface compound module

This module serves as the base module for all network interfaces.

Parameters

Name Type Default value Description
displayStringTextFormat string "%a (%i)\n%m"
recordPcap bool false
numPcapRecorders int recordPcap ? 1 : 0
interfaceTableModule string

Properties

Name Value Description
networkInterface
lifecycleSupport
class NetworkInterface
display i=block/ifcard

Gates

Name Direction Size Description
upperLayerIn input
upperLayerOut output
phys inout

Signals

Name Type Unit
packetDropped inet::Packet

Statistics

Name Title Source Record Unit Interpolation Mode
packetDropInterfaceDown packet drops: interface down packetDropReasonIsInterfaceDown(packetDropped) count, sum(packetBytes), vector(packetBytes) none
packetDropNoCarrier packet drops: no carrier packetDropReasonIsNoCarrier(packetDropped) count, sum(packetBytes), vector(packetBytes) none

Direct method calls (observed)

call tofunctioninfo
MessageDispatcherinet::MessageDispatcher::handleRegisterInterfacehandleRegisterInterface
InterfaceTableinet::InterfaceTable::findInterfaceByNamefindInterfaceByName
InterfaceTableinet::InterfaceTable::interfaceChangedinterfaceChanged
NextHopRoutingTableinet::NextHopRoutingTable::receiveSignalinterfaceCreated

Called methods (observed)

functioninfocall from
inet::NetworkInterface::handleOperationStagehandleOperationStageScenarioManager
inet::NetworkInterface::receiveSignalPOST_MODEL_CHANGE-=Network=-, ScenarioManager, OmittedTrafficConditioner

Tagging operations (observed)

tagTypetagAction
clearTags

Unassigned submodule parameters

Name Type Default value Description
pcapRecorder.verbose bool true

whether to log packets on the module output

pcapRecorder.pcapFile string ""

the PCAP file to be written

pcapRecorder.fileFormat string "pcapng"
pcapRecorder.snaplen int 65535

maximum number of bytes to record per packet

pcapRecorder.dumpBadFrames bool true

enable dump of frames with hasBitError

pcapRecorder.sendingSignalNames string "packetSentToLower"

space-separated list of outbound packet signals to subscribe to

pcapRecorder.receivingSignalNames string "packetReceivedFromLower"

space-separated list of inbound packet signals to subscribe to

pcapRecorder.dumpProtocols string "ethernetmac ppp ieee80211mac"

space-separated list of protocol names as defined in the Protocol class

pcapRecorder.packetFilter object "*"

which packets are considered, matches all packets by default

pcapRecorder.helpers string ""

usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper"

pcapRecorder.alwaysFlush bool false

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

pcapRecorder.displayStringTextFormat string "rec: %n pks"
ppp.interfaceTableModule string

The path to the InterfaceTable module

ppp.displayStringTextFormat string "rate: %b\nsent: %s, rcvd: %r\nqueue: %q, drop: %d"
ppp.sendRawBytes bool false

when true packets are serialized into a sequence of bytes before sending out

ppp.mtu int 4470B
ppp.stopOperationExtraTime double -1s

extra time after lifecycle stop operation finished

ppp.stopOperationTimeout double 2s

timeout value for lifecycle stop operation

Source code

//
// This module implements a PPP network interface.
//
module PppInterface extends NetworkInterface like IPppInterface
{
    parameters:
        string interfaceTableModule;
        *.interfaceTableModule = default(absPath(this.interfaceTableModule));
    gates:
        input upperLayerIn;
        output upperLayerOut;
        inout phys @labels(PppFrame);
    submodules:
        ingressTC: <default("OmittedTrafficConditioner")> like ITrafficConditioner {
            parameters:
                @display("p=500,100");
        }
        egressTC: <default("OmittedTrafficConditioner")> like ITrafficConditioner {
            parameters:
                @display("p=300,100");
        }
        queue: <default("DropTailQueue")> like IPacketQueue {
            parameters:
                packetCapacity = default(10000);
                @display("p=300,200;q=l2queue");
        }
        ppp: Ppp {
            parameters:
                @display("p=500,300");
        }
    connections:
        upperLayerIn --> { @display("m=n"); } --> egressTC.in;
        egressTC.out --> queue.in;
        queue.out --> ppp.upperLayerIn;

        phys <--> { @display("m=s"); } <--> ppp.phys;

        ppp.upperLayerOut --> ingressTC.in;
        ingressTC.out --> { @display("m=n"); } --> upperLayerOut;
}

File: src/inet/linklayer/ppp/PppInterface.ned