NED File src/inet/emulation/networklayer/ipv4/ExtIpv4TunDevice.ned
Name | Type | Description |
---|---|---|
ExtIpv4TunDevice | simple module |
This module provides a bidirectional connection to a real TUN device of the host computer which is running the simulation. It writes the packets arrived on 'lowerLayerIn' gate to the specified real TUN device, and sends out packets arrived from real TAP device on 'lowerLayerOut' gate. |
Source code
// // Copyright (C) 2018 OpenSim Ltd. // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with this program; if not, see <http://www.gnu.org/licenses/>. // package inet.emulation.networklayer.ipv4; // // This module provides a bidirectional connection to a real TUN device of the // host computer which is running the simulation. It writes the packets arrived // on 'lowerLayerIn' gate to the specified real TUN device, and sends out packets // arrived from real TAP device on 'lowerLayerOut' gate. // simple ExtIpv4TunDevice { parameters: string device; string packetNameFormat = default("Ext"); @signal[packetSentToLower](type=Packet); @signal[packetReceivedFromLower](type=Packet); @signal[packetSent](type=Packet); @signal[packetReceived](type=Packet); @statistic[packetSentFromLower](title="packets sent to higher layer"; source=packetSentToLower; record=count,"sum(packetBytes)","vector(packetBytes)"; interpolationmode=none); @statistic[packetReceivedFromLower](title="packets received from higher layer"; source=packetReceivedFromLower; record=count,"sum(packetBytes)","vector(packetBytes)"; interpolationmode=none); @statistic[packetSent](title="packets sent"; source=packetSent; record=count,"sum(packetBytes)","vector(packetBytes)"; interpolationmode=none); @statistic[packetReceived](title="packets received"; source=packetReceived; record=count,"sum(packetBytes)","vector(packetBytes)"; interpolationmode=none); gates: input lowerLayerIn @labels(EtherFrame); output lowerLayerOut @labels(EtherFrame); }