Location Prediction Based Routing Protocol for Mobile Ad hoc Networks

Size: px
Start display at page:

Download "Location Prediction Based Routing Protocol for Mobile Ad hoc Networks"

Transcription

1 Location Prediction Based Routing Protocol for Mobile Ad hoc Networks Natarajan Meghanathan Department of Computer Science Jackson State University Jackson, MS 39217, USA Abstract We propose a new mobile ad hoc network (MANET) routing protocol called Location Prediction Based Routing (LPBR) to simultaneously minimize the number of route discoveries and hop count of the paths for a source-destination session. During a regular flooding-based route discovery, LPBR collects the location and mobility information of nodes in the network and stores the collected information at the destination node of the route search process. When the minimum-hop route discovered through the flooding-based route discovery fails, the destination node attempts to predict the current location of each node using the location and mobility information collected during the latest flooding-based route discovery. A minimum hop Dijkstra algorithm is run on the locally predicted global topology. If the predicted minimum hop route exists in reality, no expensive flooding-based route discovery is needed and the source continues to send data packets on the discovered route; otherwise, the source initiates another flooding-based route discovery. Our ns-2 simulations indicate that LPBR incurs a significantly reduced number of flooding-based route discovery attempts compared with the minimum-hop based and stable path routing protocols. At the same time, the average hop count per path is close to that of the minimum-hop based routing protocols. Key Words: Location prediction, Routing, Ad hoc networks, Route discoveries, Hop count I. INTRODUCTION A mobile ad hoc network (MANET) is a dynamic distributed system of wireless nodes that move independently of each other. MANET routing protocols are either proactive or reactive in nature. Proactive routing protocols determine and maintain routes between any pair of nodes irrespective of their requirement. The reactive on-demand routing protocols determine a route only when required. As the network topology changes dynamically, reactive routing has been preferred over proactive routing [1]. We will focus only on the reactive ondemand routing protocols in this paper. Based on route selection principles, MANET routing protocols can be classified as minimum-weight based and stability-based [2]. Most of the minimum-weight based protocols aim to minimize the number of hops in a path. Stability-based protocols aim for routes with longer lifetimes in order to reduce the number of route discoveries. Performance comparison studies [3] reveal that the stable path protocols could incur as low as half the number of route discoveries incurred by the minimum-hop based protocols, but the average This research was supported by the Center for University Scholars at Jackson State University through a research grant for Summer 2008 hop count of stable paths could be as large as twice the minimum hop count. Frequent flooding-based route discoveries incurred by the minimum-hop based protocols significantly consume network bandwidth and congest the network. Stable paths with larger hop count also consume more network bandwidth and reduce frequency reuse. Moreover, nodes that are part of a stable path are used more predominantly compared to the other nodes in the network. Here, we propose a new MANET routing protocol called Location Prediction Based Routing (LPBR) protocol that simultaneously minimizes the number of route discoveries as well as the hop count of paths used for a source-destination session. We assume all the nodes are position-aware using techniques like Global Positioning Systems [4] and the clocks across all nodes are synchronized. LPBR works as follows: Whenever a source node has data packets to send to a destination node but does not have a route to that node, it initiates a flooding-based route discovery by broadcasting a Route-Request (RREQ) packet. During this flooding process, each node forwards the RREQ packet exactly once after incorporating its location update vector (LUV) in the RREQ packet. The LUV of a node comprises the node id, the current X and Y co-ordinates of the nodes, the current velocity and angle of movement with respect to the X-axis. The destination node collects the LUV information of all the nodes in the network from the RREQ packets received through several paths and sends a Route-Reply (RREP) packet to the source on the minimum hop path traversed by a RREQ packet. The source starts sending the data packets on the path learnt (based on the RREP packet) and informs the destination about the time of next packet dispatch through the header of the data packet currently being sent. If an intermediate node could not forward a data packet, it sends a Route-Error packet to the source node, which then waits a little while for the destination to inform it of a new route predicted using the LUVs gathered from the latest flooding-based route discovery. If the destination does not receive the data packet within the expected time, it locally constructs the current global topology by predicting the locations of the nodes. Each node is assumed to be currently moving in the same direction and speed as mentioned in its latest LUV. If there is at least one path in the predicted global topology, the destination node sends the source a LPBR-RREP packet on the minimum hop path in the predicted topology. If the predicted path actually exists in reality, the intermediate nodes on the predicted route manage to forward the LPBR-RREP packet to the source. The source uses

2 the route learnt through the latest LPBR-RREP packet to send the data packets. A costly flooding-based route discovery has been thus avoided. If an intermediate node could not forward the LPBR-RREP packet (i.e., the predicted path did not exist in reality), the intermediate node sends a LPBR-RREP-ERROR packet to the destination informing it of the failure to forward the LPBR-RREP packet. The destination discards all the LUVs and the source initiates the next flooding-based route discovery after timing out for the LPBR-RREP packet. We implemented LPBR in ns-2 [5] and compared its performance with that of the minimum-hop based Dynamic Source Routing (DSR) [6] and the stability based Associativity-Based Routing (ABR) [7], Flow Oriented Routing Protocol (FORP) [8] and Route-lifetime Assessment Based Routing (RABR) [9] protocols. We find LPBR to be significantly successful in reducing the number of route discoveries compared to both the minimum hop based DSR and stable path based ABR, FORP and RABR protocols. Even though, there is some overhead in including the LUV information in the RREQ packets and the next packet sending time information in the data packets, we find this to be a small and useful overhead compared to the huge overhead incurred when using the minimum-hop based DSR (that incurs significantly larger number of route discoveries) and the stable path based routing protocols like ABR, FORP and RABR (that incur more hops per path). Also, as LPBR always opts for the minimum hop paths in the predicted global topology, the average hop count per path for LPBR routes is significantly smaller than that of the stable path routing protocols and is almost close to that of the minimum-hop based DSR. Thus, LPBR reduces the number of route discoveries as well as incurs lower hop count per path. The rest of the paper is organized as follows: In Section II, we present in detail our proposed Location Prediction Based Routing (LPBR) protocol and also explain the different control packets and data packet used in the protocol. Section III presents the simulation conditions used to compare the performance of LPBR with the DSR, ABR, FORP and RABR protocols; explain the simulation results observed with the different routing protocols and highlight the reduction in the number of route discoveries and the average hop count per path achieved with LPBR. Section IV draws the conclusions. II. LOCATION PREDICTION BASED ROUTING (LPBR) PROTOCOL LPBR does not require the periodic broadcast of beacons in the neighborhood. It assumes nodes are position-aware and the clocks across all nodes are synchronized. A. Route Discovery to Collect Location Update Vectors When the source has a data packet to send to a destination and is not aware of any route to that node, the source initiates a flooding-based route discovery by sending a Route-Request packet (RREQ) to its neighbors. The source maintains a monotonically increasing sequence number for the floodingbased route discoveries it initiates to reach the destination. Each node on receiving the first RREQ packet (with a sequence number greater than those seen before), will include its location update vector LUV (comprising the node id, X, Y co-ordinate information, current velocity and angle of movement with respect to the X-axis) in the RREQ packet. The intermediate node also appends its node id in the Route record field of the RREQ packet. The LUV and the RREQ packet are shown in Figures 1 and 2 respectively. Figure 1. Location Update Vector Collected from Each Node Figure 2. Route Request (RREQ) Packet with the LUVs The destination receives several RREQ packets across different paths and selects the minimum hop path among them using the Route record field in these RREQ packets. A Route-Reply (RREP) packet (refer Figure 3) is sent on the discovered minimum hop route to the source. All the nodes receiving the RREP packet will update their routing tables to forward incoming data packets (for the source-destination session) to the node that sent the RREP packet. Note that in order to collect the latest location and mobility information of each node through the LUVs, we intentionally do not let any intermediate node respond to the source with a RREP for a RREQ packet. RREQ packets reach the destination through several paths and will gather the LUVs from several nodes in the network. We consider the time of receipt of the RREQ packet as the time of obtaining the LUV of a node as we expect no major link failures to happen during the time lapsed in between a node sending its LUV in the RREQ packet and the RREQ reaching the destination. Figure 3. Route Reply (RREP) Packet B. Data Packet Transmission and Route Maintenance The source starts sending data packets to the destination on the route learnt through the RREP packet. In addition to the usual sequence number, source and destination fields, the header of the data packet (refer Figure 4) has three specialized fields: the More Packets (MP) field, the Current Dispatch Time (CDT) field and the Time Left for Next Dispatch (TLND) field. The additional overhead associated with these three header fields amount to only 97 bits per data packet. Figure 4. Structure of the Header of the Data Packet

