Recent Changes - --> Search: -->
  • Home

  • Manual

  • Reference

  • Extensions

  • Protocol Matrix

  • Download

  • Development

Welcome to the INET Framework!

The INET Framework is an open-source communication networks simulation package for the OMNeT++ simulation environment. The INET Framework contains models for several wired and wireless networking protocols, including UDP, TCP, SCTP, IP, IPv6, Ethernet, PPP, 802.11, MPLS, OSPF, and many others.

spacer


News

INET-2.1.0 stable release is available (Feb 1, 2013)

This is the latest stable version of the INET Framework. This version is now recommended for your further INET based development. It requires OMNeT++ 4.2 (version 4.2.2 or later is suggested.)

NEW:

  • Added a new module to model an "internet cloud". The component can be configured to model packet delay, datarate and drop probability between each input-output interface pair. The parameter matrix is provided as an XML configuration file. See the README file in src/nodes/internetcloud for further details.
  • New SimpleVoIPReceiver/Sender applications that gather MOS (Mean Opinion Score) for measuring voice quality.
  • Added HNA support to the Batman protocol (MANET)

CHANGED:

Applications:

  • PingApp: Shows the configured destination address at the end of the simulation.
  • TCPBasicClientApp: bugfix #611: simulation generated an ASSERT if numRequestsPerSession parameter value larger than 1.
  • TcpApp: socket state is now shown on the GUI (in Echo, Sink and Session apps.)
  • VoipTool: was renamed to VoIPStream (The actual module names are VoIPStreamSender/Receiver.)

Ethernet:

  • Transmission channel's 'disabled' parameter is now correctly handled in EtherMacBase.

Ieee80211Mac:

  • Better parameter processing in MAC: error is thrown if an undefined value is specified for the opmode or autoBitrate parameters.
  • Added the Ieee80211Descriptor class to assign modulation speed and type for the different opModes.
  • Bugfix: Default bitrate for opMode 'p' was incorrectly set.

BGP:

  • Minor optimizations
  • Bugfix: The text in specification "sets the ConnectRetryTimer to zero" means: restart this timer. The _connectRetryTime member now stores the timeout value.

Manetrouting:

  • updated documentation
  • replaced Uint128 with ManetNetworkAddress
  • removed:
    • unused ManetTimer and BatmanTimer class
    • unused static variables
    • isIpLocalAddress(), uses isLocalAddress()
    • convertAddressToString()
    • getXPos(), getYPos() functions, you should use getPosition() instead.
  • redesigned coordinate and speed storage and access. replaced double x,y with a Coord. getDirection() now returns the speed vector (as a Coord)
  • getters returns UNSPECIFIED_ADDRESS if addrType==UNDEFINED
  • merged sendToIp() code into a common base function sendToIpOnIface()

AODV:

  • AODV's hand-written descriptors were replaced with generated ones.
  • aodv_msg_struct.h: added getter methods expected by the generated descriptors removed hand-written aodv_msg_struct_descriptor.cc

Batman:

  • Updated and expanded documentation
  • Updated the code to match the latest available "batmand" version.
  • Numerous optimizations
  • Fixed several memory leaks
  • Fixed routing table corruption and possible crash when multiple radios were used in a single host
  • Fixed decapsulation of incoming packets. Now it checks for the type of decapsulated packet.
  • Fix for a problem when aggregated batman packets were dropped erronously.
  • Added HNA support. Nodes can advertise external networks, so traffic towards those networks can be routed correctly. Use the announcedNetworks parameter to specify multiple connected external networks.
  • Added SourceModifier script to help the conversion from the original batmand code.
    • fixes spaces, tabs and empty lines
    • replaces some c-style structs to c++-style classes
    • replaces some batmand specified list manipulators with c++ code
    • replaces malloc/free with new/delete
    • removes prof_start()/prof_stop() calls

Examples:

  • Added a new simulation with wired and wireless hosts exchanging UDP data via an AccessPoint. It shows how to use the IPv4NetworkConfigurator to mix wired and wireless networks.
  • Fixes for BGP examples.
  • New example to demonstrate HNA support in Batman.
  • Hostautoconf examample moved to the adhoc folder.

Other changes:

  • Uint128 class was removed. Use ManetNetworkAddress class instead.
  • Visual changes in StandardHost/NodeBase: utility module icons are now smaller and wlan[]/PingApp[] modules are displayed in a row.
  • NodeBase: it is possible to use mobility module even if numRadios = 0
  • Added check for detecting too small netmask parameter value in HostAutoConfigurator
  • PacketDump: TCP header option fix (dumped only in verbose mode.)
  • Bugfix #620. The module pointer returned by a ModuleAccess class is now cached only if get() was used. For get(module) no caching is done.
  • MACAddress: made the constructor explicit so we will not see unexpected implicit conversions in future
  • IPv6Address: removed Uint128 related functions and added an additional constructMask() method
  • headerserializers: compile fix for Visual C++ 10.0 and later
  • Pcap now records on ALL interfaces by default (including external IFs). Added Enter_Method for better error reporting if a packet cannot be serialized. Also added an icon for PcapRecorder.
  • Several TCP related fixes.

You can download INET-2.1.0 here.

INET-2.0.0 stable release is available (Aug 7, 2012)

We are happy to announce the INET Framework 2.0.0 release. The INET Framework is an open-source communication networks simulation package for the OMNeT++ simulation environment. It contains models for several wired and wireless networking protocols, including UDP, TCP, SCTP, IP, IPv6, Ethernet, PPP, 802.11, MPLS, OSPF, and many others. We recommend that you port your existing models to the new 2.0 version so you can benefit from new features and improvements.

