The Ad Hoc On-Demand Distance-Vector Protocol: Quality of Service Extensions

Size: px
Start display at page:

Download "The Ad Hoc On-Demand Distance-Vector Protocol: Quality of Service Extensions"

Transcription

1 The Ad Hoc On-Demand Distance-Vector Protocol: Quality of Service Extensions Jani Lakkakorpi Nokia Research Center Abstract Ad Hoc On-Demand Distance-Vector routing protocol provides fast and efficient route establishment between mobile nodes that need to communicate with each other. Since AODV has been specifically designed for ad hoc wireless networks, it has minimal control overhead and route acquisition latency. In addition to unicast routing, AODV supports multicast and broadcast as well. Moreover, AODV can be extended to support Quality of Service (QoS). The goal of this paper is to take a closer look at these QoS extensions. Since the QoS extensions are relatively new concept, it is not that clear yet how to properly utilize them. They may introduce some problems as well. 1 Introduction Ad hoc networks can be defined, for example, as networks that come together as needed even without any assistance from the existing Internet infrastructure [1]. Internet Engineering Task Force (IETF) has an official charter on Mobile Ad-hoc Networks (manet) [2]. The Ad Hoc On-Demand Distance-Vector routing protocol (AODV) has its roots in Destination- Sequenced Distance-Vector (DSDV) routing protocol [3]. However, AODV has been designed specifically for ad hoc wireless networks. AODV provides fast route establishment and minimal control overhead. The system-wide broadcasts have been minimized from those of DSDV [1]. built only when they are requested by originator nodes. Routes are maintained only as long as originators need them. Multicast mode is supported by forming trees composed of multicast group members and intermediate nodes that are needed to connect the group members. In order to ensure route validity, AODV uses sequence numbers (just like DSDV [3]). AODV is loop-free, self-starting and scales to very large numbers of mobile nodes [4]. The basics of AODV s unicast routing mode are described according to presentations in the following references: [1, 4, 5, 6]. As stated before, route discovery in AODV is done on demand and it follows a route request / route reply discovery cycle. Whenever a route is needed between two nodes, the originator node broadcasts a route request (RREQ, see Figure 4) across the network. Nodes that receive this RREQ will update their information for the originator node in question and set up backward pointers to the originator node in their route tables (reverse route is set up in order to forward a RREP packet back to the originator from the destination or from an intermediate node having a route to the destination [6]). This paper is organized as follows: section 2 describes the basic properties of AODV (mainly concentrating on unicast routing), section 3 focuses on the Quality of Service extensions, section 4 gives some performance figures and section 5 includes some conclusions. 2 AODV Properties AODV is a routing protocol designed especially for ad hoc mobile networks. In addition to unicast routing, AODV supports multicasting. AODV is an on-demand algorithm, which means that routes between nodes are Figure 1: RREQ propagation

2 RREQ contains the most recent Destination Sequence Number of which the originator node is aware. A node that receives the RREQ message may unicast a route reply (RREP, see Figure 5) back to the originator node if: (1) it is the destination or (2) if it has a fresh enough route to the destination (corresponding sequence number greater than or equal to that contained in the RREQ). Otherwise, the node will rebroadcast the RREQ. All nodes keep track of those RREQs they have already seen (Originator IP Address RREQ ID pair). If the same RREQ is received again, it is silently discarded. - Routing Flags Figure 3: Route maintenance Figure 2: Reverse route entries As the RREP propagates back to the originator node, all nodes along the path set up forward pointers to the destination node (a forward route is set up to send data packets from a node originating the route discovery operation towards its desired destination [6]). Once the originator node receives the RREP, it will be able to send data packets to the destination node. If the originator node later happens to receive a RREP containing a greater sequence number or a RREP with the same sequence number but a smaller hop count, it may update its routing information for that destination and start using the better route. Each route table entry includes the following fields: - Destination IP Address - Destination Sequence Number - Interface - Hop Count (number of hops to destination) - Last Hop Count (the Hop Count indicated in the RREP packet is stored as the Last Hop Count in the route table; see [6] for details) - Next Hop - List of Precursors (contains the IP addresses for neighbors that are likely to use this node as a next hop towards the destination that is now unreachable) - Lifetime (expiration or deletion time of the route) Routes are maintained as long as they remain active (as long as there is frequent enough data traffic to the destination). When traffic to a destination stops, the route will time out and eventually it will be deleted from the route table. If a link break occurs while the route is still active, a route error (RERR, see Figure 6) message to the originator node is sent by the node that is closer to originator node. RERR message includes information on the now unreachable destinations. If the originator node still needs routes to these destinations, it can reinitiate route discovery. 3 QoS Extensions to AODV AODV is one of the few ad hoc routing protocols that are able to provide some sort of Quality of Service (QoS) guarantees at least on paper. It seems that there are no (public) AODV implementations that would realize the proposed QoS features. (At least we did not find any.) However, there are more and more new applications that might benefit from these QoS guarantees. For example, guaranteed maximum delay and jitter might be very useful for Voice over IP (VoIP) also in mobile ad hoc networks. In order to provide QoS, certain extensions can be added to the messages that are used for route discovery. A node which receives a RREQ message with a QoS extension must be able to meet the given service requirement in order to either rebroadcast the RREQ message (if the node does not have a route to the destination) or unicast a RREP message back to the originator. If, after route establishment, any node along the path detects that the requested QoS parameters cannot be maintained anymore, that node must send an ICMP QOS_LOST message back to the node, which originally requested these parameters.

3 Type J R G Reserved Hop Count RREQ ID Destination IP Address Destination Sequence Number Originator IP Address Originator Sequence Number Figure 4: RREQ message format [6] Type R A Reserved Prefix Sz Hop Count Destination IP Address Destination Sequence Number Originator IP Address Lifetime Figure 5: RREP message format [6] Type N Reserved DestCount Unreachable Destination IP Address (1) Unreachable Destination Sequence Number (1) Additional Unreachable Destination IP Addresses (if needed) Additional Unreachable Destination Sequence Numbers (if needed) The old Internet Draft on QoS extensions to AODV has already expired (14 January 2001), and the new version does not have manet working group document status yet [2]. However, Internet Draft search finds the new version (see also the manet mailing list archive from December 2001 [10]). The latest Internet Draft on QoS extensions to AODV [9] defines QoS Object extension, which includes bandwidth and delay parameters. In order to enable accumulated measurement for end-to-end delay, this draft also provides a Maximum Permissible Delay extension. If, after establishment of a QoS route, any node along the path detects that the requested QoS parameters cannot be Figure 6: RERR message format [6] maintained anymore, that node has to originate an ICMP QOS_LOST message back to the node, which had originally requested these parameters. In order to support QoS routing, extensions are needed in the route table structure and the RREQ and RREP messages. These extensions conform to the format defined for extensions to RREQ and RREP messages. 3.1 Route Table Extensions The following fields are added to each route table entry corresponding to each destination: Maximum Delay Minimum Available Bandwidth