3 The CDT field stores the time as the number of milliseconds lapsed since Jan 1, 1970, 12 AM. If the source has more data to send, it sets the MP flag to 1 and the TLND field to be the number of milliseconds since the CDT of the latest data packet sent. If the source has no more data to send, the MP flag is set to 0 and the TLND field is left blank. As we assume synchronized clocks across all nodes, the destination calculates the end-to-end delay for the data packet based on the local time of receipt of the data packet and the CDT field in the header of the data packet. The destination maintains an average of the end-to-end delay per data packet incurred for the path currently being used to communicate with the source and updates it based on the end-to-end delay suffered by the data packet currently received. If the source node has set the MP flag, the destination node computes the Next Expected Packet Arrival Time (NEPAT) as CDT + TLND + 2*Average end-to-end delay per data packet. A timer is started for the NEPAT value. If a link failure occurs due to the two nodes constituting the link drifting away, the upstream node of the broken link informs the source through a Route-Error packet (refer Figure 5). The source on learning the route failure stops sending data packets and waits for the destination to inform it of any new route through a LPBR-RREP packet. Figure 5. Structure of the Route-Error Packet C. Predicting Node Location using Location Update Vector If the destination does not receive the data packet within the NEPAT time, it will attempt to locally construct the global topology using the location and mobility information of the nodes learnt from the latest flooding-based route discovery. Each node is assumed to be continuing to move in the same direction with the same speed as mentioned in its latest LUV. Let (X STIME u, Y STIME u ) be the X and Y co-ordinates of node u STIME learnt from its LUV collected at time STIME. Let Angle u and Velocity STIME u represent the angle of movement with respect to the X-axis and the velocity at which node u is moving. We determine the location of node u at time CTIME, denoted by (X CTIME u, Y CTIME u ), as follows: Distance traveled by STIME-CTIME node u from time STIME to CTIME is: Distance u = (CTIME STIME + 1)* Velocity STIME u. Then, X CTIME u = X STIME u + Offset-X CTIME u and Y CTIME u = Y STIME u + Offset-Y CTIME u. The offsets in the X and Y-axes depend on the angle of movement and the distance traveled. Offset-X CTIME STIME-CTIME u = Distance u * cos(angle STIME u ) Offset-Y CTIME STIME-CTIME u = Distance u * sin(angle STIME u ) where 0 Angle STIME u 360 Let the network boundaries be given by [0, 0], [X max, 0], [X max, Y max ] and [0, Y max ]. X u CTIME and Y u CTIME are bounded by the constraints: 0 X u CTIME X max and 0 Y u CTIME Y max. If a predicted X and/or Y co-ordinate value falls outside this window, the value is reset to the nearest co-ordinate limit. D. Path Prediction and Source Notification Based on the predicted locations of each node in the network at time CTIME, the destination node locally constructs the global topology. Note that there exists an edge between two nodes in the locally constructed global topology if the predicted distance between the two nodes (computed based on their predicted locations) is less than or equal to the transmission range of the nodes. The destination node d then locally runs the Dijkstra s minimum hop path algorithm [10] (with the starting node being the source s) on the predicted global topology. If at least one s-d path exists, the destination sends a LPBR-RREP packet (refer Figure 6) on the minimum hop s-d path with the route information included in the packet. Figure 6. Structure of the LPBR-RREP Packet Each intermediate node receiving the LPBR-RREP packet updates its routing table to record the incoming interface of the packet as the outgoing interface for any data packet sent from s to d and then forwards the LPBR-RREP packet to the next node on the path to the source node. If the predicted s-d path exists in reality, then the source s is most likely to receive the LPBR-RREP packet before the LPBR-RREP-timer expires. The source now sends the data packets on the route learnt through the latest LPBR-RREP packet received from the destination. The Route-Repair Time (RRT) is the time that lapsed since the source received the Route-Error packet. An average RRT value is maintained at the source as it undergoes several route failures and repairs before the next floodingbased route discovery. The LPBR-RREP-timer (initially set to the route acquisition time) is then set to 1.5*Average RRT value, so that we give sufficient time for the destination to learn about the route failure and generate a new LPBR-RREP packet. Nevertheless, this timer value will be still far less than the route acquisition time that would be incurred if the source were to launch a flooding-based route discovery. Hence, our approach will only increase the network throughput. Figure 7. Structure of the LPBR-RREP-ERROR Packet E. Handling Prediction Failures If an intermediate node could not successfully forward the LPBR-RREP packet to the next node on the path towards the source, it informs the absence of the route to the destination through a LPBR-RREP-ERROR packet (refer Figure 7). The destination node on receiving the LPBR-RREP-ERROR packet discards all the LUVs and does not generate any new

4 LPBR-RREP packet. After the LPBR-RREP-timer expires, the source node initiates a new flooding-based route discovery. III. SIMULATIONS We use ns-2 (version 2.28) [5] as the simulator for our study. We implemented the LPBR, FORP, ABR and RABR protocols and used the implementation of DSR that comes with ns-2. The MAC layer used is the IEEE [11] implementation available in ns-2. The network dimensions used are 650m x 1500m (rectangular network) and 1000m x 1000m (square network). The number of nodes used in each of the above two networks are 50 (low density with an average of 10 neighbors per node) and 100 nodes (high density with an average of 20 neighbors per node). The transmission range of each node is assumed to be 250m. Initially, nodes are uniformly randomly distributed in the network. The performance metrics measured are the average number of route discoveries per s-d session and the average hop count per path, time-averaged over all the s-d sessions. The node mobility model used is the Random Waypoint model [12]. Each node starts moving from an arbitrary location to a randomly selected destination location at a speed uniformly distributed in [0,, v max ]. Once the destination is reached, the node continues to move by choosing a different target location and a different velocity. The v max values used are 5, 20 and 50 m/s representing scenarios of low, medium and high node mobility respectively. Traffic sources are constant bit rate (CBR). The number of s-d sessions used is 15. The starting times of these s-d sessions is uniformly distributed between 1 to 50 seconds. Data packets are 512 bytes in size and the packet sending rate is 4 data packets/second. Each data point in Figures 8 through 11 is an average of the data collected using 5 mobility trace files and 5 sets of randomly selected 15 s-d sessions. A. FORP, ABR and RABR In FORP, each node keeps track of the predicted lifetimes of the links with its neighbors. The predicted lifetime of a route is the minimum of the predicted lifetimes of the constituent links of the route. FORP selects the route with the maximum predicted route lifetime. In the case of ABR, each node maintains the number of beacons (called associativity ticks) received from its neighbors. If the number of associativity ticks received from a neighbor exceeds the Associativity Threshold (calculated based on the relative velocity of the nodes in the network), then the link with the neighbor is said to be a strong link; otherwise the link is termed a weak link. ABR chooses the route that has the maximum proportion of strong links. In case of a tie, then ABR chooses the minimum hop path among those paths that have the same maximum proportion of strong links. In the case of RABR, each node keeps track of the affinity of the links with its neighbors by measuring the signal strength of the beacons received from the neighbors. Link affinity is a measure of link stability. If two nodes are approaching each other, then the link between them has a high affinity value. If two nodes are moving away from each other, then the link between them has a low affinity value. The affinity of a route is the minimum of the affinity values of the constituent links. RABR selects the route with the maximum affinity value. B. Hop Count per Path Figures 8.1 through 8.3 and 9.1 through 9.3 illustrate that the hop count incurred by LPBR routes is almost close to that incurred by DSR routes and is significantly smaller compared to that incurred by the stable path protocols. This indicates the effectiveness of the LPBR route prediction approach. The hop count of the routes predicted upon a route failure is close to being the minimum in the network at that instant of time. Figure 8.1: v max = 5m/s Figure 8.2: v max = 20m/s Figure 8.3: v max = 50m/s Figure 8: Hop Count per Path in Square Network Figure 9.1: v max = 5 m/s Figure 9.2: v max = 20 m/s Figure 9.3: v max = 50 m/s Figure 9: Hop Count per Path in Rectangular Network In networks of square shape, the nodes are uniformly distributed in both the X and Y directions. There is no significant increase in the probability of the network remaining connected when we increase the number of neighbors per node from 10 to 20. Hence, the hop count of the routes chosen does not depend much on node distribution and node mobility. DSR has the minimum hop paths among all the routing protocols. The hop count of the LPBR routes is larger than that of the DSR routes only by 6 to 12% and is about 0.85 times to that of the FORP routes, 0.7 times to that of the ABR routes and 0.6 times to that of the RABR routes. In networks of rectangular shape, the nodes are more preferentially distributed towards the larger dimension. As a result, the hop count of the routes will be larger compared to that incurred in square networks of the same total area. The magnitude of the difference depends on the routing protocol and the network density. Comparing the hop count incurred by LPBR with those incurred by the other routing protocols, we observe that the hop count of LPBR routes is 2-6% more than that of DSR, times less than that of ABR, 0.5 less than that of RABR and 0.85 times less than that of FORP.