New features:

  • INET is now partitioned into several "project features" that can be turned on or off independently. This can greatly reduce the compile time by turning off unused parts of INET.
  • Result recording has been ported to use the new signal-based statistics collection framework; this allows better separation of the model and the statistic collection code.
  • New Differentiated Services framework for QoS simulations.
  • New IPv4NetworkConfigurator for more powerful configuration of IP networks.
  • New protocols: DHCP, BGPv4; interated xMIPv6 (mobile IPv6).
  • New MANET routing protocols (from INETMANET): AODV, DSR, BATMAN, DYMO, OLSR
  • New PcapRecorder module for capturing traffic traces.
  • New VoIP application that allows sending an actual voice stream over the network.
  • Integrated HttpTools for simulating HTTP-based applications.
  • New mobility modules including TraCI (taken over from the Veins project)
  • Added an LwIP-based TCP implementation.
  • Writing a manual for INET has been started and already made a great progress.

Improvements:

  • Node models refactored for better extensibility (StandardHost, AdhocHost, WirelessHost, Router).
    • Different types of TCP, UDP and SCTP applications can co-exist in the same host.
    • Alternate UDP and TCP implementation can be plugged-in. Three independent TCP implementations are available (OMNeT++ native, LwIP, NSC)
    • Inside a host, submodules are instantiated only if they are actually required.
    • Configurable hooks have been added in the network layer to allow packet drop/duplication scenarios.
    • Routers now support an unlimited number of wireless, Ethernet, point-to-point and external interfaces.
    • Mobility support in Router and StandardHost is now optional.
    • AccessPoints now have both wireless and Ethernet interfaces (bridged).
  • Revised OSPFv2 model.
  • TCP: Transmission mode (byte count, object and byte stream) is now specified by the application.
  • UDP: multicast, broadcast and TTL support. Improved socket API.
  • IPv6: implemented default router selection, tunneling and datagram fragmentation/reassembly for PPP links.
  • IPv4: reimplemented multicast routing
  • Ethernet: EtherMAC refactored for better readability; added reconnect support, better PAUSE support, support for 40 and 100 Gigabit Ethernet.
  • Ethernet datarate is now configured on the channels (not in the MAC). Also added new Ethernet channel types: Eth10M, Eth100M, Eth1G, Eth10G, Eth40G and Eth100G
  • IEEE802.11 a/b/g/s model: Unified several implementations into a single MAC module.
  • Multiple radio support for wireless hosts; radio infrastructure has been refactored.
  • Refactoring: Mobility support is now completely independent of the radio infrastructure and it is compatible with the MiXiM mobility modules.
  • A comprehensive test suite has be devised, and deployed in a continuous testing environment (Jenkins).
  • A large number of bug fixes and other improvements.

You can find the detailed change log here.

You can download INET-2.0.0 here.

New INET Development Release: INET-1.99.5 (June 22, 2012)

We have just released the last 1.99.x version for the development branch of INET. Highlights of this release are a new DiffServ framework and the overhaul of the OSPFv2 model. You can download INET-1.99.5 here, or read what's new in this version here.

New INET Development Release: INET-1.99.4 (March 21, 2012)

We have just released a new version from the development branch of INET. It contains some features that did not make into the previous version. You can download INET-1.99.4 here, or read what's new in this version here.

New INET Development Release: INET-1.99.3 (Feb 24, 2012)

We have just released a new version from the development branch of INET. You can download INET-1.99.3 here, or read what's new in this version here.

New INET Releases: INET-20111118 (stable), INET-1.99.2 (development) (Nov 18, 2011)

INET-20111118 is an update of the previous stable INET version to the just-released OMNeT++ 4.2, with a few bug fixes. The other download, INET-1.99.2 represents a snapshot of the development effort ongoing since the last 1.99.x release in March, which will eventually result in the 2.0 stable release. Learn more about the development of INET here, or download the source here.

Development Snapshot INET-1.99.1 (May 27, 2011)

Work on INET is progressing fast. The 1.99.x snapshots represent the consolidation of the INET codebase as well as integrating various external INET extensions created by the community, and will eventually result in a 2.0 stable release. Learn more about the development of INET here, or download the source here.

Development Snapshot INET-1.99.0 (March 3, 2011)

This release is a snapshot of work in progress, please do not use it for research. The source is available from the download page.

INET-20110225 Released (Feb 25, 2011)

We are happy to announce a new release of the INET Framework, INET-20110225. This release contains #include fixes needed for INET to compile with OMNeT++ 4.2b1. (If you have your own copy or fork of INET, apply this and this patch.) Other changes in this INET release include SCTP fixes and additional SCTP statistics by Alberto Cortes. Download

INET Web Site Redesigned (Aug 16, 2010)

The INET Framework's web site received a serious face lift.

BGPv4 model contributed to INET (Aug 5, 2010)

Helene Lageber has contributed a BGPv4 model to the INET Framework. The code is now available in the topic/bgpv4 branch of the INET repo; it will be integrated into the INET master branch after some refinements and testing.

INET-20100723 Released (Jul 23, 2010)

A new INET Framework has been released. The most significant change is new features for the TCP model by Thomas Reschka. See the release announcement.

Edit - History - Print - Attach - Recent Changes - All Pages - Search
Page last modified on February 04, 2013, at 02:33 PM
gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.