1 / 83

Chapter 2 : The ns-3 Network Simulator

Chapter 2 : The ns-3 Network Simulator. George F. Riley Thomas R. Henderson. ns-3 Introduction. ns-3 ( http:// www.nsnam.org ) is a free, open source software project building and maintaining a discrete-event network simulator for research and education Technical goals:

gilead
Télécharger la présentation

Chapter 2 : The ns-3 Network Simulator

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Chapter 2 : The ns-3 Network Simulator George F. Riley Thomas R. Henderson

  2. ns-3 Introduction ns-3 (http://www.nsnam.org) is a free, open source software project building and maintaining a discrete-event network simulator for research and education Technical goals: • Build and maintain a simulation core aligned with the needs of the research community • Help to improve the technical rigor of network simulation practice

  3. ns-3 themes • Research and education focus • Build and maintain simulation core, integrate models developed by other researchers • Support research-driven workflows • Open source development model • Research community maintains the models • Leverage available tools and models • Write programs to work together • Enforce core coding/testing standards

  4. ns-3 software overview • ns-3 is written in C++, with bindings available for Python • simulation programs are C++ executables or Python programs • Python is often a glue language, in practice • ns-3 is a GNU GPLv2-licensed project • ns-3 is not backwards-compatible with ns-2

  5. ns simulators: a brief history 1990 2000 2010 1988: REAL (Keshav) quarterly releases since ns-3.1 1990s: ns-1 1996: ns-2 1997-2000: DARPA VINT 2001-04: DARPA SAMAN, NSF CONSER 2006: ns-3 funded (NSF, INRIA) ns-3 features a new simulation core, with models drawn from GTNetS, ns-2, and the "yans" network simulator ns-3 core development (2006-08) June 2008: ns-3.1 release

  6. Acknowledgment of support

  7. 2.1 Introduction

  8. Why ns-3? • Despite huge success with ns-2, the ns-3 developers had project goals that motivated the development of a new tool 1) Improve the realism of the models 2) Software reuse 3) Improved debugging 4) Consider long-term software maintenance

  9. 1) attention to realism Problem: Research often involves a mix of simulations and testbed or live experiments • If the simulator cannot be made to closely model a real system: • hard to compare results or validate the model • hard to reuse software between the two domains ns-3 solution: • model nodes more like a real computer • support key interfaces such as sockets API and IP/device driver interface (in Linux) • reuse of kernel and application code

  10. 1) attention to realism (example) An ns-3 Node is a husk of a computer to which applications, stacks, and NICs are added Application Application Application (operating systems)

  11. 2) software integration Problem: why reimplement models and tools for which open-source implementations abound? ns-3 solution: • ns-3 conforms to standard input/output formats so that other tools can be reused. • e.g., pcap trace output, ns-2 mobility scripts • ns-3 is adding support for running implementation code • Network Simulation Cradle (Jansen) integration has met with success: Linux TCP code • ns-3 “direct code execution” environment

  12. 2) software reuse (cont.) • Example: ns-3 trace viewed with Wireshark:

  13. 3) Improved debugging • Avoid split-language object implementations that proved to be hard to debug in ns-2 (OTcl/C++) • ns-3 uses a C++ core with Python API bindings • Layer a "helper" API on top of a powerful but complex low-layer API • Different APIs for different user expertise • Reduce memory errors via use of smart pointers

  14. 4) Software maintenance • Open source projects are challenged to maintain the software over time • Developers contribute models, then graduate • Maintainers change over time • ns-3 chose to use a more rigorous coding standard, detailed code reviews, and regression testing infrastructure • ns-3 project decided not to devote scarce maintenance resources to develop and maintain ns-2 backward compatibility

  15. 2.2 Modeling the Network Elements in ns-3

  16. 2.2 Modeling the Network Elements in ns-3 • Key objects in ns-3: nodes, devices, channels, protocols, packets, headers Application Application Application Application Packet Protocol stack Protocol stack Channel Node Node NetDevice NetDevice NetDevice

  17. Random Variables • Currently implemented distributions • Uniform: values uniformly distributed in an interval • Constant: value is always the same (not really random) • Sequential: return a sequential list of predefined values • Exponential: exponential distribution (poisson process) • Normal (gaussian) • Log-normal • pareto, weibull, triangular, • …

  18. ns-3 random number generator • Uses the MRG32k3a generator from Pierre L'Ecuyer • http://www.iro.umontreal.ca/~lecuyer/myftp/papers/streams00.pdf • Period of PRNG is 3.1x10^57 • Partitions a pseudo-random number generator into uncorrelatedstreams and substreams • Each RandomVariable gets its own stream • This stream partitioned into substreams • Independent replications are handled by incrementing the run number to obtain uncorrelated substreams

  19. Tracing and statistics • Tracing is a structured form of simulation output • Example (from ns-2): + 1.84375 0 2 cbr 210 ------- 0 0.0 3.1 225 610 - 1.84375 0 2 cbr 210 ------- 0 0.0 3.1 225 610 r 1.84471 2 1 cbr 210 ------- 1 3.0 1.0 195 600 r 1.84566 2 0 ack 40 ------- 2 3.2 0.1 82 602 + 1.84566 0 2 tcp 1000 ------- 2 0.1 3.2 102 611 Problem: Tracing needs vary widely • would like to change tracing output without editing the core • would like to support multiple outputs

  20. ns-3 has a new tracing model ns-3 solution: decouple trace sources from trace sinks Benefit: Customizable trace sinks Trace source Trace source Trace sink Trace source configurable by user unchanging

  21. ns-3 tracing • various trace sources (e.g., packet receptions, state machine transitions) are plumbed through the system • Documented in a central place

  22. Basic tracing • Helper classes hide the tracing details from the user, for simple trace types • ascii or pcap traces of devices std::ofstreamascii; ascii.open ("wns3-helper.tr"); CsmaHelper::EnableAsciiAll (ascii); CsmaHelper::EnablePcapAll ("wns3-helper"); YansWifiPhyHelper::EnablePcapAll ("wsn3-helper");

  23. Multiple levels of tracing • Highest-level: Use built-in trace sources and sinks and hook a trace file to them • Mid-level: Customize trace source/sink behavior using the tracing namespace • Low-level: Add trace sources to the tracing namespace • Or expose trace source explicitly

  24. Highest-level of tracing • Use built-in trace sources/sinks, and hook a trace file to them // Also configure some tcpdump traces; each interface will be traced // The output files will be named // simple-point-to-point.pcap-<nodeId>-<interfaceId> // and can be read by the "tcpdump -r" command (use "-tt" option to // display timestamps correctly)‏ PcapTracepcaptrace ("simple-point-to-point.pcap"); pcaptrace.TraceAllIp ();

  25. Mid-level of tracing • Mid-level: Customize trace source/sink behaviour with tracing namespace void PcapTrace::TraceAllIp (void)‏ { NodeList::Connect ("/nodes/*/ipv4/(tx|rx)", MakeCallback (&PcapTrace::LogIp, this)); } Regular expression editing Hook in a different trace sink

  26. ns-3 attribute system Problem: Researchers want to identify all of the values affecting the results of their simulations • and configure them easily ns-3 solution: Each ns-3 object has a set of attributes: • A name, help text • A type • An initial value • Control all simulation parameters for static objects • Dump and read them all in configuration files • Visualize them in a GUI • Makes it easy to verify the parameters of a simulation

  27. Use cases for attributes • An Attribute represents a value in our system • An Attribute can be connected to an underlying variable or function • e.g. TcpSocket::m_cwnd; • or a trace source

  28. Use cases for attributes (cont.)‏ • What would users like to do? • Know what are all the attributes that affect the simulation at run time • Set a default initial value for a variable • Set or get the current value of a variable • Initialize the value of a variable when a constructor is called • The attribute system is a unified way of handling these functions

  29. How to handle attributes • The traditional C++ way: • export attributes as part of a class's public API • walk pointer chains (and iterators, when needed) to find what you need • use static variables for defaults • The attribute system provides a more convenient API to the user to do these things

  30. Navigating the attributes • Attributes are exported into a string-based namespace, with filesystem-like paths • namespace supports regular expressions • This allows individual instances of attributes to be manipulated • Attributes also can be referenced by name without specifying a path through the object namespace • e.g. “ns3::WifiPhy::TxGain” • This allows users to manipulate a global (default) value of the attribute • A Config class allows users to manipulate the attributes

  31. Attribute namespace • strings are used to describe paths through the namespace Config::Set ("/NodeList/1/$ns3::Ns3NscStack<linux2.6.26>/net.ipv4.tcp_sack", StringValue ("0"));

  32. Navigating the attributes using paths • Examples: • Nodes with NodeIds 1, 3, 4, 5, 8, 9, 10, 11: “/NodeList/[3-5]|[8-11]|1” • UdpL4Protocol object instance aggregated to matching nodes: “/$ns3::UdpL4Protocol”

  33. What users will do • e.g.: Set a default initial value for a variable Config::Set (“ns3::WifiPhy::TxGain”, DoubleValue (1.0)); • Syntax also supports string values: Config::Set (“WifiPhy::TxGain”, StringValue (“1.0”)); Attribute Value

  34. Fine-grained attribute handling • Set or get the current value of a variable • Here, one needs the path in the namespace to the right instance of the object Config::SetAttribute(“/NodeList/5/DeviceList/3/Phy/TxGain”, DoubleValue(1.0)); DoubleValued; nodePtr->GetAttribute ( “/NodeList/5/NetDevice/3/Phy/TxGain”, v); • Users can get pointers to instances also, and pointers to trace sources, in the same way

  35. ns-3 attribute system • Object attributes are organized and documented in the Doxygen • Enables the construction of graphical configuration tools:

  36. Attribute documentation

  37. Options to manipulate attributes • Individual object attributes often derive from default values • Setting the default value will affect all subsequently created objects • Ability to configure attributes on a per-object basis • Set the default value of an attribute from the command-line: CommandLine cmd; cmd.Parse (argc, argv); • Set the default value of an attribute with NS_ATTRIBUTE_DEFAULT • Set the default value of an attribute in C++: Config::SetDefault ("ns3::Ipv4L3Protocol::CalcChecksum", BooleanValue (true)); • Set an attribute directly on a specic object: Ptr<CsmaChannel> csmaChannel = ...; csmaChannel->SetAttribute ("DataRate", StringValue ("5Mbps"));

  38. 2.3 Simulating a Computer Network in ns-3

  39. Four basic steps to perform • Create the network topology • Create the data demand on the network • Execute the simulation • Analyze the results Program listing 2-1 annotates the file "first.cc", which is the first tutorial program discussed in the ns-3 tutorial

  40. 2.4: Smart Pointers in ns-3

  41. Smart Pointers • Memory management in a C++ program is a complex process, and is often done incorrectly or inconsistently. • We have settled on a reference counting design using so-called "smart-pointers" • All objects maintain an internal reference count that allows the object to safely delete itself when the count goes to zero • We provide a class called "Ptr" that is similar to the intrusive_ptr of the Boost C++ library • This implementation allows you to manipulate the smart pointer as if it was a normal pointer: you can compare it with zero, compare it against other pointers, assign zero to it, etc.

  42. 2.5: Representing Packets in ns-3

  43. 2.5: Representing Packets in ns-3 • The design of the Packet framework of ns-3 was heavily guided by a few important use-cases: • avoid changing the core of the simulator to introduce new types of packet headers or trailers • maximize the ease of integration with real-world code and systems • make it easy to support fragmentation, defragmentation, and, concatenation which are important, especially in wireless systems. • make memory management of this object efficient • allow actual application data or dummy application bytes for emulated applications • Each network packet contains a byte buffer, a set of byte tags, a set of packet tags, and metadata.

  44. Packet class organization each Packet has a reference to a Buffer holding packed packet data class Packet provides the user API Packet Tags contain simulation-specific information such as cross-layer messages, or simulation flow IDs optional PacketMetadata provides metadata about the contents of the buffer to enable (e.g.) pretty-printing

  45. Copy-on-write semantics • Packets implement copy-on-write semantics to reduce the number of deep data buffer copies during a simulation • Packets are reference-counted objects; multiple clients can hold references to the same packet, and the packet is automatically freed when all references are deleted • When more than one reference to a packet buffer exists, the packet buffer can be shared unless a so-called "dirty"operation (such as editing a protocol header) is performed by one of the packet users

  46. 2.6: Object Aggregation in ns-3

  47. ns-3 object aggregation Problem: coupling between models hinders software reuse in different configurations • must intrusively edit the base class for this • or, leads to C++ downcasting, e.g.: // Channels use Node pointers, but here I really want a // MobileNode pointer, to access the MobileNode API double WirelessChannel::get_pdelay(Node* tnode, Node* rnode) { // Scheduler &s = Scheduler::instance(); MobileNode* tmnode = (MobileNode*)tnode; MobileNode* rmnode = (MobileNode*)rnode; • known as the C++ “weak base class” problem

  48. ns-3 object aggregation (cont.) ns-3 solution: an object aggregation model • objects can be aggregated to other objects at run-time • a “query interface” is provided to ask whether an particular object is aggregated • similar in spirit to COM or Bonobo objects // aggregate an optional mobility object to a node: node->AggregateObject (mobility); ... // later, other users of node can query for the optional object: senderMobility = i->first->GetNode ()->GetObject<MobilityModel> (); // we did not have to edit class Node (base class), or downcast!

  49. 2.7: Events in ns-3

  50. Events in discrete-event simulation • Simulation time moves discretely from event to event • C++ functions schedule events to occur at specific simulation times • A simulation scheduler orders the event execution • Simulation::Run() gets it all started • Simulation stops at specific time or when events end

More Related