5 Figure 10.1: v max = 5m/s Figure 10.2: v max = 20m/s Figure 10.3: v max = 50m/s Figure 10: Route Discoveries in Square Network Figure 11.1: v max = 5 m/s Figure 11.2: v max = 20 m/s Figure 11.3: v max = 50 m/s Figure 11: Route Discoveries in Rectangular Network C. Number of Route Discoveries Figures 10.1 through 10.3 and 11.1 through 11.3 illustrate that LPBR incurs the least number of route discoveries when compared to the other four routing protocols. The stable path protocols undergo a reduced number of route discoveries compared to the minimum hop based DSR. The instability of minimum hop paths could be attributed to the larger physical distance (on average close to 80% of the transmission range of the nodes) of the constituent hops on the minimum hop path (edge effect [13]). Even though LPBR routes are also prone to edge effect, the effectiveness and accuracy of the location prediction approach helps to avoid the flooding-based route discoveries as much as possible. In networks with square topology, the number of route discoveries is not very much influenced by the edge effect. When it comes to ranking the routing protocols in terms of the magnitude of the number of flooding-based route discoveries, we observe LPBR incurs the minimum number of route discoveries and DSR incurs the maximum. In networks of rectangular topology, the routes are influenced by the edge effect. For a given node mobility and network density, the probability of a route failure is more in a rectangular topology compared to that in a square topology because, the average hop count of a route incurred by any routing protocol in a rectangular topology is greater than that incurred with a square topology when run under identical conditions. Nevertheless, all of the above observations in the simulation results indicate that LPBR incurs the lowest number of route discoveries among all the five routing protocols. IV. CONCLUSIONS The high-level contribution of this paper is the proposal and development of a new mobile ad hoc network routing protocol called Location Prediction Based Routing (LPBR) protocol that simultaneously minimizes the number of route discoveries as well as the hop count per path. We ran extensive simulations by varying the network density, node mobility and network topology shape. We compared the performance of LPBR with that of the minimum-hop based DSR and the stable path routing protocols like FORP, ABR and RABR. LPBR incurs the least number of route discoveries and the hop count per path is only at most 12% more than that incurred with the minimum-hop DSR. The number of route discoveries is often significantly low compared to that incurred with DSR, ABR and is about 60 to 80% of the number of route discoveries incurred by FORP and RABR for most of the simulation conditions. This indicates the effectiveness of the location prediction approach in LPBR. As there exists no single routing protocol that simultaneously minimizes the number of route discoveries as well as the hop count per path, LPBR is a valuable addition to the MANET literature. REFERENCES [1] J. Broch, D. A. Maltz, D. B. Johnson, Y. C. Hu, J. Jetcheva, A Performance Comparison of Multi-hop Wireless Ad Hoc Network Routing Protocols, Proceedings of the 4 th ACM Mobile Computing and Networking Conference, pp.85 97, Oct [2] N. Meghanathan and A. Farago, Survey and Taxonomy of 55 Unicast Routing Protocols for Mobile Ad Hoc Networks, Technical Report UTDCS-40-04, University of Texas at Dallas, Nov [3] N. Meghanathan, Stability-Energy Consumption Tradeoff among Mobile Ad hoc Network Routing Protocols, Proceedings of the 3 rd International Conference on Wireless and Mobile Communications, Mar [4] B. Hofmann-Wellenhof, H. Lichtenegger and J. Collins, Global Positioning System: Theory and Practice, 5 th ed., Springer, Sept [5] L. Breslau et. al, Advances in Network Simulation, IEEE Computer, vol. 33, no. 5, pp , May [6] D. B. Johnson, D. A. Maltz and J. Broch, DSR: The Dynamic Source Routing Protocol for Multi-hop Wireless Ad hoc Networks, in Ad hoc Networking, Chapter 5, C. E. Perkins, Eds. Addison Wesley, pp , [7] C-K. Toh, Associativity-Based Routing for Ad hoc Mobile Networks, IEEE Personal Communications, vol. 4, no. 2, pp , Mar [8] W. Su, S-J Lee and M. Gerla, Mobility Prediction and Routing in Ad Hoc Wireless Networks, International Journal of Network Management, vol. 11, no. 1, pp. 3-30, Jan.-Feb [9] S. Agarwal, A. Ahuja, J. P. Singh and R. Shorey, Route-Life Time Assessment Based Routing Protocol for Mobile Ad Hoc Networks, Proceedings of IEEE International Conference on Communications, pp , Jun [10] T. H. Cormen, C. E. Leiserson, R. L. Rivest and C. Stein, Introduction to Algorithms, 2 nd Edition, MIT Press/ McGraw-Hill, Sept [11] G. Bianchi, Performance Analysis of the IEEE Distributed Coordination Function, IEEE Journal of Selected Areas in Communication, vol. 18, no. 3, pp , Mar [12] C. Bettstetter, H. Hartenstein and X. Perez-Costa, Stochastic Properties of the Random-Way Point Mobility Model, Wireless Networks, pp , vol. 10, no. 5, Sept [13] G. Lim, K. Shin, S. Lee, H. Yoon and J. S. Ma, Link Stability and Route Lifetime in Ad hoc Wireless Networks, Proceedings of the International Conference on Parallel Processing Workshops, pp , Aug

International Journal of Engineering, Science and Technology Vol. 2, No. 6, 2010, pp. 1-21

International Journal of Engineering, Science and Technology Vol. 2, No. 6, 2010, pp. 1-21 MultiCraft International Journal of Engineering, Science and Technology Vol. 2, No. 6, 2010, pp. 1-21 INTERNATIONAL JOURNAL OF ENGINEERING, SCIENCE AND TECHNOLOGY www.ijest-ng.com 2010 MultiCraft Limited.

More information

Volume 2 No. 1 ISSN Journal of Emerging Trends in Computing and Information Sciences CIS Journal. All rights reserved.

Volume 2 No. 1 ISSN Journal of Emerging Trends in Computing and Information Sciences CIS Journal. All rights reserved. The Beaconless Node Velocity-based Stable Path Routing Protocol for Unicasting and Multicasting in Mobile Ad hoc Networks Natarajan Meghanathan Jackson State University, Jackson, MS 39217, USA natarajan.meghanathan@jsums.edu

More information

Computer and Information Science February, 2010

Computer and Information Science February, 2010 Improvement in Network Lifetime for On-Demand Routing in Mobile Ad hoc Networks Using either On-Demand Recharging or Transmission Power Control or Both Natarajan Meghanathan (Corresponding Author) Department

More information

PERFORMANCE COMPARISON OF LINK, NODE AND ZONE DISJOINT MULTI-PATH ROUTING STRATEGIES AND MINIMUM HOP SINGLE PATH ROUTING FOR MOBILE AD HOC NETWORKS

PERFORMANCE COMPARISON OF LINK, NODE AND ZONE DISJOINT MULTI-PATH ROUTING STRATEGIES AND MINIMUM HOP SINGLE PATH ROUTING FOR MOBILE AD HOC NETWORKS PERFORMANCE COMPARISON OF LINK, NODE AND ZONE DISJOINT MULTI-PATH ROUTING STRATEGIES AND MINIMUM HOP SINGLE PATH ROUTING FOR MOBILE AD HOC NETWORKS Natarajan Meghanathan Jackson State University, 1400