4 List of Originators Requesting Delay Guarantees List of Originators Requesting Bandwidth Guarantees 3.2 QoS Object Format The QoS information about a microflow can be encoded into a standard format illustrated in Figure 7. This standard format allows complete flexibility for specification of arbitrary values for various QoS requirements. It also allows compact representation, especially for well-known requirements for common applications. The standard object format is used as the main part of the QoS Object Extension (see Figure 8). The fields of QoS Object have the following meanings: Reservd: Sent as zero, unused and undefined on reception. QoS Profile Type: If set to zero, the fields are as listed below in this section, and there are no default values. Otherwise, an index for a list of QoS parameter field definitions and default values for those fields. NNNNN: If QoS Profile Type is zero, this bit is not defined to be part of the QoS Object format. Otherwise, when the N bit is set, the next 31 bits are part of Non-Default Values. Non-Default Values: A bit vector with one bit for each field parameter field defined for the particular QoS Profile Type number. QoS Parameter Fields: Defined in accordance with the QoS Profile Type. For QoS Profile Type zero, the following parameter fields are defined: Capacity Requirement: 32-bit number [bps]. Maximum Permissible Delay: 16-bit number [ms]. Maximum Permissible Jitter: 16-bit number [ms]. Traffic Class: According to Differentiated Services Code Points. 3.3 QoS Object Extension Format A node originating a RREQ message may append a QoS Object extension to the RREQ in order to find a path that satisfies the QoS parameters in the QoS Object. If a delay parameter is specified (either explicitly or implicitly by a default value for some QoS Profile type) the originating node also has to append a Maximum Delay Extension (see Figure 9) for use of the intermediate nodes that need to accumulate the expected value for delay across various candidate paths. Likewise, if an originating node specifies a maximum value for allowable jitter as part of the QoS parameter data, the node has to append a Maximum Jitter Extension after the QoS Object extension. 3.4 Maximum Delay & Jitter Extension Formats The Maximum Delay and Jitter Extensions (see Figure 9 and Figure 10) can only be added to RREQ messages that contain the QoS Object extension. They provide information about the cumulative delay and jitter along the path from the originating node to the node currently processing the RREQ Delay and Jitter fields indicate the current estimates of cumulative delay and jitter from the originating node up to the intermediate node retransmitting the RREQ on behalf of the originating node. The Maximum Delay and Jitter Extensions can be appended to a RREQ by a node requesting a QoS route in order to measure the existing delay or jitter from the originating node. The goal is to check whether the path can still meet the required Maximum Delay or Jitter specification within the QoS Object data. Before forwarding the RREQs, intermediate nodes have to compare their NODE_TRAVERSAL_TIME or approximate jitter to the (remaining) Delay or Jitter indicated in the Maximum Delay/Jitter Extension. If the Delay/Jitter is less, the node has to discard the RREQ message. Otherwise, the node subtracts the value of NODE_TRAVERSAL_TIME or its estimated jitter from the Delay or Jitter value in the extension and continues processing the RREQ message. A node forwarding a RREP message also has to store the Originator IP Address in the RREP to the list of originator nodes that have requested delay or jitter guarantees to the corresponding destination. These originators will be notified with an ICMP QOS_LOST message if there is a change in NODE_TRAVERSAL_TIME or jitter experienced at this node. 3.5 ICMP QOS LOST Message An ICMP QOS_LOST message is generated when an intermediate node experiences a significant change in its ability to provide to the QoS guarantees it has made as part of generating a RREP during the QoS Route Discovery process. Destination IP Address in ICMP QOS_LOST message (see Figure 11) is the address of the destination node using the link for which there has been a change in some QoS parameter. This message is extended using the QoS Object Extension (see Figure 8). Typically, QoS Profile Type

5 zero is used, including the actual measured parameter, which fails to meet some previously requested QoS. For example, the Minimum Bandwidth field is used when capacity of some link decreases. The ICMP_QOS_LOST message is forwarded to all originator nodes that might be affected by the change in the QoS parameter value; i.e., those originators to which a RREP with a QoS extension has been forwarded before. As stated before, these originators are recorded in a list as a part of the route table entry. 4 AODV Performance References [11, 12] Performance Comparison of Two On-Demand Routing Protocols for Ad Hoc Networks (same paper, different versions) shed some light on the performance of AODV protocol. AODV s performance was compared to that of Dynamic Source Routing (DSR) using detailed simulation models. The authors demonstrate that even though DSR and AODV share similar on-demand behavior, their differences can lead to significant differences in performance. One of the main results of these simulations was that for application-oriented metrics like delay and throughput, DSR outperforms AODV in less loaded situations (50 nodes and lower mobility). On the other hand, AODV outperformed DSR in more loaded (100 nodes and higher mobility) situations. DSR, however, consistently generates less routing load than AODV. One can try to verify these results, for example, with the Network Simulator (ns-2) [13] or GloMoSim [14] Reservd QoS Profile Type :N: Non-Default Values Bit Vector :N Additional Non-Default Values Bit Vector (if present) : : QoS fields with non-default values (if present) : Figure 7: QoS object format Type (TBD) Length (var.) QoS Object (variable)... : Figure 8: QoS object extension format Type (TBD) Length (2) Delay Figure 9: Maximum delay extension format Type (TBD) Length (2) Jitter Figure 10: Maximum jitter extension format Type (8) Destination IP Address Figure 11: ICMP QoS Lost message format

6 5 IETF Status & Conclusions The latest AODV base specification (draft-ietf-manetaodv-10.txt) was published in January 2002 [6]. The changes include the following: In RREQ & RREP message formats: changed the Source IP Address field to be Originator IP Address. In RREQ message format: changed the Source Sequence Number' field to be Originator Sequence Number. The lifetime for the route to the next hop towards a destination should be updated when a data packet is forwarded to that node. It seems that this draft might soon become an experimental RFC. It can also be expected that at least DSR would gain the RFC status [15]. The status of the other Internet Drafts on AODV is the following: draft-ietf-manet-bcast-00.txt (flooding): expires 14 May 2002 draft-perkins-manet-aodvqos-00.txt (QoS ext.): not a manet working group document yet, expires 14 May 2002 draft-perkins-manet-aodv6-01.txt (IPv6): expired draft-ietf-manet-maodv-00.txt (multicast): expired Mobile ad hoc networks will surely gain popularity if Internet connectivity could be provided. Internet Drafts Global Connectivity for IPv4 Mobile Ad hoc Networks [16] and Global Connectivity for IPv6 Mobile Ad hoc Networks [17] give descriptions how to do this using e.g., AODV and Mobile IP. Some of the recent developments in AODV (and ad hoc routing protocols in general) include multipath routing. For example, [18] proposes an AODV-based routing protocol that establishes multiple paths for a route discovery procedure. This should save bandwidth and reduce route reconstruction times when routes fail. QoS extensions of AODV may result into better performance, but intermediate nodes modifying the packet, however, may introduce a serious problem with IPSEC. It may be possible that IPSEC cannot be used with these QoS extensions [19]. Moreover, it seems that there are no (public) AODV implementations that would support the proposed QoS extensions. However, this will most probably change in the near future as QoS becomes increasingly popular. 6 References [1] Charles E. Perkins (editor): Ad Hoc Networking, 2001, Addison-Wesley, ISBN [2] Mobile Ad-hoc Networks (manet) charter, [3] Charles E. Perkins, P. Bhagwat: Highly Dynamic Destination-Sequenced Distance-Vector Routing (DSDV) for Mobile Computers, ACM SIGCOMM '94 Computer Communications Review 24 (4), pp , October [4] Elizabeth M. Belding-Royer s AODV page, March 2002, [5] Charles E. Perkins and Elizabeth M. Royer: Ad hoc On-Demand Distance Vector Routing, Proceedings of the 2nd IEEE Workshop on Mobile Computing Systems and Applications, New Orleans, LA, February 1999, pp [6] Charles E. Perkins, Elizabeth M. Belding-Royer, and Samir Das: Ad Hoc On-Demand Distance Vector (AODV) Routing, IETF Internet draft, draft-ietf-manet-aodv-10.txt, January 2002 (Work in Progress), [7] Elizabeth M. Royer and Charles E. Perkins: Multicast Operation of the Ad hoc On-Demand Distance Vector Routing Protocol, Proceedings of MobiCom '99, Seattle, WA, August 1999, pp [8] Charles E. Perkins, Elizabeth M. Royer, and Samir R. Das: IP Flooding in Ad hoc Mobile Networks, IETF Internet Draft, draft-ietf-manet-bcast-00.txt, November 2001 (Work in Progress), [9] Charles E. Perkins and Elizabeth M. Royer: Quality of Service in Ad hoc On-Demand Distance Vector Routing, IETF Internet Draft, draft-perkinsmanet-aodvqos-00.txt, November 2001 (Work in Progress), [10] Elizabeth M. Belding-Royer: New/Revised Internet Drafts (December 3, 2001), manet mailing list archive of December 2001, ftp://manet.itd.nrl.navy.mil/pub/manet/ mail. [11] Samir R. Das, Charles E. Perkins, Elizabeth M. Royer and Mahesh K. Marina: Performance Comparison of Two On-demand Routing Protocols for Ad hoc Networks, IEEE Personal Communications Magazine special issue on Ad hoc Networking, February 2001, p [12] Samir R. Das, Charles E. Perkins, and Elizabeth M. Royer: Performance Comparison of Two Ondemand Routing Protocols for Ad Hoc Networks, Proceedings of the IEEE Conference on Computer Communications (INFOCOM), Tel Aviv, Israel, March 2000, p

