A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
realtime-dummy-network.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2012 University of Washington, 2012 INRIA
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 */
18
19// Network topology
20//
21#include "ns3/core-module.h"
22#include "ns3/fd-net-device-module.h"
23#include "ns3/internet-apps-module.h"
24#include "ns3/internet-module.h"
25#include "ns3/network-module.h"
26
27#include <errno.h>
28#include <sys/socket.h>
29
30using namespace ns3;
31
32NS_LOG_COMPONENT_DEFINE("RealtimeDummyNetworkExample");
33
34int
35main(int argc, char* argv[])
36{
37 CommandLine cmd(__FILE__);
38 cmd.Parse(argc, argv);
39
40 GlobalValue::Bind("SimulatorImplementationType", StringValue("ns3::RealtimeSimulatorImpl"));
41 GlobalValue::Bind("ChecksumEnabled", BooleanValue(true));
42
44 nodes.Create(2);
45
47 stack.Install(nodes);
48
51
52 int sv[2];
53 if (socketpair(AF_UNIX, SOCK_DGRAM, 0, sv) < 0)
54 {
55 NS_FATAL_ERROR("Error creating pipe=" << strerror(errno));
56 }
57
58 Ptr<NetDevice> d1 = devices.Get(0);
59 Ptr<FdNetDevice> device1 = d1->GetObject<FdNetDevice>();
60 device1->SetFileDescriptor(sv[0]);
61
62 Ptr<NetDevice> d2 = devices.Get(1);
63 Ptr<FdNetDevice> device2 = d2->GetObject<FdNetDevice>();
64 device2->SetFileDescriptor(sv[1]);
65
66 Ipv4AddressHelper addresses;
67 addresses.SetBase("10.0.0.0", "255.255.255.0");
68 Ipv4InterfaceContainer interfaces = addresses.Assign(devices);
69
70 Ptr<Ping> app = CreateObject<Ping>();
71 app->SetAttribute("Destination", AddressValue(interfaces.GetAddress(0)));
72 app->SetAttribute("VerboseMode", EnumValue(Ping::VerboseMode::VERBOSE));
73 nodes.Get(1)->AddApplication(app);
74 app->SetStartTime(Seconds(0.0));
75 app->SetStopTime(Seconds(4.0));
76
77 fd.EnablePcapAll("realtime-dummy-network", false);
78
82
83 return 0;
84}
AttributeValue implementation for Address.
Definition: address.h:286
AttributeValue implementation for Boolean.
Definition: boolean.h:37
Parse command-line arguments.
Definition: command-line.h:232
Hold variables of type enum.
Definition: enum.h:62
build a set of FdNetDevice objects Normally we eschew multiple inheritance, however,...
virtual NetDeviceContainer Install(Ptr< Node > node) const
This method creates a FdNetDevice and associates it to a node.
a NetDevice to read/write network traffic from/into a file descriptor.
Definition: fd-net-device.h:84
static void Bind(std::string name, const AttributeValue &value)
Iterate over the set of GlobalValues until a matching name is found and then set its value with Globa...
aggregate IP/TCP/UDP functionality to existing Nodes.
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address.
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
holds a vector of std::pair of Ptr<Ipv4> and interface index.
holds a vector of ns3::NetDevice pointers
keep track of a set of node pointers.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index.
uint32_t AddApplication(Ptr< Application > application)
Associate an Application to this Node.
Definition: node.cc:164
void EnablePcapAll(std::string prefix, bool promiscuous=false)
Enable pcap output on each device (which is of the appropriate type) in the set of all nodes created ...
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:77
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
Definition: simulator.cc:142
static void Run()
Run the simulation.
Definition: simulator.cc:178
static void Stop()
Tell the Simulator the calling event should be the last one executed.
Definition: simulator.cc:186
Hold variables of type string.
Definition: string.h:56
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
Definition: fatal-error.h:179
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:202
Time Seconds(double value)
Construct a Time in the indicated unit.
Definition: nstime.h:1319
NodeContainer nodes
ns devices
Definition: first.py:42
ns interfaces
Definition: first.py:50
ns stack
Definition: first.py:44
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns cmd
Definition: second.py:40