More information

AODV-PA: AODV with Path Accumulation

AODV-PA: AODV with Path Accumulation -PA: with Path Accumulation Sumit Gwalani Elizabeth M. Belding-Royer Department of Computer Science University of California, Santa Barbara fsumitg, ebeldingg@cs.ucsb.edu Charles E. Perkins Communications

More information

Impact of Route Selection Metrics on the Performance of On-Demand Mesh-based Multicast Ad hoc Routing

Impact of Route Selection Metrics on the Performance of On-Demand Mesh-based Multicast Ad hoc Routing Computer and Information Science Vol. 3, No. 2; May 2010 Impact of Route Selection Metrics on the Performance of On-Demand Mesh-based Multicast Ad hoc Routing Natarajan Meghanathan (Corresponding Author)

More information

Content. 1. Introduction. 2. The Ad-hoc On-Demand Distance Vector Algorithm. 3. Simulation and Results. 4. Future Work. 5.

Content. 1. Introduction. 2. The Ad-hoc On-Demand Distance Vector Algorithm. 3. Simulation and Results. 4. Future Work. 5. Rahem Abri Content 1. Introduction 2. The Ad-hoc On-Demand Distance Vector Algorithm Path Discovery Reverse Path Setup Forward Path Setup Route Table Management Path Management Local Connectivity Management

More information

CONSTRUCTION AND EVALUATION OF MESHES BASED ON SHORTEST PATH TREE VS. STEINER TREE FOR MULTICAST ROUTING IN MOBILE AD HOC NETWORKS

CONSTRUCTION AND EVALUATION OF MESHES BASED ON SHORTEST PATH TREE VS. STEINER TREE FOR MULTICAST ROUTING IN MOBILE AD HOC NETWORKS CONSTRUCTION AND EVALUATION OF MESHES BASED ON SHORTEST PATH TREE VS. STEINER TREE FOR MULTICAST ROUTING IN MOBILE AD HOC NETWORKS 1 JAMES SIMS, 2 NATARAJAN MEGHANATHAN 1 Undergrad Student, Department

More information

QoS Routing By Ad-Hoc on Demand Vector Routing Protocol for MANET

QoS Routing By Ad-Hoc on Demand Vector Routing Protocol for MANET 2011 International Conference on Information and Network Technology IPCSIT vol.4 (2011) (2011) IACSIT Press, Singapore QoS Routing By Ad-Hoc on Demand Vector Routing Protocol for MANET Ashwini V. Biradar

More information

Figure 1: Ad-Hoc routing protocols.

Figure 1: Ad-Hoc routing protocols. Performance Analysis of Routing Protocols for Wireless Ad-Hoc Networks Sukhchandan Lally and Ljiljana Trajković Simon Fraser University Vancouver, British Columbia Canada E-mail: {lally, ljilja}@sfu.ca

More information

An Energy-aware Greedy Perimeter Stateless Routing Protocol for Mobile Ad hoc Networks

An Energy-aware Greedy Perimeter Stateless Routing Protocol for Mobile Ad hoc Networks An Energy-aware Greedy Perimeter Stateless Routing Protocol for Mobile Ad hoc Networks Natarajan Meghanathan Jackson State University P. O. Box 18839, 1400 J. Lynch Street Jackson, MS 39217, USA ABSTRACT

More information

INVESTIGATING THE SCALABILITY OF THE FISH-EYE STATE ROUTING PROTOCOL FOR AD HOC NETWORKS

INVESTIGATING THE SCALABILITY OF THE FISH-EYE STATE ROUTING PROTOCOL FOR AD HOC NETWORKS INVESTIGATING THE SCALABILITY OF THE FISH-EYE STATE ROUTING PROTOCOL FOR AD HOC NETWORKS 1 NATARAJAN MEGHANATHAN, 2 AYOMIDE ODUNSI 1 Asstt Prof., Department of Computer Science, Jackson State University,

More information

A Graph-based Approach to Compute Multiple Paths in Mobile Ad Hoc Networks

A Graph-based Approach to Compute Multiple Paths in Mobile Ad Hoc Networks A Graph-based Approach to Compute Multiple Paths in Mobile Ad Hoc Networks Gunyoung Koh, Duyoung Oh 1 and Heekyoung Woo 2 1 School of Electrical Engineering and Computer Science Seoul National University,

More information

Behaviour of Routing Protocols of Mobile Adhoc Netwok with Increasing Number of Groups using Group Mobility Model

Behaviour of Routing Protocols of Mobile Adhoc Netwok with Increasing Number of Groups using Group Mobility Model Behaviour of Routing Protocols of Mobile Adhoc Netwok with Increasing Number of Groups using Group Mobility Model Deepak Agrawal, Brajesh Patel Department of CSE Shri Ram Institute of Technology Jabalpur,

More information

Power aware Multi-path Routing Protocol for MANETS

Power aware Multi-path Routing Protocol for MANETS Power aware Multi-path Routing Protocol for MANETS Shruthi P Murali 1,Joby John 2 1 (ECE Dept, SNGCE, India) 2 (ECE Dept, SNGCE, India) Abstract: Mobile Adhoc Network consists of a large number of mobile

More information

Performance Analysis of Three Routing Protocols for Varying MANET Size

Performance Analysis of Three Routing Protocols for Varying MANET Size Proceedings of the International MultiConference of Engineers and Computer Scientists 8 Vol II IMECS 8, 9- March, 8, Hong Kong Performance Analysis of Three Routing Protocols for Varying MANET Size N Vetrivelan,

More information

A New Energy-Aware Routing Protocol for. Improving Path Stability in Ad-hoc Networks

A New Energy-Aware Routing Protocol for. Improving Path Stability in Ad-hoc Networks Contemporary Engineering Sciences, Vol. 8, 2015, no. 19, 859-864 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2015.57207 A New Energy-Aware Routing Protocol for Improving Path Stability

More information

Routing Protocols in MANETs

Routing Protocols in MANETs Chapter 4 Routing Protocols in MANETs 4.1 Introduction The main aim of any Ad Hoc network routing protocol is to meet the challenges of the dynamically changing topology and establish a correct and an

More information

Performance of Ad-Hoc Network Routing Protocols in Different Network Sizes

Performance of Ad-Hoc Network Routing Protocols in Different Network Sizes Performance of Ad-Hoc Network Routing Protocols in Different Network Sizes Sudheer Kumar 1, Akhilesh Yadav 2 Department of Computer Science and Engineering Kanpur Institute of Technology, Kanpur sudheerkr21@gmail.co

More information

PERFORMANCE EVALUATION OF DSR USING A NOVEL APPROACH

PERFORMANCE EVALUATION OF DSR USING A NOVEL APPROACH PERFORMANCE EVALUATION OF DSR USING A NOVEL APPROACH 1. Prof.S.P. Setti 2. Narasimha Raju K 3. Naresh Kumar K CS&SE Dept., CS&SE Dept., CS&SE Dept., AU College of Engineering, AU College of Engineering,

More information

1 Multipath Node-Disjoint Routing with Backup List Based on the AODV Protocol

1 Multipath Node-Disjoint Routing with Backup List Based on the AODV Protocol 1 Multipath Node-Disjoint Routing with Backup List Based on the AODV Protocol Vahid Zangeneh i and Shahriar Mohammadi ii * ABSTRACT In recent years, routing has been the most focused area in ad hoc networks

More information

Performance Comparison of MANETs Routing Protocols for Dense and Sparse Topology

Performance Comparison of MANETs Routing Protocols for Dense and Sparse Topology 2012 International Conference on Information and Computer Networks (ICICN 2012) IPCSIT vol. 27 (2012) (2012) IACSIT Press, Singapore Performance Comparison of MANETs Routing Protocols for Dense and Sparse

More information

PERFORMANCE ANALYSIS OF AODV ROUTING PROTOCOL IN MANETS

PERFORMANCE ANALYSIS OF AODV ROUTING PROTOCOL IN MANETS PERFORMANCE ANALYSIS OF AODV ROUTING PROTOCOL IN MANETS AMANDEEP University College of Engineering, Punjabi University Patiala, Punjab, India amandeep8848@gmail.com GURMEET KAUR University College of Engineering,

