| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] | 
The CSMA net devices and channels are typically created and configured using
the associated CsmaHelper object.  The various ns3 device helpers 
generally work in a similar way, and their use is seen in many of our example
programs.
The conceptual model of interest is that of a bare computer “husk” into which 
you plug net devices.  The bare computers are created using a NodeContainer
helper.  You just ask this helper to create as many computers (we call them
Nodes) as you need on your network:
NodeContainer csmaNodes; csmaNodes.Create (nCsmaNodes);
Once you have your nodes, you need to instantiate a CsmaHelper and set
any attributes you may want to change.
  CsmaHelper csma;
  csma.SetChannelAttribute ("DataRate", StringValue ("100Mbps"));
  csma.SetChannelAttribute ("Delay", TimeValue (NanoSeconds (6560)));
  csma.SetDeviceAttribute ("EncapsulationMode", StringValue ("Dix"));
  csma.SetDeviceAttribute ("FrameSize", UintegerValue (2000));
 
Once the attributes are set, all that remains is to create the devices and install them on the required nodes, and to connect the devices together using a CSMA channel. When we create the net devices, we add them to a container to allow you to use them in the future. This all takes just one line of code.
NetDeviceContainer csmaDevices = csma.Install (csmaNodes);
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | 
 
  This document was generated on April 21, 2010 using texi2html 1.82.