blob: 1a2ae454009b1c8383c4210d912698c3b51a5b25 [file] [log] [blame]
Alexander Afanasyevf04d4512012-02-14 18:42:47 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2012 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
19 */
20
21#include "ns3/core-module.h"
22#include "ns3/network-module.h"
23#include "ns3/point-to-point-module.h"
24#include "ns3/NDNabstraction-module.h"
25
26using namespace ns3;
27
28/**
29 * This scenario simulates a very simple network topology:
30 *
31 *
32 * +----------+ 1Mbps +--------+ 1Mbps +----------+
33 * | consumer | <------------> | router | <------------> | producer |
34 * +----------+ 10ms +--------+ 10ms +----------+
35 *
36 *
37 * Consumer requests data from producer with frequency 10 interests per second
38 * (interests contain constantly increasing sequence number).
39 *
40 * For every received interest, producer replies with a data packet, containing
41 * 1024 bytes of virtual payload.
42 *
43 * Simulation time is 20 seconds, unless --finish parameter is specified
44 *
45 * To run scenario and see what is happening, use the following command:
46 *
47 * NS_LOG=CcnxSimple:CcnxConsumer ./waf --run=ccnx-simple
48 */
49
50NS_LOG_COMPONENT_DEFINE ("CcnxSimple");
51
52int
53main (int argc, char *argv[])
54{
55 Config::SetDefault ("ns3::PointToPointNetDevice::DataRate", StringValue ("1Mbps"));
56 Config::SetDefault ("ns3::PointToPointChannel::Delay", StringValue ("10ms"));
57 Config::SetDefault ("ns3::DropTailQueue::MaxPackets", StringValue ("20"));
58
59 Time finishTime = Seconds (20.0);
60
61 CommandLine cmd;
62 cmd.AddValue ("finish", "Finish time", finishTime);
63 cmd.Parse (argc, argv);
64
65 // Creating nodes
66 NodeContainer nodes;
67 nodes.Create (3);
68
69 // Connecting nodes using two links
70 PointToPointHelper p2p;
71 p2p.Install (nodes.Get (0), nodes.Get (1));
72 p2p.Install (nodes.Get (1), nodes.Get (2));
73
74 // Install CCNx stack on all nodes
75 NS_LOG_INFO ("Installing CCNx stack");
76 CcnxStackHelper ccnxHelper;
77 ccnxHelper.SetDefaultRoutes (true);
78 ccnxHelper.InstallAll ();
79
80 NS_LOG_INFO ("Installing CCNx applications");
81 CcnxAppHelper consumerHelper ("ns3::CcnxConsumerCbr");
82 // Consumer will request /prefix/0, /prefix/1, ...
83 consumerHelper.SetPrefix ("/prefix");
84 consumerHelper.SetAttribute ("Frequency", StringValue ("10")); // 10 interests a second
85 ApplicationContainer consumers = consumerHelper.Install (nodes.Get (0)); // first node
86
87 CcnxAppHelper producerHelper ("ns3::CcnxProducer");
88 // Producer will reply to all requests starting with /prefix
89 producerHelper.SetPrefix ("/prefix");
90 producerHelper.SetAttribute ("PayloadSize", StringValue("1024"));
91 ApplicationContainer producers = producerHelper.Install (nodes.Get (2)); // last node
92
93 Simulator::Stop (finishTime);
94
95 NS_LOG_INFO ("Run Simulation.");
96 Simulator::Run ();
97 Simulator::Destroy ();
98 NS_LOG_INFO ("Done!");
99
100 return 0;
101}