A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
simple-error-model.cc
Go to the documentation of this file.
1/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License version 2 as
4 * published by the Free Software Foundation;
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
14 *
15 */
16
17// Network topology
18//
19// n0
20// \ 5 Mb/s, 2ms
21// \ 1.5Mb/s, 10ms
22// n2 -------------------------n3
23// /
24// / 5 Mb/s, 2ms
25// n1
26//
27// - all links are point-to-point links with indicated one-way BW/delay
28// - CBR/UDP flows from n0 to n3, and from n3 to n1
29// - FTP/TCP flow from n0 to n3, starting at time 1.2 to time 1.35 sec.
30// - UDP packet size of 210 bytes, with per-packet interval 0.00375 sec.
31// (i.e., DataRate of 448,000 bps)
32// - DropTail queues
33// - Tracing of queues and packet receptions to file
34// "simple-error-model.tr"
35
36#include "ns3/applications-module.h"
37#include "ns3/core-module.h"
38#include "ns3/internet-module.h"
39#include "ns3/ipv4-global-routing-helper.h"
40#include "ns3/network-module.h"
41#include "ns3/point-to-point-module.h"
42
43#include <fstream>
44
45using namespace ns3;
46
47NS_LOG_COMPONENT_DEFINE("SimpleErrorModelExample");
48
49int
50main(int argc, char* argv[])
51{
52 // Users may find it convenient to turn on explicit debugging
53 // for selected modules; the below lines suggest how to do this
54#if 0
55 LogComponentEnable ("SimplePointToPointExample", LOG_LEVEL_INFO);
56#endif
57
58 // Set a few attributes
59 Config::SetDefault("ns3::RateErrorModel::ErrorRate", DoubleValue(0.001));
60 Config::SetDefault("ns3::RateErrorModel::ErrorUnit", StringValue("ERROR_UNIT_PACKET"));
61
62 Config::SetDefault("ns3::BurstErrorModel::ErrorRate", DoubleValue(0.01));
63 Config::SetDefault("ns3::BurstErrorModel::BurstSize",
64 StringValue("ns3::UniformRandomVariable[Min=1|Max=3]"));
65
66 Config::SetDefault("ns3::OnOffApplication::PacketSize", UintegerValue(210));
67 Config::SetDefault("ns3::OnOffApplication::DataRate", DataRateValue(DataRate("448kb/s")));
68
69 std::string errorModelType = "ns3::RateErrorModel";
70
71 // Allow the user to override any of the defaults and the above
72 // Bind()s at run-time, via command-line arguments
73 CommandLine cmd(__FILE__);
74 cmd.AddValue("errorModelType", "TypeId of the error model to use", errorModelType);
75 cmd.Parse(argc, argv);
76
77 // Here, we will explicitly create four nodes. In more sophisticated
78 // topologies, we could configure a node factory.
79 NS_LOG_INFO("Create nodes.");
81 c.Create(4);
84 NodeContainer n3n2 = NodeContainer(c.Get(3), c.Get(2));
85
87 internet.Install(c);
88
89 // We create the channels first without any IP addressing information
90 NS_LOG_INFO("Create channels.");
92 p2p.SetDeviceAttribute("DataRate", DataRateValue(DataRate(5000000)));
93 p2p.SetChannelAttribute("Delay", TimeValue(MilliSeconds(2)));
94 NetDeviceContainer d0d2 = p2p.Install(n0n2);
95
96 NetDeviceContainer d1d2 = p2p.Install(n1n2);
97
98 p2p.SetDeviceAttribute("DataRate", DataRateValue(DataRate(1500000)));
99 p2p.SetChannelAttribute("Delay", TimeValue(MilliSeconds(10)));
100 NetDeviceContainer d3d2 = p2p.Install(n3n2);
101
102 // Later, we add IP addresses.
103 NS_LOG_INFO("Assign IP Addresses.");
105 ipv4.SetBase("10.1.1.0", "255.255.255.0");
106 ipv4.Assign(d0d2);
107
108 ipv4.SetBase("10.1.2.0", "255.255.255.0");
109 Ipv4InterfaceContainer i1i2 = ipv4.Assign(d1d2);
110
111 ipv4.SetBase("10.1.3.0", "255.255.255.0");
112 Ipv4InterfaceContainer i3i2 = ipv4.Assign(d3d2);
113
114 NS_LOG_INFO("Use global routing.");
116
117 // Create the OnOff application to send UDP datagrams of size
118 // 210 bytes at a rate of 448 Kb/s
119 NS_LOG_INFO("Create Applications.");
120 uint16_t port = 9; // Discard port (RFC 863)
121
122 OnOffHelper onoff("ns3::UdpSocketFactory",
124 onoff.SetConstantRate(DataRate("448kb/s"));
125 ApplicationContainer apps = onoff.Install(c.Get(0));
126 apps.Start(Seconds(1.0));
127 apps.Stop(Seconds(10.0));
128
129 // Create an optional packet sink to receive these packets
130 PacketSinkHelper sink("ns3::UdpSocketFactory",
132 apps = sink.Install(c.Get(2));
133 apps.Start(Seconds(1.0));
134 apps.Stop(Seconds(10.0));
135
136 // Create a similar flow from n3 to n1, starting at time 1.1 seconds
137 onoff.SetAttribute("Remote", AddressValue(InetSocketAddress(i1i2.GetAddress(0), port)));
138 apps = onoff.Install(c.Get(3));
139 apps.Start(Seconds(1.1));
140 apps.Stop(Seconds(10.0));
141
142 // Create a packet sink to receive these packets
143 sink.SetAttribute("Local", AddressValue(InetSocketAddress(Ipv4Address::GetAny(), port)));
144 apps = sink.Install(c.Get(1));
145 apps.Start(Seconds(1.1));
146 apps.Stop(Seconds(10.0));
147
148 //
149 // Error model
150 //
151 // Create an ErrorModel based on the implementation (constructor)
152 // specified by the default TypeId
153
154 ObjectFactory factory;
155 factory.SetTypeId(errorModelType);
156 Ptr<ErrorModel> em = factory.Create<ErrorModel>();
157 d3d2.Get(0)->SetAttribute("ReceiveErrorModel", PointerValue(em));
158
159 // Now, let's use the ListErrorModel and explicitly force a loss
160 // of the packets with pkt-uids = 11 and 17 on node 2, device 0
161 std::list<uint64_t> sampleList;
162 sampleList.push_back(11);
163 sampleList.push_back(17);
164 // This time, we'll explicitly create the error model we want
165 Ptr<ListErrorModel> pem = CreateObject<ListErrorModel>();
166 pem->SetList(sampleList);
167 d0d2.Get(1)->SetAttribute("ReceiveErrorModel", PointerValue(pem));
168
169 AsciiTraceHelper ascii;
170 p2p.EnableAsciiAll(ascii.CreateFileStream("simple-error-model.tr"));
171 p2p.EnablePcapAll("simple-error-model");
172
173 NS_LOG_INFO("Run Simulation.");
176 NS_LOG_INFO("Done.");
177
178 return 0;
179}
NodeContainer n1n2
Nodecontainer n1 + n2.
Ipv4InterfaceContainer i1i2
IPv4 interface container i1 + i2.
NodeContainer n0n2
Nodecontainer n0 + n2.
a polymophic address class
Definition: address.h:101
AttributeValue implementation for Address.
Definition: address.h:286
holds a vector of ns3::Application pointers.
void Start(Time start) const
Start all of the Applications in this container at the start time given as a parameter.
void Stop(Time stop) const
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter.
Manage ASCII trace files for device models.
Definition: trace-helper.h:174
Ptr< OutputStreamWrapper > CreateFileStream(std::string filename, std::ios::openmode filemode=std::ios::out)
Create and initialize an output stream object we'll use to write the traced bits.
Parse command-line arguments.
Definition: command-line.h:232
Class for representing data rates.
Definition: data-rate.h:89
AttributeValue implementation for DataRate.
Definition: data-rate.h:296
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Definition: double.h:42
General error model that can be used to corrupt packets.
Definition: error-model.h:117
an Inet address class
aggregate IP/TCP/UDP functionality to existing Nodes.
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
static Ipv4Address GetAny()
static void PopulateRoutingTables()
Build a routing database and initialize the routing tables of the nodes in the simulation.
holds a vector of std::pair of Ptr<Ipv4> and interface index.
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const
holds a vector of ns3::NetDevice pointers
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
keep track of a set of node pointers.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index.
Instantiate subclasses of ns3::Object.
Ptr< Object > Create() const
Create an Object instance of the configured TypeId.
void SetTypeId(TypeId tid)
Set the TypeId of the Objects to be created by this factory.
A helper to make it easier to instantiate an ns3::OnOffApplication on a set of nodes.
Definition: on-off-helper.h:37
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes.
Build a set of PointToPointNetDevice objects.
AttributeValue implementation for Pointer.
Definition: pointer.h:48
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:77
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
Definition: simulator.cc:142
static void Run()
Run the simulation.
Definition: simulator.cc:178
Hold variables of type string.
Definition: string.h:56
AttributeValue implementation for Time.
Definition: nstime.h:1406
Hold an unsigned integer type.
Definition: uinteger.h:45
uint16_t port
Definition: dsdv-manet.cc:44
void SetDefault(std::string name, const AttributeValue &value)
Definition: config.cc:894
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:202
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Definition: log.h:275
Time Seconds(double value)
Construct a Time in the indicated unit.
Definition: nstime.h:1319
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
Definition: nstime.h:1331
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void LogComponentEnable(const std::string &name, LogLevel level)
Enable the logging output associated with that log component.
Definition: log.cc:302
@ LOG_LEVEL_INFO
LOG_INFO and above.
Definition: log.h:104
ns cmd
Definition: second.py:40
Ptr< PacketSink > sink
Pointer to the packet sink application.
Definition: wifi-tcp.cc:55