7 [13] UCB/LBNL/VINT, Network Simulator ns2, March [14] GloMoSim Global Mobile Information Systems Simulation Library, [15] manet WG session of the 53rd IETF, Minneapolis, Minnesota, USA, March 17-22, [16] Elizabeth M. Belding-Royer, Yuan Sun, and Charles E. Perkins: Global Connectivity for IPv4 Mobile Ad hoc Networks, IETF Internet Draft, draft-royermanet-globalv4-00.txt, November 2001 (Work in Progress), [17] Ryuji Wakikawa, Jari T. Malinen, Charles E. Perkins, Anders Nilsson, and Antti J. Tuominen: Global Connectivity for IPv6 Mobile Ad hoc Networks, IETF Internet Draft, draft-wakikawamanet-globalv6-00.txt, November 2001 (Work in Progress), [18] Ming-Hong Jiang, Rong-Hong Jan and Chu-Fu Wang: An Efficient Multiple-Path Routing Protocol for Ad Hoc Networks, Computer Communications 25 (2002), pp [19] Pekka Savola: [manet] AODV QoS incompatible with IPSEC (April 7, 2002), manet mailing list archive of April 2002,

COMPARATIVE ANALYSIS OF ON -DEMAND MOBILE AD-HOC NETWORK

COMPARATIVE ANALYSIS OF ON -DEMAND MOBILE AD-HOC NETWORK www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 2 Issue 5 May, 2013 Page No. 1680-1684 COMPARATIVE ANALYSIS OF ON -DEMAND MOBILE AD-HOC NETWORK ABSTRACT: Mr.Upendra

More information

Behavior Analysis of TCP Traffic in Mobile Ad Hoc Network using Reactive Routing Protocols

Behavior Analysis of TCP Traffic in Mobile Ad Hoc Network using Reactive Routing Protocols Behavior Analysis of TCP Traffic in Mobile Ad Hoc Network using Reactive Routing Protocols Purvi N. Ramanuj Department of Computer Engineering L.D. College of Engineering Ahmedabad Hiteishi M. Diwanji

More information

Ad hoc On Demand Distance Vector (AODV) Routing Protocol

Ad hoc On Demand Distance Vector (AODV) Routing Protocol Ad hoc On Demand Distance Vector (AODV) Routing Protocol CS: 647 Advanced Topics in Wireless Networks Dr. Baruch Awerbuch & Dr. Amitabh Mishra Department of Computer Science Johns Hopkins 4-1 Reading Chapter

More information

PERFORMANCE ANALYSIS OF AD-HOC ON DEMAND DISTANCE VECTOR FOR MOBILE AD- HOC NETWORK

PERFORMANCE ANALYSIS OF AD-HOC ON DEMAND DISTANCE VECTOR FOR MOBILE AD- HOC NETWORK http:// PERFORMANCE ANALYSIS OF AD-HOC ON DEMAND DISTANCE VECTOR FOR MOBILE AD- HOC NETWORK Anjali Sahni 1, Ajay Kumar Yadav 2 1, 2 Department of Electronics and Communication Engineering, Mewar Institute,

More information

A Comparison Study of Qos Using Different Routing Algorithms In Mobile Ad Hoc Networks

A Comparison Study of Qos Using Different Routing Algorithms In Mobile Ad Hoc Networks A Comparison Study of Qos Using Different Routing Algorithms In Mobile Ad Hoc Networks T.Chandrasekhar 1, J.S.Chakravarthi 2, K.Sravya 3 Professor, Dept. of Electronics and Communication Engg., GIET Engg.

More information

Study And Comparison Of Mobile Ad-Hoc Networks Using Ant Colony Optimization

Study And Comparison Of Mobile Ad-Hoc Networks Using Ant Colony Optimization Study And Comparison Of Mobile Ad-Hoc Networks Using Ant Colony Optimization 1 Neha Ujala Tirkey, 2 Navendu Nitin, 3 Neelesh Agrawal, 4 Arvind Kumar Jaiswal 1 M. Tech student, 2&3 Assistant Professor,

More information

Performance Evaluation of AODV, OLSR Routing Protocol in VOIP Over Ad Hoc

Performance Evaluation of AODV, OLSR Routing Protocol in VOIP Over Ad Hoc (International Journal of Computer Science & Management Studies) Vol. 17, Issue 01 Performance Evaluation of AODV, OLSR Routing Protocol in VOIP Over Ad Hoc Dr. Khalid Hamid Bilal Khartoum, Sudan dr.khalidbilal@hotmail.com

More information

Internet Connectivity for Ad hoc Mobile Networks

Internet Connectivity for Ad hoc Mobile Networks Internet Connectivity for Ad hoc Mobile Networks Yuan Sun Elizabeth M. Belding-Royer Department of Computer Science University of California, Santa Barbara suny, ebelding @cs.ucsb.edu Charles E. Perkins

More information

Optimization of AODV routing protocol in mobile ad-hoc network by introducing features of the protocol LBAR

Optimization of AODV routing protocol in mobile ad-hoc network by introducing features of the protocol LBAR Optimization of AODV routing protocol in mobile ad-hoc network by introducing features of the protocol LBAR GUIDOUM AMINA University of SIDI BEL ABBES Department of Electronics Communication Networks,

More information

Simulation of Internet Connectivity for Mobile Ad Hoc Networks in Network Simulator-2

Simulation of Internet Connectivity for Mobile Ad Hoc Networks in Network Simulator-2 Simulation of Internet Connectivity for Mobile Ad Hoc Networks in Network Simulator-2 Sulaiman Khalifa Yakhlef, Ismail Shrena, Nasaraldian Ambark Shashoa Azzaytuna University, Faculty of Engineering Tarhuna

More information

Keywords: DSDV and AODV Protocol

Keywords: DSDV and AODV Protocol 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 Comparison

More information

SIMULATION STUDY OF BLACKHOLE ATTACK IN THE MOBILE AD HOC NETWORKS

