blob: da41a41edbd05158c333836e5e23f0c5de17d841 [file] [log] [blame]
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2011-2015 Regents of the University of California.
Alexander Afanasyevfff84982013-05-30 09:19:46 -07004 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08005 * This file is part of ndnSIM. See AUTHORS for complete list of ndnSIM authors and
6 * contributors.
Alexander Afanasyevfff84982013-05-30 09:19:46 -07007 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08008 * ndnSIM is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
Alexander Afanasyevfff84982013-05-30 09:19:46 -070011 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080012 * ndnSIM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
Alexander Afanasyevfff84982013-05-30 09:19:46 -070015 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080016 * You should have received a copy of the GNU General Public License along with
17 * ndnSIM, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 **/
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -080019
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080020// ndn-csma.cpp
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -080021
Alexander Afanasyevfff84982013-05-30 09:19:46 -070022#include "ns3/core-module.h"
23#include "ns3/network-module.h"
24#include "ns3/csma-module.h"
25#include "ns3/ndnSIM-module.h"
26
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -080027namespace ns3 {
Alexander Afanasyevfff84982013-05-30 09:19:46 -070028
29/**
30 * This scenario simulates a very simple network topology:
31 *
32 * CSMA bus (1Mbps, 10ms)
33 * +--------------------------+--------------------------+
34 * | | |
35 *
36 * +----------+ +--------+ +----------+
37 * | consumer | | router | | producer |
38 * +----------+ +--------+ +----------+
39 *
40 *
41 * Consumer requests data from producer with frequency 10 interests per second
42 * (interests contain constantly increasing sequence number).
43 *
44 * For every received interest, producer replies with a data packet, containing
45 * 1024 bytes of virtual payload.
46 *
47 * To run scenario and see what is happening, use the following command:
48 *
49 * NS_LOG=ndn.Consumer:ndn.Producer ./waf --run=ndn-csma
50 */
51
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080052int
53main(int argc, char* argv[])
Alexander Afanasyevfff84982013-05-30 09:19:46 -070054{
55 // setting default parameters for PointToPoint links and channels
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080056 Config::SetDefault("ns3::CsmaChannel::DataRate", StringValue("1Mbps"));
57 Config::SetDefault("ns3::CsmaChannel::Delay", StringValue("10ms"));
58 Config::SetDefault("ns3::DropTailQueue::MaxPackets", StringValue("20"));
Alexander Afanasyevfff84982013-05-30 09:19:46 -070059
60 // Read optional command-line parameters (e.g., enable visualizer with ./waf --run=<> --visualize
61 CommandLine cmd;
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080062 cmd.Parse(argc, argv);
Alexander Afanasyevfff84982013-05-30 09:19:46 -070063
64 // Creating nodes
65 NodeContainer nodes;
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080066 nodes.Create(3);
Alexander Afanasyevfff84982013-05-30 09:19:46 -070067
68 // Connecting nodes using two links
69 CsmaHelper csma;
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080070 csma.Install(nodes);
Alexander Afanasyevfff84982013-05-30 09:19:46 -070071
72 // Install NDN stack on all nodes
73 ndn::StackHelper ndnHelper;
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080074 ndnHelper.SetDefaultRoutes(true);
75 ndnHelper.InstallAll();
Alexander Afanasyevfff84982013-05-30 09:19:46 -070076
77 // Installing applications
78
79 // Consumer
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080080 ndn::AppHelper consumerHelper("ns3::ndn::ConsumerCbr");
Alexander Afanasyevfff84982013-05-30 09:19:46 -070081 // Consumer will request /prefix/0, /prefix/1, ...
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080082 consumerHelper.SetPrefix("/prefix");
83 consumerHelper.SetAttribute("Frequency", StringValue("10")); // 10 interests a second
84 consumerHelper.Install(nodes.Get(0)); // first node
Alexander Afanasyevfff84982013-05-30 09:19:46 -070085
86 // Producer
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080087 ndn::AppHelper producerHelper("ns3::ndn::Producer");
Alexander Afanasyevfff84982013-05-30 09:19:46 -070088 // Producer will reply to all requests starting with /prefix
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080089 producerHelper.SetPrefix("/prefix");
90 producerHelper.SetAttribute("PayloadSize", StringValue("1024"));
91 producerHelper.Install(nodes.Get(2)); // last node
Alexander Afanasyevfff84982013-05-30 09:19:46 -070092
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080093 Simulator::Stop(Seconds(20.0));
Alexander Afanasyevfff84982013-05-30 09:19:46 -070094
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080095 Simulator::Run();
96 Simulator::Destroy();
Alexander Afanasyevfff84982013-05-30 09:19:46 -070097
98 return 0;
99}
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -0800100
101} // namespace ns3
102
103int
104main(int argc, char* argv[])
105{
106 return ns3::main(argc, argv);
107}