More information

Efficient On-Demand Routing for Mobile Ad-Hoc Wireless Access Networks

Efficient On-Demand Routing for Mobile Ad-Hoc Wireless Access Networks Efficient On-Demand Routing for Mobile Ad-Hoc Wireless Access Networks Joo-Han Song, Vincent Wong and Victor Leung Department of Electrical and Computer Engineering The University of British Columbia 56

More information

Varying Overhead Ad Hoc on Demand Vector Routing in Highly Mobile Ad Hoc Network

Varying Overhead Ad Hoc on Demand Vector Routing in Highly Mobile Ad Hoc Network Journal of Computer Science 7 (5): 678-682, 2011 ISSN 1549-3636 2011 Science Publications Varying Overhead Ad Hoc on Demand Vector Routing in Highly Mobile Ad Hoc Network 1 V. Balaji and 2 V. Duraisamy

More information

Performance Analysis of MANET Routing Protocols OLSR and AODV

Performance Analysis of MANET Routing Protocols OLSR and AODV VOL. 2, NO. 3, SEPTEMBER 211 Performance Analysis of MANET Routing Protocols OLSR and AODV Jiri Hosek Faculty of Electrical Engineering and Communication, Brno University of Technology Email: hosek@feec.vutbr.cz

More information

A Performance Comparison of Multicast Routing Protocols In Ad hoc Networks

A Performance Comparison of Multicast Routing Protocols In Ad hoc Networks A Performance Comparison of Multicast Routing Protocols In Ad hoc Networks Hasnaa MOUSTAFA and Houda LABIOD ENST - INFRES Department - 46 Rue Barrault 75634 Paris cedex 3 Paris - France Tel: +33 ().45.8.74.36

More information

Analysis of Black-Hole Attack in MANET using AODV Routing Protocol

Analysis of Black-Hole Attack in MANET using AODV Routing Protocol Analysis of Black-Hole Attack in MANET using Routing Protocol Ms Neha Choudhary Electronics and Communication Truba College of Engineering, Indore India Dr Sudhir Agrawal Electronics and Communication

More information

Performance Analysis of Wireless Mobile ad Hoc Network with Varying Transmission Power

Performance Analysis of Wireless Mobile ad Hoc Network with Varying Transmission Power , pp.1-6 http://dx.doi.org/10.14257/ijsacs.2015.3.1.01 Performance Analysis of Wireless Mobile ad Hoc Network with Varying Transmission Power Surabhi Shrivastava, Laxmi Shrivastava and Sarita Singh Bhadauria

More information

Impact of Hello Interval on Performance of AODV Protocol

Impact of Hello Interval on Performance of AODV Protocol Impact of Hello Interval on Performance of AODV Nisha Bhanushali Priyanka Thakkar Prasanna Shete ABSTRACT The multi-hop ad hoc networks are self organizing networks with dynamic topology. The reactive

More information

IMPACT OF MOBILITY SPEED ON PROACTIVE AND REACTIVE ROUTING PROTOCOLS IN MOBILE ADHOC NETWORKS

IMPACT OF MOBILITY SPEED ON PROACTIVE AND REACTIVE ROUTING PROTOCOLS IN MOBILE ADHOC NETWORKS IMPACT OF MOBILITY SPEED ON PROACTIVE AND REACTIVE ROUTING PROTOCOLS IN MOBILE ADHOC NETWORKS E. Gnanamanoharan and R. Bensraj Department of Electrical Engineering, Annamalai University, Tamil Nadu, India

More information

A Highly Effective and Efficient Route Discovery & Maintenance in DSR

A Highly Effective and Efficient Route Discovery & Maintenance in DSR A Highly Effective and Efficient Route Discovery & Maintenance in DSR Shiva Prakash 1, Rajeev Kumar 2, Brijesh Nayak 3, Manindar Kumar Yadav 4 Department of Computer Science and Engineering, Madan Mohan

More information

Anil Saini Ph.D. Research Scholar Department of Comp. Sci. & Applns, India. Keywords AODV, CBR, DSDV, DSR, MANETs, PDF, Pause Time, Speed, Throughput.

Anil Saini Ph.D. Research Scholar Department of Comp. Sci. & Applns, India. Keywords AODV, CBR, DSDV, DSR, MANETs, PDF, Pause Time, Speed, Throughput. Volume 6, Issue 7, July 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Performance Analysis

More information

A REVERSE AND ENHANCED AODV ROUTING PROTOCOL FOR MANETS

A REVERSE AND ENHANCED AODV ROUTING PROTOCOL FOR MANETS A REVERSE AND ENHANCED AODV ROUTING PROTOCOL FOR MANETS M. Sanabani 1, R. Alsaqour 2 and S. Kurkushi 1 1 Faculty of Computer Science and Information Systems, Thamar University, Thamar, Republic of Yemen

More information

Mobile Ad-hoc and Sensor Networks Lesson 04 Mobile Ad-hoc Network (MANET) Routing Algorithms Part 1

Mobile Ad-hoc and Sensor Networks Lesson 04 Mobile Ad-hoc Network (MANET) Routing Algorithms Part 1 Mobile Ad-hoc and Sensor Networks Lesson 04 Mobile Ad-hoc Network (MANET) Routing Algorithms Part 1 Oxford University Press 2007. All rights reserved. 1 Ad-hoc networks deployment For routing, target detection,

More information

An Energy Efficient Risk Notification Message Dissemination Protocol for Vehicular Ad hoc Networks

An Energy Efficient Risk Notification Message Dissemination Protocol for Vehicular Ad hoc Networks An Energy Efficient Risk Notification Message Dissemination Protocol for Vehicular Ad hoc Networks Natarajan Meghanathan Gordon W. Skelton Assistant Professor Associate Professor Department of Computer

More information

Estimate the Routing Protocols for Internet of Things

Estimate the Routing Protocols for Internet of Things Estimate the Routing Protocols for Internet of Things 1 Manjushree G, 2 Jayanthi M.G 1,2 Dept. of Computer Network and Engineering Cambridge Institute of Technology Bangalore, India Abstract Internet of

More information

A COMPARISON OF REACTIVE ROUTING PROTOCOLS DSR, AODV AND TORA IN MANET

A COMPARISON OF REACTIVE ROUTING PROTOCOLS DSR, AODV AND TORA IN MANET ISSN: 2278 1323 All Rights Reserved 2016 IJARCET 296 A COMPARISON OF REACTIVE ROUTING PROTOCOLS DSR, AODV AND TORA IN MANET Dr. R. Shanmugavadivu 1, B. Chitra 2 1 Assistant Professor, Department of Computer

More information

Exploring the Behavior of Mobile Ad Hoc Network Routing Protocols with Reference to Speed and Terrain Range

Exploring the Behavior of Mobile Ad Hoc Network Routing Protocols with Reference to Speed and Terrain Range Exploring the Behavior of Mobile Ad Hoc Network Routing Protocols with Reference to Speed and Terrain Range Asha Ambhaikar and Lokesh Kumar Sharma Abstract a mobile ad hoc network is a collection of autonomous

More information

Relative Performance Analysis of Reactive (on-demand-driven) Routing Protocols

Relative Performance Analysis of Reactive (on-demand-driven) Routing Protocols Relative Performance Analysis of Reactive (on-demand-driven) Routing Protocols Mukesh Kumar Garg, Dr. Ela Kumar Abstract A Mobile Ad Hoc Network (MANET) is a group of wireless mobile computers (or nodes);

More information

Performance Evaluation of AODV and DSR routing protocols in MANET

Performance Evaluation of AODV and DSR routing protocols in MANET Performance Evaluation of AODV and DSR routing protocols in MANET Naresh Dobhal Diwakar Mourya ABSTRACT MANETs are wireless temporary adhoc networks that are being setup with no prior infrastructure and

More information

ROUTE STABILITY MODEL FOR DSR IN WIRELESS ADHOC NETWORKS

ROUTE STABILITY MODEL FOR DSR IN WIRELESS ADHOC NETWORKS ROUTE STABILITY MODEL FOR DSR IN WIRELESS ADHOC NETWORKS Ganga S 1, Binu Chandran R 2 1, 2 Mohandas College Of Engineering And Technology Abstract: Wireless Ad-Hoc Network is a collection of wireless mobile