SIMULATION STUDY OF BLACKHOLE ATTACK IN THE MOBILE AD HOC NETWORKS Journal of Engineering Science and Technology Vol. 4, No. 2 (2009) 243-250 School of Engineering, Taylor s University College SIMULATION STUDY OF BLACKHOLE ATTACK IN THE MOBILE AD HOC NETWORKS SHEENU SHARMA

More information

Performance Comparison of AODV, DSDV, DSR and TORA Routing Protocols in MANETs

Performance Comparison of AODV, DSDV, DSR and TORA Routing Protocols in MANETs International Research Journal of Applied and Basic Sciences. Vol., 3 (7), 1429-1436, 2012 Available online at http:// www. irjabs.com ISSN 2251-838X 2012 Performance Comparison of AODV, DSDV, DSR and

More information

An Efficient AODV-Based Algorithm for Small Area MANETS

An Efficient AODV-Based Algorithm for Small Area MANETS An Efficient AODV-Based Algorithm for Small Area MANETS Jai Prakash Kumawat 1, Prakriti Trivedi 2 PG Student, Department of Computer Engineering & IT, Government Engineering College, Ajmer, India 1 Assistant

More information

A Comprehensive Analysis on Route Discovery and Maintenance Features of DSDV, AODV and IERF Ad-hoc Routing Protocols

A Comprehensive Analysis on Route Discovery and Maintenance Features of DSDV, AODV and IERF Ad-hoc Routing Protocols International Journal of Computer Sciences and Engineering Open Access Research Paper Volume-4, Issue-2 E-ISSN: 2347-2693 A Comprehensive Analysis on Route Discovery and Maintenance Features of DSDV, AODV

More information

Study of Network Characteristics Incorporating Different Routing Protocols

Study of Network Characteristics Incorporating Different Routing Protocols Study of Network Characteristics Incorporating Different Routing Protocols Sumitpal Kaur #, Hardeep S Ryait *, Manpreet Kaur # # M. Tech Student, Department of Electronics and Comm. Engineering, Punjab

More information

A Study of Internet Connectivity for Mobile Ad Hoc Networks in NS 2

A Study of Internet Connectivity for Mobile Ad Hoc Networks in NS 2 A Study of Internet Connectivity for Mobile Ad Hoc Networks in NS 2 Alex Ali Hamidian January 2003 Department of Communication Systems Lund Institute of Technology, Lund University Box 118 S-221 00 Lund

More information

Formal Measure of the Effect of MANET size over the Performance of Various Routing Protocols

Formal Measure of the Effect of MANET size over the Performance of Various Routing Protocols Formal Measure of the Effect of MANET size over the Performance of Various Routing Protocols Er. Pooja Kamboj Research Scholar, CSE Department Guru Nanak Dev Engineering College, Ludhiana (Punjab) Er.

More information

NetworkPathDiscoveryMechanismforFailuresinMobileAdhocNetworks

NetworkPathDiscoveryMechanismforFailuresinMobileAdhocNetworks Global Journal of Computer Science and Technology: E Network, Web & Security Volume 14 Issue 3 Version 1.0 Year 2014 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals

More information

PERA: Ad-Hoc Routing Protocol for Mobile Robots

PERA: Ad-Hoc Routing Protocol for Mobile Robots PERA: Ad-Hoc Routing Protocol for Mobile Robots Carlos Agüero Vicente Matellán Pedro de-las-heras-quirós José M. Cañas DIET (Departamento de Informática, Estadística y Telemática) Universidad Rey Juan

More information

Position and Velocity Aided Routing Protocol in Mobile Ad Hoc Networks

Position and Velocity Aided Routing Protocol in Mobile Ad Hoc Networks Position and Velocity Aided Routing Protocol in Mobile Ad Hoc Networks 1 Taifei Zhao, 2 Xizheng Ke, 3 Peilin Yang *1,Corresponding Author Department of Electronics Engineering, Xi an University of Technology,

More information

Lecture 2.1 : The Distributed Bellman-Ford Algorithm. Lecture 2.2 : The Destination Sequenced Distance Vector (DSDV) protocol

Lecture 2.1 : The Distributed Bellman-Ford Algorithm. Lecture 2.2 : The Destination Sequenced Distance Vector (DSDV) protocol Lecture 2 : The DSDV Protocol Lecture 2.1 : The Distributed Bellman-Ford Algorithm Lecture 2.2 : The Destination Sequenced Distance Vector (DSDV) protocol The Routing Problem S S D D The routing problem

More information

Performance Analysis of Load Balancing in MANET using On-demand Multipath Routing Protocol

Performance Analysis of Load Balancing in MANET using On-demand Multipath Routing Protocol ISSN: 2278 1323 All Rights Reserved 2014 IJARCET 2106 Performance Analysis of Load Balancing in MANET using On-demand Multipath Routing Protocol Monika Malik, Partibha Yadav, Ajay Dureja Abstract A collection

More information

Keywords- manet, routing protocols, aodv, olsr, grp,data drop parameter.

Keywords- manet, routing protocols, aodv, olsr, grp,data drop parameter. Volume 5, Issue 3, March 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Evaluation of

More information

An Analysis of the Optimum Node Density for Ad hoc Mobile Networks

An Analysis of the Optimum Node Density for Ad hoc Mobile Networks An Analysis of the Optimum Node Density for Ad hoc Mobile Networks Elizabeth M. Royer, P. Michael Melliar-Smith y, and Louise E. Moser y Department of Computer Science y Department of Electrical and Computer

More information

Delay aware Reactive Routing Protocols for QoS in MANETs: a Review

Delay aware Reactive Routing Protocols for QoS in MANETs: a Review Delay aware Reactive Routing Protocols for QoS in MANETs: a Review Saad M. Adam*, Rosilah Hassan Network and Communication Technology Research Group, Faculty of Information Science and Technology, Universiti

More information

Adaptive Multiple Metrics Routing Protocols for Heterogeneous Multi-Hop Wireless Networks

Adaptive Multiple Metrics Routing Protocols for Heterogeneous Multi-Hop Wireless Networks Adaptive Multiple Metrics Routing Protocols for Heterogeneous Multi-Hop Wireless Networks Lijuan Cao Kashif Sharif Yu Wang Teresa Dahlberg Department of Computer Science, University of North Carolina at

More information

