blob: a5ee7a41f28c051b875368f07aa86caa3c2991c5 [file] [log] [blame]
Alexander Afanasyev5b433862011-10-31 15:25:07 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2011 UCLA
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
21#include "ns3/network-module.h"
22#include "ns3/core-module.h"
23#include "ns3/internet-module.h"
24#include "ns3/ipv4-global-routing-helper.h"
25#include "ns3/point-to-point-grid.h"
26#include "ns3/ipv4-global-routing-helper.h"
Alexander Afanasyevbeceb362011-11-02 16:54:12 -070027#include "ns3/applications-module.h"
Alexander Afanasyev5b433862011-10-31 15:25:07 -070028
29using namespace ns3;
30
31NS_LOG_COMPONENT_DEFINE ("SimpleRouting");
32
33// Parameters
34uint32_t nNodes = 2;
35uint32_t stopTime = 60;
36
37void TestDisable (Ptr<Node> node)
38{
39 NS_LOG_FUNCTION (node->GetId ());
40
41 Ptr<Ipv4> ipv4 = node->GetObject<Ipv4> ();
42 NS_ASSERT_MSG (ipv4 != 0, "ipv4 should not be null");
43
44 // The thing I didn't know is that interface status (isUp/isDown) and device status (isLinkUp) are two totally different things. It is possible to set interface up and down, but there is not an easy way to alter status of device. This similar to reality: it is possible to programmatically disable interface, but to actually disable a link one needs to physically cut the cable
45 ipv4->SetDown (2);
46}
47
48int main (int argc, char *argv[])
49{
50 CommandLine cmd;
51 cmd.AddValue ("nNodes", "Number of Router nodes", nNodes);
52 cmd.AddValue ("stopTime", "Time to stop(seconds)", stopTime);
53 cmd.Parse (argc, argv);
54
55 PointToPointHelper p2p;
56 InternetStackHelper stack;
57
58 Ipv4GlobalRoutingHelper ipv4RoutingHelper;
Alexander Afanasyev5b433862011-10-31 15:25:07 -070059 stack.SetRoutingHelper (ipv4RoutingHelper);
60
61 PointToPointGridHelper grid (nNodes, nNodes, p2p);
62 grid.InstallStack (stack);
Alexander Afanasyev5b433862011-10-31 15:25:07 -070063
64 grid.AssignIpv4Addresses (
65 Ipv4AddressHelper("10.1.0.0", "255.255.255.0"),
66 Ipv4AddressHelper("10.2.0.0", "255.255.255.0")
67 );
68
Alexander Afanasyevbeceb362011-11-02 16:54:12 -070069 // // Create router nodes, initialize routing database and set up the routing
70 // // tables in the nodes.
71 Ipv4GlobalRoutingHelper::PopulateRoutingTables ();
72
73 // testing ip routing
74 UdpEchoClientHelper client (Ipv4Address ("10.2.1.1"), 1029);
75 client.SetAttribute ("MaxPackets", UintegerValue (1));
76 client.SetAttribute ("Interval", TimeValue (Seconds(1.0)));
77 client.SetAttribute ("PacketSize", UintegerValue (100));
78 client.Install (grid.GetNode (0,0));
79 // bla
80
Alexander Afanasyev5b433862011-10-31 15:25:07 -070081 // apps.Stop (Seconds(150.0));
82
83 Simulator::ScheduleWithContext (grid.GetNode (0,0)->GetId (),
84 Seconds (80.0), TestDisable, grid.GetNode (0,0));
85
86 // Trace routing tables
87 Ptr<OutputStreamWrapper> routingStream = Create<OutputStreamWrapper> ("routes.log", std::ios::out);
Alexander Afanasyevbeceb362011-11-02 16:54:12 -070088 *routingStream->GetStream () << "Node (1,1)\n";
89 ipv4RoutingHelper.PrintRoutingTableAt (Seconds (20), grid.GetNode (1,1), routingStream);
Alexander Afanasyev5b433862011-10-31 15:25:07 -070090
91 Simulator::Stop (Seconds(160.0));
92 Simulator::Run ();
93 Simulator::Destroy ();
94
95 NS_LOG_INFO ("End of experiment");
96
97 return 0;
98}