More information

Measure of Impact of Node Misbehavior in Ad Hoc Routing: A Comparative Approach

Measure of Impact of Node Misbehavior in Ad Hoc Routing: A Comparative Approach ISSN (Print): 1694 0814 10 Measure of Impact of Node Misbehavior in Ad Hoc Routing: A Comparative Approach Manoj Kumar Mishra 1, Binod Kumar Pattanayak 2, Alok Kumar Jagadev 3, Manojranjan Nayak 4 1 Dept.

More information

White Paper. Mobile Ad hoc Networking (MANET) with AODV. Revision 1.0

White Paper. Mobile Ad hoc Networking (MANET) with AODV. Revision 1.0 White Paper Mobile Ad hoc Networking (MANET) with AODV Revision 1.0 This page is intentionally blank, or rather nearly blank. Table of Contents TABLE OF CONTENTS...3 TABLE OF FIGURES...4 WHAT IS MANET?...5

More information

1. Introduction. Abstract

1. Introduction. Abstract Determining a equence of table Multicast teiner Trees in Mobile Ad Hoc Networks Dr. Natarajan Meghanathan nmeghanathan@jsums.edu Jackson tate University, Jackson, M 3927 Abstract We show that given the

More information

Simulation & Performance Analysis of Mobile Ad-Hoc Network Routing Protocol

Simulation & Performance Analysis of Mobile Ad-Hoc Network Routing Protocol Simulation & Performance Analysis of Mobile Ad-Hoc Network Routing Protocol V.S.Chaudhari 1, Prof.P.N.Matte 2, Prof. V.P.Bhope 3 Department of E&TC, Raisoni College of Engineering, Ahmednagar Abstract:-

More information

Volume 3, Issue 6, June 2015 International Journal of Advance Research in Computer Science and Management Studies

Volume 3, Issue 6, June 2015 International Journal of Advance Research in Computer Science and Management Studies Volume 3, Issue 6, June 2015 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online at: www.ijarcsms.com Analysis

More information

3. Evaluation of Selected Tree and Mesh based Routing Protocols

3. Evaluation of Selected Tree and Mesh based Routing Protocols 33 3. Evaluation of Selected Tree and Mesh based Routing Protocols 3.1 Introduction Construction of best possible multicast trees and maintaining the group connections in sequence is challenging even in

More information

A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols

A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols By Josh Broch, David A. Maltz, David B. Johnson, Yih- Chun Hu, Jorjeta Jetcheva Presentation by: Michael Molignano Jacob

More information

Computation of Multiple Node Disjoint Paths

Computation of Multiple Node Disjoint Paths Chapter 5 Computation of Multiple Node Disjoint Paths 5.1 Introduction In recent years, on demand routing protocols have attained more attention in mobile Ad Hoc networks as compared to other routing schemes

More information

Appointed BrOadcast (ABO): Reducing Routing Overhead in. IEEE Mobile Ad Hoc Networks

Appointed BrOadcast (ABO): Reducing Routing Overhead in. IEEE Mobile Ad Hoc Networks Appointed BrOadcast (ABO): Reducing Routing Overhead in IEEE 802.11 Mobile Ad Hoc Networks Chun-Yen Hsu and Shun-Te Wang Computer Network Lab., Department of Electronic Engineering National Taiwan University

More information

Performance Comparison of Minimum Hop vs. Minimum Edge Based Multicast Routing under Different Mobility Models for Mobile Ad hoc Networks

Performance Comparison of Minimum Hop vs. Minimum Edge Based Multicast Routing under Different Mobility Models for Mobile Ad hoc Networks Performance Comparison of Minimum Hop vs. Minimum Edge Based Multicast Routing under Different Mobility Models for Mobile Ad hoc Networks Natarajan Meghanathan Associate Professor Department of Computer

More information

Architecture of EHARP Routing Protocols in Ad Hoc Wireless Networks

Architecture of EHARP Routing Protocols in Ad Hoc Wireless Networks 2009 International Conference on Intelligent Networking and Collaborative Systems Architecture of EHARP Routing Protocols in Ad Hoc Wireless Networks Saud Al otaibi Software Technology Research Laboratory

More information

Efficient On-Demand Routing for Mobile Ad-Hoc Wireless Access Networks

Efficient On-Demand Routing for Mobile Ad-Hoc Wireless Access Networks Efficient On-Demand Routing for Mobile Ad-Hoc Wireless Access Networks Joo-Han Song, Vincent W. S. Wong and Victor C. M. Leung Department of Electrical and Computer Engineering The University of British

More information

Performance Comparison of AODV, DSR, DSDV and OLSR MANET Routing Protocols

Performance Comparison of AODV, DSR, DSDV and OLSR MANET Routing Protocols Performance Comparison of AODV, DSR, DSDV and OLSR MANET Routing Protocols Akshay Shankar, Lavanya Chelle Information Science Engineering RNS Institute of Technology Bangalore, India Abstract- A Mobile

More information

A Review of Reactive, Proactive & Hybrid Routing Protocols for Mobile Ad Hoc Network

A Review of Reactive, Proactive & Hybrid Routing Protocols for Mobile Ad Hoc Network ShriRam College of Engineering & Management 1 A Review of Reactive, Proactive & Hybrid Routing Protocols for Mobile Ad Hoc Network M.Ramaiya Rohit Gupta Rachit Jain Head,Dept. Computer Science Dept. Computer

More information

PERFORMANCE OF THE MAXIMUM STABLE CONNECTED DOMINATING SETS IN THE PRESENCE OF STATIC NODES IN A MOBILE ADHOC NETWORK

PERFORMANCE OF THE MAXIMUM STABLE CONNECTED DOMINATING SETS IN THE PRESENCE OF STATIC NODES IN A MOBILE ADHOC NETWORK PERFORMANCE OF THE MAXIMUM STABLE CONNECTED DOMINATING SETS IN THE PRESENCE OF STATIC NODES IN A MOBILE ADHOC NETWORK Natarajan Meghanathan Jackson State University, 1400 Lynch St, Jackson, MS, USA ABSTRACT

More information

A Survey - Energy Efficient Routing Protocols in MANET

A Survey - Energy Efficient Routing Protocols in MANET , pp. 163-168 http://dx.doi.org/10.14257/ijfgcn.2016.9.5.16 A Survey - Energy Efficient Routing Protocols in MANET Jyoti Upadhyaya and Nitin Manjhi Department of Computer Science, RGPV University Shriram

More information

Mobility and Density Aware AODV Protocol Extension for Mobile Adhoc Networks-MADA-AODV

Mobility and Density Aware AODV Protocol Extension for Mobile Adhoc Networks-MADA-AODV Journal of Computer Science 8 (1): 13-17, 2012 ISSN 1549-3636 2011 Science Publications Mobility and Density Aware AODV Protocol Extension for Mobile Adhoc Networks-MADA-AODV 1 S. Deepa and 2 G.M. Kadhar

More information

Mitigating Superfluous Flooding of Control Packets MANET

Mitigating Superfluous Flooding of Control Packets MANET Mitigating Superfluous Flooding of Control Packets MANET B.Shanmugha Priya 1 PG Student, Department of Computer Science, Park College of Engineering and Technology, Kaniyur, Coimbatore, India 1 Abstract:

More information

6. Node Disjoint Split Multipath Protocol for Unified. Multicasting through Announcements (NDSM-PUMA)

6. Node Disjoint Split Multipath Protocol for Unified. Multicasting through Announcements (NDSM-PUMA) 103 6. Node Disjoint Split Multipath Protocol for Unified Multicasting through Announcements (NDSM-PUMA) 6.1 Introduction It has been demonstrated in chapter 3 that the performance evaluation of the PUMA

More information

ENERGY EFFICIENT MULTIPATH ROUTING FOR MOBILE AD HOC NETWORKS

ENERGY EFFICIENT MULTIPATH ROUTING FOR MOBILE AD HOC NETWORKS ENERGY EFFICIENT MULTIPATH ROUTING FOR MOBILE AD HOC NETWORKS May Cho Aye and Aye Moe Aung Faculty of Information and Communication Technology, University of Technology (Yatanarpon Cyber City), Pyin Oo

