Alexander Afanasyev | 1ab1aad | 2013-02-28 11:32:21 -0800 | [diff] [blame] | 1 | /* -*- 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 | // ndn-simple-with-pcap.cc |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 21 | #include "ns3/core-module.h" |
| 22 | #include "ns3/network-module.h" |
| 23 | #include "ns3/point-to-point-module.h" |
| 24 | #include "ns3/ndnSIM-module.h" |
| 25 | |
| 26 | using namespace ns3; |
| 27 | |
| 28 | class PcapWriter |
| 29 | { |
| 30 | public: |
| 31 | PcapWriter (const std::string &file) |
| 32 | { |
| 33 | PcapHelper helper; |
| 34 | m_pcap = helper.CreateFile (file, std::ios::out, PcapHelper::DLT_PPP); |
| 35 | } |
Alexander Afanasyev | 1ab1aad | 2013-02-28 11:32:21 -0800 | [diff] [blame] | 36 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 37 | void |
| 38 | TracePacket (Ptr<const Packet> packet) |
| 39 | { |
| 40 | static PppHeader pppHeader; |
| 41 | pppHeader.SetProtocol (0x0077); |
Alexander Afanasyev | 1ab1aad | 2013-02-28 11:32:21 -0800 | [diff] [blame] | 42 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 43 | m_pcap->Write (Simulator::Now (), pppHeader, packet); |
| 44 | } |
| 45 | |
| 46 | private: |
| 47 | Ptr<PcapFileWrapper> m_pcap; |
| 48 | }; |
| 49 | |
| 50 | |
| 51 | int |
| 52 | main (int argc, char *argv[]) |
| 53 | { |
| 54 | // setting default parameters for PointToPoint links and channels |
| 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 | |
Alexander Afanasyev | 7b923f3 | 2013-07-16 13:23:04 -0700 | [diff] [blame] | 59 | Config::SetGlobal ("ndn::WireFormat", StringValue ("1")); |
Alexander Afanasyev | 2420762 | 2013-07-15 18:27:56 -0700 | [diff] [blame] | 60 | |
Alexander Afanasyev | 39314e0 | 2013-08-13 10:10:45 -0700 | [diff] [blame] | 61 | // Read optional command-line parameters (e.g., enable visualizer with ./waf --run=<> --visualize |
| 62 | CommandLine cmd; |
| 63 | cmd.Parse (argc, argv); |
| 64 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 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 | |
Alexander Afanasyev | cf6dc92 | 2012-08-10 16:55:27 -0700 | [diff] [blame] | 74 | // Install NDN stack on all nodes |
| 75 | ndn::StackHelper ndnHelper; |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 76 | ndnHelper.SetDefaultRoutes (true); |
| 77 | ndnHelper.InstallAll (); |
| 78 | |
| 79 | // Installing applications |
| 80 | |
| 81 | // Consumer |
Alexander Afanasyev | cf6dc92 | 2012-08-10 16:55:27 -0700 | [diff] [blame] | 82 | ndn::AppHelper consumerHelper ("ns3::ndn::ConsumerCbr"); |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 83 | // Consumer will request /prefix/0, /prefix/1, ... |
| 84 | consumerHelper.SetPrefix ("/prefix"); |
| 85 | consumerHelper.SetAttribute ("Frequency", StringValue ("10")); // 10 interests a second |
| 86 | consumerHelper.Install (nodes.Get (0)); // first node |
| 87 | |
| 88 | // Producer |
Alexander Afanasyev | cf6dc92 | 2012-08-10 16:55:27 -0700 | [diff] [blame] | 89 | ndn::AppHelper producerHelper ("ns3::ndn::Producer"); |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 90 | // Producer will reply to all requests starting with /prefix |
| 91 | producerHelper.SetPrefix ("/prefix"); |
| 92 | producerHelper.SetAttribute ("PayloadSize", StringValue("1024")); |
Alexander Afanasyev | e722148 | 2013-07-15 18:24:37 -0700 | [diff] [blame] | 93 | producerHelper.SetAttribute ("Signature", UintegerValue (100)); |
| 94 | producerHelper.SetAttribute ("KeyLocator", StringValue ("/unique/key/locator")); |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 95 | producerHelper.Install (nodes.Get (2)); // last node |
| 96 | |
| 97 | PcapWriter trace ("ndn-simple-trace.pcap"); |
Alexander Afanasyev | e722148 | 2013-07-15 18:24:37 -0700 | [diff] [blame] | 98 | Config::ConnectWithoutContext ("/NodeList/*/DeviceList/*/$ns3::PointToPointNetDevice/MacTx", |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 99 | MakeCallback (&PcapWriter::TracePacket, &trace)); |
Alexander Afanasyev | 1ab1aad | 2013-02-28 11:32:21 -0800 | [diff] [blame] | 100 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 101 | Simulator::Stop (Seconds (20.0)); |
| 102 | |
| 103 | Simulator::Run (); |
| 104 | Simulator::Destroy (); |
| 105 | |
| 106 | return 0; |
| 107 | } |
| 108 | |