author | Mathieu Lacage <mathieu.lacage@sophia.inria.fr> |
Mon, 07 Apr 2008 10:41:21 -0700 | |
changeset 2888 | 872dc8466352 |
parent 2887 | 9a637e6daee0 |
child 2965 | 4b28e9740e3b |
child 2996 | a83b94e277d4 |
permissions | -rw-r--r-- |
1529 | 1 |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
2 |
/* |
|
3 |
* This program is free software; you can redistribute it and/or modify |
|
4 |
* it under the terms of the GNU General Public License version 2 as |
|
5 |
* published by the Free Software Foundation; |
|
6 |
* |
|
7 |
* This program is distributed in the hope that it will be useful, |
|
8 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
9 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
10 |
* GNU General Public License for more details. |
|
11 |
* |
|
12 |
* You should have received a copy of the GNU General Public License |
|
13 |
* along with this program; if not, write to the Free Software |
|
14 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
15 |
*/ |
|
16 |
||
2815
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
17 |
#include <fstream> |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
18 |
|
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
19 |
#include "ns3/core-module.h" |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
20 |
#include "ns3/simulator-module.h" |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
21 |
#include "ns3/helper-module.h" |
1529 | 22 |
|
23 |
NS_LOG_COMPONENT_DEFINE ("UdpEchoSimulation"); |
|
24 |
||
25 |
using namespace ns3; |
|
26 |
||
27 |
int |
|
28 |
main (int argc, char *argv[]) |
|
29 |
{ |
|
30 |
LogComponentEnable ("UdpEchoSimulation", LOG_LEVEL_INFO); |
|
31 |
||
32 |
NS_LOG_INFO ("UDP Echo Simulation"); |
|
33 |
||
2815
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
34 |
NodeContainer n; |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
35 |
n.Create (4); |
1529 | 36 |
|
2815
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
37 |
InternetStackHelper internet; |
2887
9a637e6daee0
Build -> Install
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2815
diff
changeset
|
38 |
internet.Install (n); |
1529 | 39 |
|
2815
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
40 |
CsmaHelper csma; |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
41 |
csma.SetChannelParameter ("BitRate", DataRate (5000000)); |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
42 |
csma.SetChannelParameter ("Delay", MilliSeconds (2)); |
2887
9a637e6daee0
Build -> Install
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2815
diff
changeset
|
43 |
NetDeviceContainer nd = csma.Install (n); |
1529 | 44 |
|
2815
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
45 |
Ipv4AddressHelper ipv4; |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
46 |
ipv4.SetBase ("10.1.1.0", "255.255.255.0"); |
2888
872dc8466352
Ipv4AddressHelper::Allocate -> Ipv4AddressHelper::Assign
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2887
diff
changeset
|
47 |
Ipv4InterfaceContainer i = ipv4.Assign (nd); |
1529 | 48 |
|
49 |
uint16_t port = 7; |
|
50 |
||
2815
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
51 |
UdpEchoClientHelper client; |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
52 |
client.SetRemote (i.GetAddress (1), port); |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
53 |
client.SetAppAttribute ("MaxPackets", Uinteger (1)); |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
54 |
client.SetAppAttribute ("Interval", Seconds (1.0)); |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
55 |
client.SetAppAttribute ("PacketSize", Uinteger (1024)); |
2887
9a637e6daee0
Build -> Install
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2815
diff
changeset
|
56 |
ApplicationContainer apps = client.Install (n.Get (0)); |
2815
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
57 |
apps.Start (Seconds (2.0)); |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
58 |
apps.Stop (Seconds (10.0)); |
1529 | 59 |
|
2815
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
60 |
UdpEchoServerHelper server; |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
61 |
server.SetPort (port); |
2887
9a637e6daee0
Build -> Install
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2815
diff
changeset
|
62 |
apps = server.Install (n.Get (1)); |
2815
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
63 |
apps.Start (Seconds (1.0)); |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
64 |
apps.Stop (Seconds (10.0)); |
1529 | 65 |
|
2815
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
66 |
std::ofstream os; |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
67 |
os.open ("tutorial.tr"); |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
68 |
CsmaHelper::EnableAscii (os); |
6d39cd4aef81
port to helper API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents:
2600
diff
changeset
|
69 |
|
1529 | 70 |
Simulator::Run (); |
71 |
Simulator::Destroy (); |
|
72 |
} |