More information

EZR: Enhanced Zone Based Routing In Manet

EZR: Enhanced Zone Based Routing In Manet EZR: Enhanced Zone Based Routing In Manet Bency Wilson 1, Geethu Bastian 2, Vinitha Ann Regi 3, Arun Soman 4 Department of Information Technology, Rajagiri School of Engineering and Technology, Rajagiri

More information

Low Overhead Geometric On-demand Routing Protocol for Mobile Ad Hoc Networks

Low Overhead Geometric On-demand Routing Protocol for Mobile Ad Hoc Networks Low Overhead Geometric On-demand Routing Protocol for Mobile Ad Hoc Networks Chang Su, Lili Zheng, Xiaohai Si, Fengjun Shang Institute of Computer Science & Technology Chongqing University of Posts and

More information

A COMPARISON OF IMPROVED AODV ROUTING PROTOCOL BASED ON IEEE AND IEEE

A COMPARISON OF IMPROVED AODV ROUTING PROTOCOL BASED ON IEEE AND IEEE Journal of Engineering Science and Technology Vol. 4, No. 2 (2009) 132-141 School of Engineering, Taylor s University College A COMPARISON OF IMPROVED AODV ROUTING PROTOCOL BASED ON IEEE 802.11 AND IEEE

More information

Mobile Ad Hoc Network Routing Protocols: A Comparative Study

Mobile Ad Hoc Network Routing Protocols: A Comparative Study Mobile Ad Hoc Network Routing Protocols: A Comparative Study Charu Wahi 1, Sanjay Kumar Sonbhadra 2 1 Birla institute of Technology, Noida, India charu@bitmesra.ac.in 2 Shri Shankracharya Institute of

More information

2013, IJARCSSE All Rights Reserved Page 85

2013, IJARCSSE All Rights Reserved Page 85 Volume 3, Issue 12, December 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Overview of

More information

Experiment and Evaluation of a Mobile Ad Hoc Network with AODV Routing Protocol

Experiment and Evaluation of a Mobile Ad Hoc Network with AODV Routing Protocol Experiment and Evaluation of a Mobile Ad Hoc Network with AODV Routing Protocol Kalyan Kalepu, Shiv Mehra and Chansu Yu, Department of Electrical and Computer Engineering Cleveland State University 2121

More information

arxiv: v1 [cs.ni] 26 Sep 2016

arxiv: v1 [cs.ni] 26 Sep 2016 On-Demand Routing Algorithm with Mobility Prediction in the Mobile Ad-hoc Networks Trung Kien Vu, Sungoh Kwon School of Electrical Engineering University of Ulsan Ulsan, Korea, 680-749 arxiv:1609.08141v1

More information

Performance Evaluation of Routing Protocols for MAC Layer Models

Performance Evaluation of Routing Protocols for MAC Layer Models IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 10, Issue 4 (Mar. - Apr. 2013), PP 71-77 Performance Evaluation of Routing Protocols for MAC Layer Models Somya

More information

A Location-based Directional Route Discovery (LDRD) Protocol in Mobile Ad-hoc Networks

A Location-based Directional Route Discovery (LDRD) Protocol in Mobile Ad-hoc Networks A Location-based Directional Route Discovery (LDRD) Protocol in Mobile Ad-hoc Networks Stephen S. Yau, Wei Gao, and Dazhi Huang Dept. of Computer Science and Engineering Arizona State University Tempe,

More information

Evaluation of Ad-hoc Routing Protocols with. Different Mobility Models for Warfield. Scenarios

Evaluation of Ad-hoc Routing Protocols with. Different Mobility Models for Warfield. Scenarios Contemporary Engineering Sciences, Vol. 7, 2014, no. 12, 559-567 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2014.4436 Evaluation of Ad-hoc Routing Protocols with Different Mobility Models

More information

Gateway Discovery Approaches Implementation and Performance Analysis in the Integrated Mobile Ad Hoc Network (MANET)-Internet Scenario

Gateway Discovery Approaches Implementation and Performance Analysis in the Integrated Mobile Ad Hoc Network (MANET)-Internet Scenario Gateway Discovery Approaches Implementation and Performance Analysis in the Integrated Mobile Ad Hoc Network (MANET)-Internet Scenario K.Gautham 1, Nagajothi A 2 Student, Computer Science and Engineering,

More information

BRICS: A Building-block approach for analyzing RoutIng protocols in ad hoc networks - a Case Study of reactive routing protocols

BRICS: A Building-block approach for analyzing RoutIng protocols in ad hoc networks - a Case Study of reactive routing protocols BRICS: A Building-block approach for analyzing RoutIng protocols in ad hoc networks - a Case Study of reactive routing protocols Fan Bai, Narayanan Sadagopan, Ahmed Helmy Department of Electrical Engineering,

More information

Effects of Caching on the Performance of DSR Protocol

Effects of Caching on the Performance of DSR Protocol IOSR Journal of Engineering (IOSRJEN) e-issn: 2250-3021, p-issn: 2278-8719, Volume 2, Issue 9 (September 2012), PP 07-11 Effects of Caching on the Performance of DSR Protocol Narinderjeet Kaur 1, Maninder

More information

An Extended AODV Protocol for Multipath Routing in MANETs

An Extended AODV Protocol for Multipath Routing in MANETs IACSIT International Journal of Engineering and Technology, Vol.2, No.4, August 21 An Extended Protocol for Multipath Routing in MANETs N.Jaisankar 1 and R.Saravanan 2 Abstract Mobile ad hoc networks (MANETs)

More information

Link Stability with Energy Aware Ad Hoc on Demand Multipath Routing Protocol in Mobile Ad Hoc Networks

Link Stability with Energy Aware Ad Hoc on Demand Multipath Routing Protocol in Mobile Ad Hoc Networks American Journal of Applied Sciences 10 (8): 844-848, 2013 ISSN: 1546-9239 2013 Tamilarasan and Eswariah, This open access article is distributed under a Creative Commons Attribution (CC-BY) 3.0 license

More information

Efficient Hybrid Multicast Routing Protocol for Ad-Hoc Wireless Networks

Efficient Hybrid Multicast Routing Protocol for Ad-Hoc Wireless Networks Efficient Hybrid Multicast Routing Protocol for Ad-Hoc Wireless Networks Jayanta Biswas and Mukti Barai and S. K. Nandy CAD Lab, Indian Institute of Science Bangalore, 56, India {jayanta@cadl, mbarai@cadl,

More information

Routing in Ad Hoc Wireless Networks PROF. MICHAEL TSAI / DR. KATE LIN 2014/05/14

Routing in Ad Hoc Wireless Networks PROF. MICHAEL TSAI / DR. KATE LIN 2014/05/14 Routing in Ad Hoc Wireless Networks PROF. MICHAEL TSAI / DR. KATE LIN 2014/05/14 Routing Algorithms Link- State algorithm Each node maintains a view of the whole network topology Find the shortest path

More information

Expanding Ring Search for Route Discovery in LOADng Routing Protocol

Expanding Ring Search for Route Discovery in LOADng Routing Protocol Expanding Ring Search for Route Discovery in LOADng Routing Protocol Antonin Bas, Jiazi Yi, Thomas Clausen Laboratoire d Informatique (LIX) Ecole Polytechnique, France) antonin@antonin-bas.fr, jiazi@jiaziyi.com,

More information

Performance Evaluation of Various Routing Protocols in MANET

Performance Evaluation of Various Routing Protocols in MANET 208 Performance Evaluation of Various Routing Protocols in MANET Jaya Jacob 1,V.Seethalakshmi 2 1 II MECS,Sri Shakthi Institute of Science and Technology, Coimbatore, India 2 Associate Professor-ECE, Sri

More information

6367(Print), ISSN (Online) Volume 4, Issue 2, March April (2013), IAEME & TECHNOLOGY (IJCET)

6367(Print), ISSN (Online) Volume 4, Issue 2, March April (2013), IAEME & TECHNOLOGY (IJCET) INTERNATIONAL International Journal of Computer JOURNAL Engineering OF COMPUTER and Technology ENGINEERING (IJCET), ISSN 0976- & TECHNOLOGY (IJCET) ISSN 0976 6367(Print) ISSN 0976 6375(Online) Volume 4,

