Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2013 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 | */ |
Spyridon Mastorakis | db8280f | 2014-11-21 20:00:17 -0800 | [diff] [blame] | 20 | |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 21 | // ndn-csma.cc |
Spyridon Mastorakis | db8280f | 2014-11-21 20:00:17 -0800 | [diff] [blame] | 22 | |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 23 | #include "ns3/core-module.h" |
| 24 | #include "ns3/network-module.h" |
| 25 | #include "ns3/csma-module.h" |
| 26 | #include "ns3/ndnSIM-module.h" |
| 27 | |
Spyridon Mastorakis | db8280f | 2014-11-21 20:00:17 -0800 | [diff] [blame] | 28 | namespace ns3 { |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 29 | |
| 30 | /** |
| 31 | * This scenario simulates a very simple network topology: |
| 32 | * |
| 33 | * CSMA bus (1Mbps, 10ms) |
| 34 | * +--------------------------+--------------------------+ |
| 35 | * | | | |
| 36 | * |
| 37 | * +----------+ +--------+ +----------+ |
| 38 | * | consumer | | router | | producer | |
| 39 | * +----------+ +--------+ +----------+ |
| 40 | * |
| 41 | * |
| 42 | * Consumer requests data from producer with frequency 10 interests per second |
| 43 | * (interests contain constantly increasing sequence number). |
| 44 | * |
| 45 | * For every received interest, producer replies with a data packet, containing |
| 46 | * 1024 bytes of virtual payload. |
| 47 | * |
| 48 | * To run scenario and see what is happening, use the following command: |
| 49 | * |
| 50 | * NS_LOG=ndn.Consumer:ndn.Producer ./waf --run=ndn-csma |
| 51 | */ |
| 52 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 53 | int |
| 54 | main(int argc, char* argv[]) |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 55 | { |
| 56 | // setting default parameters for PointToPoint links and channels |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 57 | Config::SetDefault("ns3::CsmaChannel::DataRate", StringValue("1Mbps")); |
| 58 | Config::SetDefault("ns3::CsmaChannel::Delay", StringValue("10ms")); |
| 59 | Config::SetDefault("ns3::DropTailQueue::MaxPackets", StringValue("20")); |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 60 | |
| 61 | // Read optional command-line parameters (e.g., enable visualizer with ./waf --run=<> --visualize |
| 62 | CommandLine cmd; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 63 | cmd.Parse(argc, argv); |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 64 | |
| 65 | // Creating nodes |
| 66 | NodeContainer nodes; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 67 | nodes.Create(3); |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 68 | |
| 69 | // Connecting nodes using two links |
| 70 | CsmaHelper csma; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 71 | csma.Install(nodes); |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 72 | |
| 73 | // Install NDN stack on all nodes |
| 74 | ndn::StackHelper ndnHelper; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 75 | ndnHelper.SetDefaultRoutes(true); |
| 76 | ndnHelper.InstallAll(); |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 77 | |
| 78 | // Installing applications |
| 79 | |
| 80 | // Consumer |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 81 | ndn::AppHelper consumerHelper("ns3::ndn::ConsumerCbr"); |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 82 | // Consumer will request /prefix/0, /prefix/1, ... |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 83 | consumerHelper.SetPrefix("/prefix"); |
| 84 | consumerHelper.SetAttribute("Frequency", StringValue("10")); // 10 interests a second |
| 85 | consumerHelper.Install(nodes.Get(0)); // first node |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 86 | |
| 87 | // Producer |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 88 | ndn::AppHelper producerHelper("ns3::ndn::Producer"); |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 89 | // Producer will reply to all requests starting with /prefix |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 90 | producerHelper.SetPrefix("/prefix"); |
| 91 | producerHelper.SetAttribute("PayloadSize", StringValue("1024")); |
| 92 | producerHelper.Install(nodes.Get(2)); // last node |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 93 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 94 | Simulator::Stop(Seconds(20.0)); |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 95 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 96 | Simulator::Run(); |
| 97 | Simulator::Destroy(); |
Alexander Afanasyev | fff8498 | 2013-05-30 09:19:46 -0700 | [diff] [blame] | 98 | |
| 99 | return 0; |
| 100 | } |
Spyridon Mastorakis | db8280f | 2014-11-21 20:00:17 -0800 | [diff] [blame] | 101 | |
| 102 | } // namespace ns3 |
| 103 | |
| 104 | int |
| 105 | main(int argc, char* argv[]) |
| 106 | { |
| 107 | return ns3::main(argc, argv); |
| 108 | } |