A Discrete-Event Network Simulator
API
radvd-one-prefix.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2009 Strasbourg University
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation;
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16  *
17  * Author: David Gross <gdavid.devel@gmail.com>
18  * Sebastien Vincent <vincent@clarinet.u-strasbg.fr>
19  */
20 
21 // Network topology
22 // //
23 // // n0 R n1
24 // // | _ |
25 // // ====|_|====
26 // // router
27 // // - R sends RA to n0's subnet (2001:1::/64);
28 // // - R sends RA to n1's subnet (2001:2::/64);
29 // // - n0 ping n1.
30 // //
31 // // - Tracing of queues and packet receptions to file "radvd.tr"
32 
33 #include "ns3/core-module.h"
34 #include "ns3/csma-module.h"
35 #include "ns3/internet-apps-module.h"
36 #include "ns3/internet-module.h"
37 #include "ns3/radvd-interface.h"
38 #include "ns3/radvd-prefix.h"
39 #include "ns3/radvd.h"
40 
41 #include <fstream>
42 
43 using namespace ns3;
44 
45 NS_LOG_COMPONENT_DEFINE("RadvdExample");
46 
47 int
48 main(int argc, char** argv)
49 {
50  bool verbose = false;
51 
52  CommandLine cmd(__FILE__);
53  cmd.AddValue("verbose", "turn on log components", verbose);
54  cmd.Parse(argc, argv);
55 
56  if (verbose)
57  {
58  LogComponentEnable("Ipv6L3Protocol", LOG_LEVEL_ALL);
59  LogComponentEnable("Ipv6RawSocketImpl", LOG_LEVEL_ALL);
60  LogComponentEnable("Icmpv6L4Protocol", LOG_LEVEL_ALL);
61  LogComponentEnable("Ipv6StaticRouting", LOG_LEVEL_ALL);
62  LogComponentEnable("Ipv6Interface", LOG_LEVEL_ALL);
63  LogComponentEnable("RadvdApplication", LOG_LEVEL_ALL);
65  }
66 
67  NS_LOG_INFO("Create nodes.");
68  Ptr<Node> n0 = CreateObject<Node>();
69  Ptr<Node> r = CreateObject<Node>();
70  Ptr<Node> n1 = CreateObject<Node>();
71 
72  NodeContainer net1(n0, r);
73  NodeContainer net2(r, n1);
74  NodeContainer all(n0, r, n1);
75 
76  NS_LOG_INFO("Create IPv6 Internet Stack");
77  InternetStackHelper internetv6;
78  internetv6.Install(all);
79 
80  NS_LOG_INFO("Create channels.");
82  csma.SetChannelAttribute("DataRate", DataRateValue(5000000));
83  csma.SetChannelAttribute("Delay", TimeValue(MilliSeconds(2)));
84  NetDeviceContainer d1 = csma.Install(net1); /* n0 - R */
85  NetDeviceContainer d2 = csma.Install(net2); /* R - n1 */
86 
87  NS_LOG_INFO("Create networks and assign IPv6 Addresses.");
88  Ipv6AddressHelper ipv6;
89 
90  /* first subnet */
91  ipv6.SetBase(Ipv6Address("2001:1::"), Ipv6Prefix(64));
93  tmp.Add(d1.Get(0)); /* n0 */
94  Ipv6InterfaceContainer iic1 = ipv6.AssignWithoutAddress(tmp); /* n0 interface */
95 
96  NetDeviceContainer tmp2;
97  tmp2.Add(d1.Get(1)); /* R */
99  ipv6.Assign(tmp2); /* R interface to the first subnet is just statically assigned */
100  iicr1.SetForwarding(0, true);
101  iic1.Add(iicr1);
102 
103  /* second subnet R - n1 */
104  ipv6.SetBase(Ipv6Address("2001:2::"), Ipv6Prefix(64));
105  NetDeviceContainer tmp3;
106  tmp3.Add(d2.Get(0)); /* R */
107  Ipv6InterfaceContainer iicr2 = ipv6.Assign(tmp3); /* R interface */
108  iicr2.SetForwarding(0, true);
109 
110  NetDeviceContainer tmp4;
111  tmp4.Add(d2.Get(1)); /* n1 */
113  iic2.Add(iicr2);
114 
115  /* radvd configuration */
116  RadvdHelper radvdHelper;
117 
118  /* R interface (n0 - R) */
119  /* n0 will receive unsolicited (periodic) RA */
120  radvdHelper.AddAnnouncedPrefix(iic1.GetInterfaceIndex(1), Ipv6Address("2001:1::0"), 64);
121 
122  /* R interface (R - n1) */
123  /* n1 will have to use RS, as RA are not sent automatically */
124  radvdHelper.AddAnnouncedPrefix(iic2.GetInterfaceIndex(1), Ipv6Address("2001:2::0"), 64);
125  radvdHelper.GetRadvdInterface(iic2.GetInterfaceIndex(1))->SetSendAdvert(false);
126 
127  ApplicationContainer radvdApps = radvdHelper.Install(r);
128  radvdApps.Start(Seconds(1.0));
129  radvdApps.Stop(Seconds(10.0));
130 
131  /* Create a Ping application to send ICMPv6 echo request from n0 to n1 via R */
132  uint32_t packetSize = 1024;
133  uint32_t maxPacketCount = 5;
134  PingHelper ping(
135  Ipv6Address("2001:2::200:ff:fe00:4")); /* should be n1 address after autoconfiguration */
136 
137  ping.SetAttribute("Count", UintegerValue(maxPacketCount));
138  ping.SetAttribute("Size", UintegerValue(packetSize));
139  ApplicationContainer apps = ping.Install(net1.Get(0));
140  apps.Start(Seconds(2.0));
141  apps.Stop(Seconds(7.0));
142 
143  AsciiTraceHelper ascii;
144  csma.EnableAsciiAll(ascii.CreateFileStream("radvd.tr"));
145  csma.EnablePcapAll(std::string("radvd"), true);
146 
147  NS_LOG_INFO("Run Simulation.");
148  Simulator::Run();
150  NS_LOG_INFO("Done.");
151 
152  return 0;
153 }
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
build a set of CsmaNetDevice objects
Definition: csma-helper.h:48
aggregate IP/TCP/UDP functionality to existing Nodes.
void Install(std::string nodeName) const
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
Helper class to auto-assign global IPv6 unicast addresses.
Ipv6InterfaceContainer AssignWithoutAddress(const NetDeviceContainer &c)
Allocate an Ipv6InterfaceContainer but do not assign any IPv6 addresses.
void SetBase(Ipv6Address network, Ipv6Prefix prefix, Ipv6Address base=Ipv6Address("::1"))
Set the base network number, network prefix, and base interface ID.
Ipv6InterfaceContainer Assign(const NetDeviceContainer &c)
Allocate an Ipv6InterfaceContainer with auto-assigned addresses.
Describes an IPv6 address.
Definition: ipv6-address.h:49
Keep track of a set of IPv6 interfaces.
void SetForwarding(uint32_t i, bool state)
Set the state of the stack (act as a router or as an host) for the specified index.
uint32_t GetInterfaceIndex(uint32_t i) const
Get the interface index for the specified node index.
void Add(Ptr< Ipv6 > ipv6, uint32_t interface)
Add a couple IPv6/interface.
Describes an IPv6 prefix.
Definition: ipv6-address.h:455
holds a vector of ns3::NetDevice pointers
void Add(NetDeviceContainer other)
Append the contents of another NetDeviceContainer to the end of this container.
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.
Create a ping application and associate it to a node.
Definition: ping-helper.h:48
Radvd application helper.
Definition: radvd-helper.h:41
void AddAnnouncedPrefix(uint32_t interface, Ipv6Address prefix, uint32_t prefixLength)
Add a new prefix to be announced through an interface.
Definition: radvd-helper.cc:39
ApplicationContainer Install(Ptr< Node > node)
Install the application in a Node.
Ptr< RadvdInterface > GetRadvdInterface(uint32_t interface)
Get the low-level RadvdInterface specification for an interface.
Definition: radvd-helper.cc:97
void SetSendAdvert(bool sendAdvert)
Set send advert flag.
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
Definition: simulator.cc:142
static void Run()
Run the simulation.
Definition: simulator.cc:178
Hold an unsigned integer type.
Definition: uinteger.h:45
#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:1326
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
Definition: nstime.h:1338
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_ALL
Print everything.
Definition: log.h:116
csma
Definition: second.py:63
cmd
Definition: second.py:40
bool verbose
static const uint32_t packetSize
Packet size generated at the AP.