More information

A Novel Rebroadcast Technique for Reducing Routing Overhead In Mobile Ad Hoc Networks

A Novel Rebroadcast Technique for Reducing Routing Overhead In Mobile Ad Hoc Networks IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 12, Issue 6 (Jul. - Aug. 2013), PP 01-09 A Novel Rebroadcast Technique for Reducing Routing Overhead In Mobile

More information

CROSS LAYER USING END-TO-END DELAY ASSESSMENT FOR ROUTING PROTOCOL IN VEHICULAR AD HOC NETWORK

CROSS LAYER USING END-TO-END DELAY ASSESSMENT FOR ROUTING PROTOCOL IN VEHICULAR AD HOC NETWORK CROSS LAYER USING END-TO-END DELAY ASSESSMENT FOR ROUTING PROTOCOL IN VEHICULAR AD HOC NETWORK Le Van Minh a,b, Yang MingChuan a, and Guo Qing a a Communication research center, Harbin Institute of Technology,

More information

Outline. CS5984 Mobile Computing. Taxonomy of Routing Protocols AODV 1/2. Dr. Ayman Abdel-Hamid. Routing Protocols in MANETs Part I

Outline. CS5984 Mobile Computing. Taxonomy of Routing Protocols AODV 1/2. Dr. Ayman Abdel-Hamid. Routing Protocols in MANETs Part I CS5984 Mobile Computing Dr. Ayman Abdel-Hamid Computer Science Department Virginia Tech Part I Outline Routing Protocols for Ad hoc Networks Example of a reactive routing protocol AODV: Ad hoc On-demand

More information

An Efficient Approach against Rushing Attack in MANET

An Efficient Approach against Rushing Attack in MANET An Efficient Approach against Rushing Attack in MANET Ankita Rathore 1, Dr. Rajiv Srivastava 2 M.Tech. Scholar, Department of Computer Science,SIRT-E, RGPV Bhopal, MP 462033,India 1 Director, SIRT-E BHOPAL,MP

More information

Impulse Radio Ultra Wide Band Based Mobile Adhoc Network Routing Performance Analysis

Impulse Radio Ultra Wide Band Based Mobile Adhoc Network Routing Performance Analysis American Journal of Applied Sciences, 10 (4): 361-366, 2013 ISSN: 1546-9239 2013 Sreedhar and Venkatesh, This open access article is distributed under a Creative Commons Attribution (CC-BY) 3.0 license

More information

Throughput Analysis of Many to One Multihop Wireless Mesh Ad hoc Network

Throughput Analysis of Many to One Multihop Wireless Mesh Ad hoc Network Throughput Analysis of Many to One Multihop Wireless Mesh Ad hoc Network Dr.S.Senthil Kumar,Assistant Professor, Dept of Electrical and Electronics Engineering, Government College of Engineering, Salem,India

More information

Speed Performance of Intelligent Ant Sense Routing Protocol for Mobile Ad-Hoc Personal Area Network

Speed Performance of Intelligent Ant Sense Routing Protocol for Mobile Ad-Hoc Personal Area Network International Journal of Computer Science and Telecommunications [Volume 4, Issue 10, October 2013] 41 ISSN 2047-3338 Speed Performance of Intelligent Ant Sense Routing Protocol for Mobile Ad-Hoc Personal

More information

Maharishi Markandeshwar University

Maharishi Markandeshwar University RESEARCH ARTICLE OPEN ACCESS Simulation Based Performance Comparison of Adhoc Routing Protocols Kushagra Agrawal*, Shaveta Jain** *Department of Computer Science,, Mullana, Ambala agrawal_kushagra@rediffmail.com

More information

IMPACT OF THE OPTIMUM ROUTING AND LEAST OVERHEAD ROUTING APPROACHES ON MINIMUM HOP ROUTES AND CONNECTED DOMINATING SETS IN MOBILE AD HOC NETWORKS

IMPACT OF THE OPTIMUM ROUTING AND LEAST OVERHEAD ROUTING APPROACHES ON MINIMUM HOP ROUTES AND CONNECTED DOMINATING SETS IN MOBILE AD HOC NETWORKS IMPACT OF THE OPTIMUM ROUTING AND LEAST OVERHEAD ROUTING APPROACHES ON MINIMUM HOP ROUTES AND CONNECTED DOMINATING SETS IN MOBILE AD HOC NETWORKS Natarajan Meghanathan Jackson State University, 1400 Lynch

More information

Performance Evaluation of AODV and DSDV Routing Protocol in wireless sensor network Environment

Performance Evaluation of AODV and DSDV Routing Protocol in wireless sensor network Environment 2012 International Conference on Computer Networks and Communication Systems (CNCS 2012) IPCSIT vol.35(2012) (2012) IACSIT Press, Singapore Performance Evaluation of AODV and DSDV Routing Protocol in wireless

More information

IMPACT OF STATIC NODES AND PAUSE TIME ON THE STABILITY OF CONNECTED DOMINATING SETS IN A MOBILE AD HOC NETWORK

IMPACT OF STATIC NODES AND PAUSE TIME ON THE STABILITY OF CONNECTED DOMINATING SETS IN A MOBILE AD HOC NETWORK IMPACT OF STATIC NODES AND PAUSE TIME ON THE STABILITY OF CONNECTED DOMINATING SETS IN A MOBILE AD HOC NETWORK Natarajan Meghanathan Jackson State University, 1400 Lynch St, Jackson, MS, USA ABSTRACT The

More information

Dynamic AODV Backup Routing in Dense Mobile Ad-Hoc Networks *

Dynamic AODV Backup Routing in Dense Mobile Ad-Hoc Networks * Dynamic AODV Backup Routing in Dense Mobile Ad-Hoc Networks * Wen-Tsuen Chen and Wei-Ting Lee Department of Computer Science, National Tsing Hua University, Hsin-Chu, Taiwan 300, ROC Tel:+886-3-5742896

More information

Routing Protocols in Mobile Ad-Hoc Network

Routing Protocols in Mobile Ad-Hoc Network International Journal of Computer Science & Management Studies, Vol. 12, Issue 02, April 2012 Protocols in Mobile Ad-Hoc Network Sachin Minocha M. Tech Student, Vaish College of Engineering, Rohtak, Haryana

More information

A SURVEY OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKS

A SURVEY OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKS Journal homepage: www.mjret.in ISSN:2348-6953 A SURVEY OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKS Ms. Amruta Kodole 1, Prof. P. M. Agarkar 2 Computer Engineering Dr. D. Y. Patil School Of Engineering

More information

Performance Analysis and Enhancement of Routing Protocol in Manet

Performance Analysis and Enhancement of Routing Protocol in Manet Vol.2, Issue.2, Mar-Apr 2012 pp-323-328 ISSN: 2249-6645 Performance Analysis and Enhancement of Routing Protocol in Manet Jaya Jacob*, V.Seethalakshmi** *II MECS, Sri Shakthi Institute of Engineering and

More information

Minimizing the Routing Delay in Ad Hoc Networks through Route-Cache TTL Optimization

Minimizing the Routing Delay in Ad Hoc Networks through Route-Cache TTL Optimization Minimizing the Routing Delay in Ad Hoc Networks through Route-Cache TTL Optimization Ben Liang and Zygmunt J. Haas School of Electrical and Computer Engineering, Cornell University, Ithaca, NY 14853, USA

More information

Energy and Power Aware Stable Routing Strategy for Ad hoc Wireless Networks based on DSR

Energy and Power Aware Stable Routing Strategy for Ad hoc Wireless Networks based on DSR Energy and Power Aware Stable Routing Strategy for Ad hoc Wireless Networks based on Mr. Nirav Bhatt, Dr. Dhaval Kathiriya Reaserch Scholar, School of Computer Science, RK University, Rajkot Director IT,

More information

ESAR: An Energy Saving Ad Hoc Routing Algorithm for MANET

ESAR: An Energy Saving Ad Hoc Routing Algorithm for MANET : An Energy Saving Ad Hoc Routing Algorithm for MANET Utkarsh 1, Mukesh Mishra 2 and Suchismita Chinara 3 Department of Computer Science and Engineering, National Institute of Technology Rourkela, Rourkela,

More information