`PERFORMANCE COMPARISON OF ENERGY EFFICIENT AODV PROTOCOLS

`PERFORMANCE COMPARISON OF ENERGY EFFICIENT AODV PROTOCOLS `PERFORMANCE COMPARISON OF ENERGY EFFICIENT AODV PROTOCOLS Divya Sharma CSE Dept, ITM Guargoan divya@itmindia.edu Ashwani Kush Computer Dept, University College Kurukshetra University India akush@kuk.ac.in

More information

PERFORMANCE ANALYSIS OF AODV, DSDV AND AOMDV USING WIMAX IN NS-2

PERFORMANCE ANALYSIS OF AODV, DSDV AND AOMDV USING WIMAX IN NS-2 International Journal of Computer Engineering & Technology (IJCET) Volume 7, Issue 1, Jan-Feb 2016, pp. 01-08, Article ID: IJCET_07_01_001 Available online at http://www.iaeme.com/ijcet/issues.asp?jtype=ijcet&vtype=7&itype=1

More information

Quality of Service Routing in Mobile Ad hoc Networks Using Node Mobility and Energy Depletion Parameters

Quality of Service Routing in Mobile Ad hoc Networks Using Node Mobility and Energy Depletion Parameters Quality of Service Routing in Mobile Ad hoc Networks Using Node Mobility and Energy Depletion Parameters S.Prabhakara Rao 1, Dr.E.Nagabhooshanam 2, and S.Ramesh Babu 3 1 Assoc. Professor, Nigama Engineering

More information

ADAPTIVE LINK TIMEOUT WITH ENERGY AWARE MECHANISM FOR ON-DEMAND ROUTING IN MANETS

ADAPTIVE LINK TIMEOUT WITH ENERGY AWARE MECHANISM FOR ON-DEMAND ROUTING IN MANETS ADAPTIVE LINK TIMEOUT WITH ENERGY AWARE MECHANISM FOR ON-DEMAND ROUTING IN MANETS M. Tamilarasi 1, T.G. Palanivelu 2, 1, 2 Department of ECE, Pondicherry Engineering College, Puducherry-605014. Email:

More information

POWER AWARE QOS MULTIPATH ROUTING PROTOCOL FOR DISASTER RECOVERY NETWORKS

POWER AWARE QOS MULTIPATH ROUTING PROTOCOL FOR DISASTER RECOVERY NETWORKS POWER AWARE QOS MULTIPATH ROUTING PROTOCOL FOR DISASTER RECOVERY NETWORKS ABSTRACT S.Santhi 1, Dr.G.Sudha Sadasivam 2 1 Department of Information Technology,Dr.NGP Institute of Technology,Coimbatore,India

More information

An Efficient QoS Routing Protocol for Mobile Ad-Hoc Networks *

An Efficient QoS Routing Protocol for Mobile Ad-Hoc Networks * An Efficient QoS Routing Protocol for Mobile Ad-Hoc Networks * Inwhee Joe College of Information and Communications Hanyang University Seoul, Korea iwj oeshanyang.ac.kr Abstract. To satisfy the user requirements

More information

Routing with Load Balancing in Wireless Ad hoc Networks

Routing with Load Balancing in Wireless Ad hoc Networks Routing with Load Balancing in Wireless Ad hoc Networks Hossam Hassanein and Audrey Zhou Department of Computing and Information Science Queen's University Kingston, Ontario, Canada, K7L 3N6 {hossam, zhou}@cs.queensu.ca

More information

Load-balancing Approach for AOMDV in Ad-hoc Networks R. Vinod Kumar, Dr.R.S.D.Wahida Banu

Load-balancing Approach for AOMDV in Ad-hoc Networks R. Vinod Kumar, Dr.R.S.D.Wahida Banu Load-balancing Approach for AOMDV in Ad-hoc Networks R. Vinod Kumar, Dr.R.S.D.Wahida Banu AP/ECE HOD/ECE Sona College of Technology, GCE, Salem. Salem. ABSTRACT Routing protocol is a challenging issue

More information

IJMIE Volume 2, Issue 7 ISSN: 2249-0558

IJMIE Volume 2, Issue 7 ISSN: 2249-0558 Evaluating Performance of Audio conferencing on Reactive Routing Protocols for MANET Alak Kumar Sarkar* Md. Ibrahim Abdullah* Md. Shamim Hossain* Ahsan-ul-Ambia* Abstract Mobile ad hoc network (MANET)

More information

Robust Routing in Wireless Ad Hoc Networks

Robust Routing in Wireless Ad Hoc Networks Robust Routing in Wireless Ad Hoc Networks Seungjoon Lee, Bohyung Han, Minho Shin {slee, bhhan, mhshin}@cs.umd.edu Computer Science Department University of Maryland College Park, MD 2742 USA Abstract

More information

Micro Mobility and Internet Access Performance for TCP Connections in Ad hoc Networks

Micro Mobility and Internet Access Performance for TCP Connections in Ad hoc Networks Micro Mobility and Internet Access Performance for TCP Connections in Ad hoc Networks Anders Nilsson, Ali Hamidian, Ulf Körner Department of Communication Systems Lund University, Sweden Box118,221Lund

More information

Performance comparison and analysis of routing strategies in Mobile ad hoc networks

Performance comparison and analysis of routing strategies in Mobile ad hoc networks 2008 International Conference on Computer Science and Software Engineering Performance comparison and analysis of routing strategies in Mobile ad hoc networks Fu Yongsheng, Wang Xinyu, Li Shanping Department

More information

VoIP over MANET (VoMAN): QoS & Performance Analysis of Routing Protocols for Different Audio Codecs

VoIP over MANET (VoMAN): QoS & Performance Analysis of Routing Protocols for Different Audio Codecs VoIP over MANET (VoMAN): QoS & Performance Analysis of Routing Protocols for Different Audio Codecs Said El brak Mohammed Bouhorma Anouar A.Boudhir ABSTRACT Voice over IP (VoIP) has become a popular Internet

More information

Abstract. 1 Introduction. Aleksandr Huhtonen Helsinki University of Technology Telecommunication Software and Multimedia Laboratory ahuhtone@cc.hut.

Abstract. 1 Introduction. Aleksandr Huhtonen Helsinki University of Technology Telecommunication Software and Multimedia Laboratory ahuhtone@cc.hut. Comparing AODV and OLSR Routing Protocols Aleksandr Huhtonen Helsinki University of Technology Telecommunication Software and Multimedia Laboratory ahuhtone@cc.hut.fi Abstract An ad hoc wireless network

More information

A Performance Comparison of Routing Protocols for Large-Scale Wireless Mobile Ad Hoc Networks

A Performance Comparison of Routing Protocols for Large-Scale Wireless Mobile Ad Hoc Networks A Performance Comparison of Routing Protocols for Large-Scale Wireless Mobile Ad Hoc Networks Ioannis Broustis Gentian Jakllari Thomas Repantis Mart Molle Department of Computer Science & Engineering University

More information

LIST OF FIGURES. Figure No. Caption Page No.

LIST OF FIGURES. Figure No. Caption Page No. LIST OF FIGURES Figure No. Caption Page No. Figure 1.1 A Cellular Network.. 2 Figure 1.2 A Mobile Ad hoc Network... 2 Figure 1.3 Classifications of Threats. 10 Figure 1.4 Classification of Different QoS

More information

DESIGN AND DEVELOPMENT OF LOAD SHARING MULTIPATH ROUTING PROTCOL FOR MOBILE AD HOC NETWORKS

DESIGN AND DEVELOPMENT OF LOAD SHARING MULTIPATH ROUTING PROTCOL FOR MOBILE AD HOC NETWORKS DESIGN AND DEVELOPMENT OF LOAD SHARING MULTIPATH ROUTING PROTCOL FOR MOBILE AD HOC NETWORKS K.V. Narayanaswamy 1, C.H. Subbarao 2 1 Professor, Head Division of TLL, MSRUAS, Bangalore, INDIA, 2 Associate

More information

International Journal of Advanced Research in Computer Science and Software Engineering

International Journal of Advanced Research in Computer Science and Software Engineering Volume 2, Issue 9, September 2012 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Power Aware

More information

Energy-Aware Performance Metric for AODV and DSDV Routing Protocols in Mobile Ad-Hoc Networks

Energy-Aware Performance Metric for AODV and DSDV Routing Protocols in Mobile Ad-Hoc Networks www.ijcsi.org 118 -Aware Performance Metric for AODV and DSDV Routing Protocols in Mobile Ad-Hoc Networks Vijayalakshmi P 1, Dr.V.Saravanan 2, Dr. P. Ranjit Jeba Thangiah 3, Abraham Dinakaran.J 4 1 Karunya

More information

Design and Implementation of Ad-hoc Communication and Application on Mobile Phone Terminals

Design and Implementation of Ad-hoc Communication and Application on Mobile Phone Terminals Design and Implementation of Ad-hoc Communication and Application on Mobile Phone Terminals Yujin Noishiki Hidetoshi Yokota Akira Idoue KDDI R&D Laboratories, Inc. 2-1-15 Ohara, Fujimino-Shi, Saitama,

More information

An Extended AODV Protocol to Support Mobility in Hybrid Networks

An Extended AODV Protocol to Support Mobility in Hybrid Networks An Extended AODV Protocol to Support Mobility in Hybrid Networks Sèmiyou A. Adédjouma* Polytechnic School of Abomey-Calavi (EPAC) University of Abomey-Calavi (UAC) Cotonou, Benin *semiyou.adedjouma {at}

More information

International Journal of Wireless & Mobile Networks (IJWMN) Vol. 4, No. 2, April 2012

International Journal of Wireless & Mobile Networks (IJWMN) Vol. 4, No. 2, April 2012 PERFORMANCE EVALUATION OF DIFFERENT WIRELESS AD HOC ROUTING PROTOCOLS Niranjan Kumar Ray 1 and Ashok Kumar Turuk 2 Department of Computer Science and Engineering, National Institute of Technology Rourkela,

More information

Performance Evaluation of Aodv and Dsr Routing Protocols for Vbr Traffic for 150 Nodes in Manets

Performance Evaluation of Aodv and Dsr Routing Protocols for Vbr Traffic for 150 Nodes in Manets Performance Evaluation of Aodv and Dsr Routing Protocols for Vbr Traffic for 150 Nodes in Manets Gurpreet Singh, 1 Atinderpal Singh 2, 1, 2 Department of CSE & IT, BBSBEC, Fatehgarh Sahib, Punjab, India

More information

Multi-paths Routing with Load Balancing for Internet Access in Wireless Mesh Networks

Multi-paths Routing with Load Balancing for Internet Access in Wireless Mesh Networks Multi-paths Routing with Load Balancing for Internet Access in Wireless Mesh Networks Vinh Dien HOANG 1, Maode MA 2, Hiroshi HARADA 1 1 Wireless Communications Laboratory, National Institute of Information

More information

Security Threats in Mobile Ad Hoc Networks

Security Threats in Mobile Ad Hoc Networks Security Threats in Mobile Ad Hoc Networks Hande Bakiler, Aysel Şafak Department of Electrical & Electronics Engineering Baskent University Ankara, Turkey 21020013@baskent.edu.tr, asafak@baskent.edu.tr

More information

A Workload-Based Adaptive Load-Balancing Technique for Mobile Ad Hoc Networks

A Workload-Based Adaptive Load-Balancing Technique for Mobile Ad Hoc Networks A Workload-Based Adaptive Load-Balancing Technique for Mobile Ad Hoc Networks Young J. Lee and George F. Riley School of Electrical & Computer Engineering Georgia Institute of Technology, Atlanta, GA 30332

More information

Investigating the Performance of Routing Protocols Using Quantitative Metrics in Mobile Ad Hoc Networks

Investigating the Performance of Routing Protocols Using Quantitative Metrics in Mobile Ad Hoc Networks Investigating the Performance of Routing Protocols Using Quantitative Metrics in Mobile Ad Hoc Networks T. Jagadeepak 1, Dr. B. Prabhakara Rao 2, B. A. S. Roopa Devi 3 PG Student, Dept. of ECE, UCEK, JNTU,

More information

Study of Different Types of Attacks on Multicast in Mobile Ad Hoc Networks

Study of Different Types of Attacks on Multicast in Mobile Ad Hoc Networks Study of Different Types of Attacks on Multicast in Mobile Ad Hoc Networks Hoang Lan Nguyen and Uyen Trang Nguyen Department of Computer Science and Engineering, York University 47 Keele Street, Toronto,

More information

A Link-state QoS Routing Protocol for Ad Hoc Networks

A Link-state QoS Routing Protocol for Ad Hoc Networks A Link-state QoS Routing Protocol for Ad Hoc Networks Anelise Munaretto 1 Hakim Badis 2 Khaldoun Al Agha 2 Guy Pujolle 1 1 LIP6 Laboratory, University of Paris VI, 8, rue du Capitaine Scott, 75015, Paris,

More information

On Vulnerability and Protection of Ad Hoc On-demand Distance Vector Protocol

On Vulnerability and Protection of Ad Hoc On-demand Distance Vector Protocol On Vulnerability and Protection of Ad Hoc On-demand Distance Vector Protocol Weichao Wang, Yi Lu, Bharat K. Bhargava CERIAS and Department of Computer Sciences Purdue University West Lafayette, IN 47907,

More information

Intelligent Agents for Routing on Mobile Ad-Hoc Networks

Intelligent Agents for Routing on Mobile Ad-Hoc Networks Intelligent Agents for Routing on Mobile Ad-Hoc Networks Y. Zhou Dalhousie University yzhou@cs.dal.ca A. N. Zincir-Heywood Dalhousie University zincir@cs.dal.ca Abstract This paper introduces a new agent-based

More information

Chapter 5. Simple Ad hoc Key Management. 5.1 Introduction

Chapter 5. Simple Ad hoc Key Management. 5.1 Introduction Chapter 5 Simple Ad hoc Key Management 5.1 Introduction One of the most important consequences of the nature of the MANET networks is that one cannot assume that a node that is part of a network will be

More information

Result Analysis of Virtual IP Address Configuration Protocol

Result Analysis of Virtual IP Address Configuration Protocol Volume 64 No2, February 2013 Result Analysis of Virtual IP Address Configuration Protocol Satinder Kaur MTech Student Amritsar College of Engineering & Technology, Amritsar, Punjab-India- 143001 Tanu Preet

More information

An On-demand Scheduling Routing Protocol for IPv6 Industrial Wireless Sensor Networks based on Deterministic Scheduling

An On-demand Scheduling Routing Protocol for IPv6 Industrial Wireless Sensor Networks based on Deterministic Scheduling An On-demand Scheduling Routing Protocol for IPv6 Industrial Wireless Sensor Networks based on Deterministic Scheduling 1 Ping Wang, 2 Fei Lan, 3 Heng Wang, 4 Min Xiang *1 Key Laboratory of Industrial

More information

DSR: The Dynamic Source Routing Protocol for Multi-Hop Wireless Ad Hoc Networks

DSR: The Dynamic Source Routing Protocol for Multi-Hop Wireless Ad Hoc Networks DSR: The Dynamic Source Routing Protocol for Multi-Hop Wireless Ad Hoc Networks David B. Johnson David A. Maltz Josh Broch Computer Science Department Carnegie Mellon University Pittsburgh, PA 15213-3891

More information

A UBIQUITOUS PROTOCOL FOR ADDRESS DYNAMICALLY AUTO CONFIGURATION FOR MOBILE AD HOC NETWORKS

A UBIQUITOUS PROTOCOL FOR ADDRESS DYNAMICALLY AUTO CONFIGURATION FOR MOBILE AD HOC NETWORKS A UBIQUITOUS PROTOCOL FOR ADDRESS DYNAMICALLY AUTO CONFIGURATION FOR MOBILE AD HOC NETWORKS Chandanpreet Kaur Global Institute of Management and Emerging Technologies, Amritsar, Punjab, India, lpu_chandan@yahoo.co.in

More information

A Review of Secure Ad-hoc Routing

A Review of Secure Ad-hoc Routing www..org 30 A Review of Secure Ad-hoc Routing Tannu Arora 1, Deepika Arora 2 1 Computer Science, M.D.U/GIET, Sonipat, Haryana, India tannu.arora@gmail.com 2 Computer Science, C.D.L.U, Sirsa, Haryana, India

More information

PERFORMANCE OF MOBILE AD HOC NETWORKING ROUTING PROTOCOLS IN REALISTIC SCENARIOS

PERFORMANCE OF MOBILE AD HOC NETWORKING ROUTING PROTOCOLS IN REALISTIC SCENARIOS PERFORMANCE OF MOBILE AD HOC NETWORKING ROUTING PROTOCOLS IN REALISTIC SCENARIOS Julian Hsu, Sameer Bhatia, Mineo Takai, Rajive Bagrodia, Scalable Network Technologies, Inc., Culver City, CA, and Michael

More information

Performance Evaluation of Mobility Speed over MANET Routing Protocols

Performance Evaluation of Mobility Speed over MANET Routing Protocols International Journal of Network Security, Vol., No.3, PP.28 38, Nov. 2 28 Performance Evaluation of Mobility Speed over MANET Routing Protocols Yasser Kamal Hassan, Mohamed Hashim Abd El-Aziz 2, and Ahmed

More information

Implementation of a Lightweight Service Advertisement and Discovery Protocol for Mobile Ad hoc Networks

Implementation of a Lightweight Service Advertisement and Discovery Protocol for Mobile Ad hoc Networks Implementation of a Lightweight Advertisement and Discovery Protocol for Mobile Ad hoc Networks Wenbin Ma * Department of Electrical and Computer Engineering 19 Memorial Drive West, Lehigh University Bethlehem,

More information

Name Service in IPv6 Mobile Ad-hoc Network

Name Service in IPv6 Mobile Ad-hoc Network Name Service in IPv6 Mobile Ad-hoc Network Jaehoon Jeong, Jungsoo Park, Hyoungjun Kim, and Kishik Park Protocol Engineering Center, ETRI, 161 Gajong-Dong, Yusong-Gu, Daejon 305-350, Korea {paul,pjs,khj,kipark}@etri.re.kr,

More information

A Survey on Reduction in Energy Consumption by Improved AODV on Mobile Ad Hoc Network

A Survey on Reduction in Energy Consumption by Improved AODV on Mobile Ad Hoc Network International Journal of Computer Sciences and Engineering Open Access Review Paper Volume-4, Issue-2 E-ISSN: 2347-2693 A Survey on Reduction in Energy Consumption by Improved AODV on Mobile Ad Hoc Network

More information

Achieving Energy Efficiency in MANETs by Using Load Balancing Approach

Achieving Energy Efficiency in MANETs by Using Load Balancing Approach International Journal of Computer Networks and Communications Security VOL. 3, NO. 3, MARCH 2015, 88 94 Available online at: www.ijcncs.org E-ISSN 2308-9830 (Online) / ISSN 2410-0595 (Print) Achieving

More information

Routing Protocol Comparison for 6LoWPAN

Routing Protocol Comparison for 6LoWPAN 6LoWPAN WG, IETF64, Vancouver Routing Protocol Comparison for 6LoWPAN Ki-Hyung Kim (Ajou University) and S. Daniel Park (SAMSUNG Electronics) Contents 6LoWPAN Ad Hoc On-Demand Distance Vector R outing

More information

Control overhead reduction: A Hierarchical Routing Protocol In Mobile Ad hoc Networks

Control overhead reduction: A Hierarchical Routing Protocol In Mobile Ad hoc Networks Control overhead reduction: A Hierarchical Routing Protocol In Mobile Ad hoc Networks Dr.G.Mary Jansi Rani Professor / Department of Electronics and Communication Engineering, Sri Ramakrishna Engineering

More information

Security Scheme for Distributed DoS in Mobile Ad Hoc Networks

Security Scheme for Distributed DoS in Mobile Ad Hoc Networks Security Scheme for Distributed DoS in Mobile Ad Hoc Networks Sugata Sanyal 1, Ajith Abraham 2, Dhaval Gada 3, Rajat Gogri 3, Punit Rathod 3, Zalak Dedhia 3 and Nirali Mody 3 1 School of Technology and

More information

Autoconfiguration and maintenance of the IP address in ad-hoc mobile networks

Autoconfiguration and maintenance of the IP address in ad-hoc mobile networks 1 Autoconfiguration and maintenance of the IP address in ad-hoc mobile networks M. Fazio, M. Villari, A. Puliafito Università di Messina, Dipartimento di Matematica Contrada Papardo, Salita Sperone, 98166

More information

Performance Comparison of Two On-demand Routing Protocols for Ad Hoc Networks

Performance Comparison of Two On-demand Routing Protocols for Ad Hoc Networks Performance Comparison of Two On-demand Routing Protocols for Ad Hoc Networks Samir R. Das Division of Computer Science The University of Texas at San Antonio San Antonio, TX 7849-667 U.S.A. Charles E.

More information

INTELLIGENT LOAD BALANCING IN MOBILE AD HOC NETWORKS. A Thesis by. Varun Khanna. Bachelor of Technology, Kurukshetra University, India, 2004

INTELLIGENT LOAD BALANCING IN MOBILE AD HOC NETWORKS. A Thesis by. Varun Khanna. Bachelor of Technology, Kurukshetra University, India, 2004 INTELLIGENT LOAD BALANCING IN MOBILE AD HOC NETWORKS A Thesis by Varun Khanna Bachelor of Technology, Kurukshetra University, India, 2004 Submitted to the Department of Electrical Engineering and Computer

More information

Fast and Secure Data Transmission by Using Hybrid Protocols in Mobile Ad Hoc Network

Fast and Secure Data Transmission by Using Hybrid Protocols in Mobile Ad Hoc Network Middle-East Journal of Scientific Research 15 (9): 1290-1294, 2013 ISSN 1990-9233 IDOSI Publications, 2013 DOI: 10.5829/idosi.mejsr.2013.15.9.11514 Fast and Secure Data Transmission by Using Hybrid Protocols

More information

Energy Efficiency of Load Balancing in MANET Routing Protocols

Energy Efficiency of Load Balancing in MANET Routing Protocols Energy Efficiency of Load Balancing in MANET Routing Protocols Sunsook Jung, Nisar Hundewale, Alex Zelikovsky Abstract This paper considers energy constrained routing protocols and workload balancing techniques

More information

A Modified Shared-tree Multicast Routing Protocol in Ad Hoc Network

A Modified Shared-tree Multicast Routing Protocol in Ad Hoc Network Journal of Computing and Information Technology - CIT 13, 25, 3, 177 193 177 A Modified Shared-tree Multicast Routing Protocol in Ad Hoc Network Ziping Liu 1 and Bidyut Gupta 2 1 Computer Science Department,

More information

Lifetime Prediction Routing in Mobile Ad Hoc Networks

Lifetime Prediction Routing in Mobile Ad Hoc Networks Lifetime Prediction Routing in Mobile d Hoc Networks Morteza Maleki, Karthik Dantu, and Massoud Pedram Dept. of EE-Systems, University of Southern California, Los ngeles, C, 989 {morteza, dantu, massoud}@sahand.usc.edu

More information

A Review of Routing Protocols for Mobile Ad-Hoc NETworks (MANET)

A Review of Routing Protocols for Mobile Ad-Hoc NETworks (MANET) A Review of Routing Protocols for Mobile Ad-Hoc NETworks (MANET) Alex Hinds, Michael Ngulube, Shaoying Zhu, and Hussain Al-Aqrabi Abstract The increase in availability and popularity of mobile wireless

More information

Adaptive Localized Active Route Maintenance Mechanism to Improve Performance of VoIP over Ad Hoc Networks

Adaptive Localized Active Route Maintenance Mechanism to Improve Performance of VoIP over Ad Hoc Networks 68 JOURNAL OF COMMUNICATIONS, VOL. 6, NO. 1, FEBRUARY 211 Adaptive Localized Active Route Maintenance Mechanism to Improve Performance of VoIP over Ad Hoc Networks Adriana Sofia Otero 1, Mohammed Atiquzzaman

More information

Location Information Services in Mobile Ad Hoc Networks

Location Information Services in Mobile Ad Hoc Networks Location Information Services in Mobile Ad Hoc Networks Tracy Camp, Jeff Boleng, Lucas Wilcox Department of Math. and Computer Sciences Colorado School of Mines Golden, Colorado 841 Abstract In recent

More information

Enabling SIP-Based Services in Ad Hoc Networks

Enabling SIP-Based Services in Ad Hoc Networks Enabling SIP-Based Services in Ad Hoc Networks Heng-Te Chu 1, 2, Wen-Shiung Chen 1 1 VIPCCL, Dept. of Electrical Engineering, National Chi Nan University, Nan-Tou, Taiwan 2 Dept. of Information Networking

More information

SECURE DATA TRANSMISSION USING INDISCRIMINATE DATA PATHS FOR STAGNANT DESTINATION IN MANET

SECURE DATA TRANSMISSION USING INDISCRIMINATE DATA PATHS FOR STAGNANT DESTINATION IN MANET SECURE DATA TRANSMISSION USING INDISCRIMINATE DATA PATHS FOR STAGNANT DESTINATION IN MANET MR. ARVIND P. PANDE 1, PROF. UTTAM A. PATIL 2, PROF. B.S PATIL 3 Dept. Of Electronics Textile and Engineering

More information

III. Our Proposal ASOP ROUTING ALGORITHM. A.Position Management

III. Our Proposal ASOP ROUTING ALGORITHM. A.Position Management Secured On-Demand Position Based Private Routing Protocol for Ad-Hoc Networks Ramya.R, Shobana.K, Thangam.V.S ramya_88@yahoo.com, k shobsi@yahoo.co.in,thangam_85@yahoo.com Department of Computer Science,

More information

Wireless Mesh Networks under FreeBSD

Wireless Mesh Networks under FreeBSD Wireless Networks under FreeBSD Rui Paulo rpaulo@freebsd.org The FreeBSD Project AsiaBSDCon 2010 - Tokyo, Japan Abstract With the advent of low cost wireless chipsets, wireless mesh networks became much

More information

Security and Scalability of MANET Routing Protocols in Homogeneous & Heterogeneous Networks

Security and Scalability of MANET Routing Protocols in Homogeneous & Heterogeneous Networks Security and Scalability of MANET Routing Protocols in Homogeneous & Heterogeneous Networks T.V.P. Sundararajan 1, Karthik 2, A. Shanmugam 3 1. Assistant Professor, Bannari Amman Institute Of Technology,

More information

Step by Step Procedural Comparison of DSR, AODV and DSDV Routing protocol

Step by Step Procedural Comparison of DSR, AODV and DSDV Routing protocol th International Conference on Computer Engineering and Technology (ICCET ) IPCSIT vol. () () IACSIT Press, Singapore Step by Step Procedural Comparison of DSR, AODV and DSDV Routing protocol Amith Khandakar

More information

Name Service in IPv6 Mobile Ad-hoc Network

Name Service in IPv6 Mobile Ad-hoc Network Name Service in IPv6 Mobile Ad-hoc Network Jaehoon Jeong, Jungsoo Park, Hyoungjun Kim, and Kishik Park Protocol Engineering Center, ETRI, 161 Gajong-Dong, Yusong-Gu, Daejon 305-350, Korea {paul,pjs,khj,kipark}@etri.re.kr,

More information

A Performance Comparison of Stability, Load-Balancing and Power-Aware Routing Protocols for Mobile Ad Hoc Networks

A Performance Comparison of Stability, Load-Balancing and Power-Aware Routing Protocols for Mobile Ad Hoc Networks A Performance Comparison of Stability, Load-Balancing and Power-Aware Routing Protocols for Mobile Ad Hoc Networks Natarajan Meghanathan 1 and Leslie C. Milton 2 1 Jackson State University, 1400 John Lynch

More information

Performance Evaluation and Investigation of Energy in AODV, OLSR Protocols through Simulation

Performance Evaluation and Investigation of Energy in AODV, OLSR Protocols through Simulation Performance Evaluation and Investigation of Energy in AODV, OLSR Protocols through Simulation Dharam Vir 1, S.K Agarwal 2 and S.A. Imam 3 1 Research Scholar, Department of Electronics Engg. YMCA UST, Faridabad,

More information

Graph Theory Algorithms for Mobile Ad Hoc Networks

Graph Theory Algorithms for Mobile Ad Hoc Networks Informatica 36 (2012) 185-200 185 Graph Theory Algorithms for Mobile Ad Hoc Networks Natarajan Meghanathan Department of Computer Science, Jackson State University Jackson, MS 39217, USA E-mail: natarajan.meghanathan@jsums.edu

More information

Comparison of WCA with AODV and WCA with ACO using clustering algorithm

Comparison of WCA with AODV and WCA with ACO using clustering algorithm Comparison of WCA with AODV and WCA with ACO using clustering algorithm Deepthi Hudedagaddi, Pallavi Ravishankar, Rakesh T M, Shashikanth Dengi ABSTRACT The rapidly changing topology of Mobile Ad hoc networks

More information

Name Resolution in On-Demand MANETs and over External IP Networks

Name Resolution in On-Demand MANETs and over External IP Networks Name Resolution in On-Demand MANETs and over External IP Networks Paal Engelstad, Do Van Thanh, Geir Egeland University of Oslo (UniK) / Telenor R&D, 1331 Fornebu, Norway {Paal.Engelstad, Thanh-van.Do,

More information

Performance of VoIP strategies for hybrid Mobile Ad Hoc Networks

Performance of VoIP strategies for hybrid Mobile Ad Hoc Networks Department of Computer Science Gonzalo Iglesias Aguiño Performance of VoIP strategies for hybrid Mobile Ad Hoc Networks Computer Networks D-level thesis (20p) Date: 061221 Supervisor: Andreas Kassler Examiner:

More information

Simulation Analysis of Different Routing Protocols Using Directional Antenna in Qualnet 6.1

Simulation Analysis of Different Routing Protocols Using Directional Antenna in Qualnet 6.1 Simulation Analysis of Different Routing Protocols Using Directional Antenna in Qualnet 6.1 Ankit Jindal 1, Charanjeet Singh 2, Dharam Vir 3 PG Student [ECE], Dept. of ECE, DCR University of Science &

More information

CAODV: Routing in Mobile Ad-hoc Cognitive Radio Networks

CAODV: Routing in Mobile Ad-hoc Cognitive Radio Networks : Routing in Mobile Ad-hoc Cognitive Radio Networks Angela Sara Cacciapuoti, Cosimo Calcagno, Marcello Caleffi Department of Biomedical, Electronics and Telecommunications Engineering University of Naples

More information

Gateway Load Balancing in Integrated Internet- MANET to Improve Network Performance

Gateway Load Balancing in Integrated Internet- MANET to Improve Network Performance Gateway Load Balancing in Integrated Internet- MANET to Improve Network Performance Ajay Kumar 1, Udai Shankar 2, Mahesh Kumar Tiwari 3 1 2 3 Department of Computer science & Engineering and Information

More information