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

Size: px
Start display at page:

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

Transcription

1 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, PA 18015, USA wem2@lehigh.edu Baoning Wu, Wei Zhang, Liang Cheng * Department of Computer Science and Engineering 19 Memorial Drive West, Lehigh University Bethlehem, PA 18015, USA cheng@cse.lehigh.edu Abstract advertisement and discovery are important components for computing in mobile ad hoc network (MANET). In this paper, a lightweight protocol of service advertisement and discovery has been implemented, which is based on a MANET multicast protocol ODMRP (On-Demand Multicast Routing Protocol). In this protocol, service advertisement and discovery information is piggybacked in ODMRP routing control packets. Simulation results of the implementation prove that the implementation workload and resource consumption of the protocol are lightweight. Keywords-service advertisement and discovery; mobile ad hoc networks; on-demand multicast routing protocol I. INTRODUCTION A. Mobile Ad hoc Network and ODMRP A mobile ad hoc network (MANET) is a collection of intercommunicating mobile nodes without a centralized coordinating entity or fixed infrastructure, which is an autonomous network modeled in the form of an arbitrary graph. This is in contrast to the well-known single hop cellular network model that supports the needs of wireless communication by installing base stations as access points. In these cellular networks, communications between two mobile nodes completely rely on the wired backbone and the fixed base stations. In a MANET, no such infrastructure exists and the network topology may dynamically change in an unpredictable manner since nodes are free to move. A MANET uses some routing algorithms to organize the network by automatically discovering the topology of the connectivity among constituent nodes. ODMRP [1] (On- Demand Multicast Routing Protocol) is one of the multicast routing protocols that have been proposed for MANETs. It is based on a mesh topology and a forwarding group concept (i.e., only a subset of nodes forward the multicast packets). A soft state approach is taken in the ODMRP to maintain multicast group memberships. No explicit control message is required to leave a multicast group. B. Discovery and Advertisement in MANET A service is an entity that can be used by a person, a software program, or another service [2]. It may be a computation, storage, a communication channel to another user, a software filter, a hardware device, or another user. advertisement and discovery are important components for ubiquitous computing platforms since they enable communication and computing entities to provide services to peers and to be aware of and use the available services from peers. It addresses how network devices discover services that are available in the network. A service advertisement and discovery protocol that piggybacks service advertisement and discovery information in ODMRP routing control packets has been proposed in [2]. We have implemented this protocol with both pull and push models considering service mobility and network-resource saving. The rest of this paper is organized as follows. Section II presents the related work of various service advertisement and discovery mechanisms. Section III introduces the motivation of our design and Section IV discusses the details of our implementation and simulations. Simulation results have been presented in Section V. The last section concludes this paper. II. RELATED WORK Several service advertisement and discovery mechanisms have been extensively researched, such as Jini [3] and SLP ( Location Protocol) [4]. A. Jini The service advertisement and discovery in Jini technology include a trio of protocols called discovery, join, and lookup. A pair of these protocols, discovery/join, fulfills the service advertisement functionality. It occurs when a device is plugged in. The discovery protocol is used when a service looks for a lookup server with which to register. The join protocol is used when a service has located a lookup server and wishes to join it. The lookup protocol is used when a client or user needs to locate and invoke a service described by its interface type (written in the Java programming language) and possibly, other attributes. * Laboratory Of Networking Group (LONGLAB, GLOBECOM /03/$ IEEE

2 Object Directory Agents (DA) Directory Agents (DA) Client lookup Figure 1. Jini processes of discovery/join/lookup Active DA discovery request DA advertisement Lookup Server discovery DA advertisement Figure 2. Methods of service discovery in SLP. B. Location Protocol The SLP establishes a framework for service discovery using three types of agents that operate on behalf of networkbased software: (1) Agents (SA) advertise the location and attributes on behalf of services, (2) Directory Agents (DA) aggregate service information, and (3) User Agents (UA) perform service discovery on behalf of client software. Fig. 2 illustrates active and passive methods for service discovery in the SLP. In active discovery, UAs and SAs multicast SLP requests to the network. In passive discovery, DAs multicast advertisements for their services and continue to do this periodically in case any UAs or SAs have failed to receive the initial advertisement III. MOTIVATION OF OUR EXPERIMENT The existing service discovery approaches are not suitable for mobile ad hoc networks with highly dynamic topologies since they either rely on centralized servers or employ resource-consuming query flooding. Our goal is to find a lightweight service advertisement and discovery protocol that considers both mobility and network-resource saving in mobile ad hoc communication environment. Multicast is favorable for the implementation of service discovery in MANETs because of: (1) the broadcast nature of wireless communication environment, (2) the infrastructureless feature of MANETs, and (3) the one-to-many character of service advertisement and discovery. There are many multicast protocols for MANETs. Simulation results in [5] show that the ODMRP achieves better performance than other multicast protocols in most cases. The protocol implementation complexity and resource consumption will be lightweight if the service discovery information is piggybacked in the ODMRP join Provider User Agents (UA) User Agents (UA) Passive DA discovery Object Attributes Agents (SA) Agents (SA) routing control packets assuming that the mobile devices support multicast routing functionality in the mobile ad hoc networking environment. Moreover, our implementation avoids excessive traffic overhead of periodic advertisements since only updated service advertisements are distributed and the service query/reply mechanism in the pull model is used. IV. SIMULATION DESIGN The simulation is designed to evaluate the performance of the service discovery and advertisement protocol based on the ODMRP in MANETs. Network simulator ns2 [6] is used. Since the original ns2 from University of Southern California does not support mobile ad hoc network multicast protocols, we use an alternated version [7] that provides full supports of two types of multicast routing protocols: ADMR (Adaptive Demand-Driven Multicast Routing protocol) [8] and the ODMRP. In the rest of this section, we will describe how we modify the original ODMRP protocol to implement and simulate our new protocol. A. Header Definitions To implement service discovery and advertisement, we extend the definition of the original ODMRP header by adding new header fields. The extended header for the service advertisement and discovery resides in the original ODMRP control packets. The definition of the header structure is shown in TABLE I [2]. TABLE I. FORMAT OF SERVICE ADVERTISMENT 1 BYTE 1 BYTE 1 BYTE 1BYTE Type 1 Option Field 2 Time to Live 3 Port 4 Server Address 5 (in unicast form) Name 6 (ID) Protocol Type 7 Reserved 8 Optional Fields x01 as service advertisement means no optional information; 1 means optional fields at the end 3. Geographical scope the service covers in terms of the number of hops 4. The port number of the service point 5. The unicast IP address of the server 6. The index or the name of the service 7. Protocol type that the server and clients use 8. If 0, ignored on reception 9. description for multi-level services B. Types To implement service advertisement and discovery, the node should have the knowledge of the service types in advance. In our simulation, we define four different IDs for three different types of services. The detailed definitions are shown in TABLE II. GLOBECOM /03/$ IEEE

3 TABLE II. TYPES OF SERVICES Type ID Value Notes SER_CONSUMER 0x0 Consumer does not provide any service. SER_PRINTER 0x1 Node with printing service. SER_SCANNER 0x2 Node with scanning service. SER_ADDR_BOOK 0x3 Node with address book service. C. ODMRP Agent Each node in ns2 should have an agent. The agent handles events, sends, and receives packets. The ODMRP also has its own agent implementation. In our simulation, we modify the ODMRP agent and make it have the intelligence to fulfill the service advertisement and discovery functionality. First, we define two new member variables: node_type and discover_type. Node_type stands for the service type of this node and discover_type stands for the service type that the node wants to query. Then, we set the new advertisement and discovery header. Finally, we rewrite the code to output some log information of service discovery and advertisement for each node in the multicast groups. The sample result log is shown in Fig. 3. Node 29: I have a service (id = 2, name = Scanner) Node 33: Found a service from node 29 (id = 2, name = Scanner). Node 19: I have a service (id = 3, name = Address Book) Node 27: Found a service from node 19 (id = 3, name = Address Book). Node 12: I have a service (id = 2, name = Scanner) Node 16: Found a service from node 12 (id = 2, name = Scanner). Figure 3. Simulation output log snippet. D. Simulation Senarios There are several parameters that we can set to implement different kinds of scenarios in the simulation. The first parameter is the maximum moving speed of nodes. The faster the relative speed, the more dynamic the network is. The second parameter is the pause time, which means how long a node can be stationary in one place before it moves to another place. The larger the pause time, the more stable the network is. The third one is the number of multicast groups. The last parameter is the moving range of all the nodes in the simulation. In our simulation, all the scenarios are run in the boundary of 500*500 and will last for 200 seconds. V. SIMULATION RESULTS To evaluate the performance of our protocol, we use the following three metrics: Successful delivery ratio: The ratio for the number of all the service advertisement and discovery packets that have been received successfully by our protocol to the number of packets sent. In the rest of the paper, the successful delivery ratio and the success ratio are interchangeable terms. Overhead ratio: The ratio of the number of packets our protocol has used for service advertisement and discovery to the number of all the ODRMP control packets. Delay time: The time for all the client nodes to discover all the services available in the network. The success ratio is an important performance index as it describes the efficiency of the protocol to propagate service information through the network. The overhead ratio is also important since it describes the cost that our implementation has added to the original ODMRP protocol for service advertisement and discovery. The delay time is used to compare our protocol with other ad hoc network service discovery protocols to see how fast the service advisement and discovery can converge in mobile ad hoc networks. A. Success Ratio To study the protocol performance in terms of the success ratio, we have conducted simulations in two ways. First, we fix the pause time to be 2 seconds and change the speed of nodes from 1 m/s to 50 m/s. Then, we fix the speed of nodes to be 1m/s and change the pause time from 1 second to 50 seconds. In all scenarios, the number of nodes has been set to 50. There are five multicast groups and each group has three service providers and six client nodes. The join-group and leave-group events happen randomly during the simulations. Table III and Fig. 4 show the success ratio versus various node moving speeds. Table IV and Fig. 5 show the success ratio versus moving pause time. TABLE III. SUCCESS DILIVERY RATIO VS. NODE SPEED Speed(m/s) Expected total Real total Success ratio packets packets (%) GLOBECOM /03/$ IEEE

4 Figure 4. Success delivery ratio as a function of node moving speed (x axis as the node moving speed in m/s and y axis as the success ratio in %). TABLE IV. SUCCESS DILIVERY RATIO VS. PAUSE TIME Pause time(s) Expected total Real total Success ratio packets packets (%) When the nodes move faster and more continuously, more packets will be dropped. This probably causes slow propagation of service advertisement and discovery. However, in all simulation scenarios, the values of the success delivery ratio always remain in a quite high level, e.g., all the values are above 85%. B. Overhead Ratio To observe the overhead ratio, we conduct simulations in six scenarios. Each scenario has four multicast groups. The number of service providers in each group has been set from one to six and the number of client nodes in each group has been set to six. In all the scenarios, nodes move with the maximum speed of 1 m/s and an average pause time of 2 seconds. The join-group and leave-group events happen randomly during the simulations. Table V and Fig. 6 show the overhead ratio with different numbers of service providers. The simulation results show that the overhead ratio remains almost a constant when the number of service providers in each group has increased. When the number of service providers increases, the number of packets for service advertisement and discovery increases. In the meantime, the number of the original ODMRP packets has also increased because the total number of nodes in network has been increased. Therefore the overhead ratio only changes slightly. TABLE V. provider (per group) OVERHEAD RATIO VS. NUMBER OF SERVICE PROVIDERS Total packets Packets for service discovery and advertisement Overhead ratio (%) Figure 5. Success delivery ratio as a function of pause time (x axis as the pause time in second and y axis as the success ratio in %). The results show that (1) the success ratio drops when the node moving speed increases; and (2) the success ratio increases when the pause time for node movement increases. Therefore the success delivery ratio of service discovery and advertisement packets depends on the mobility of the nodes Figure 6. Overhead ratio as a function of the number of service providers (x axis as the number of service providers and y axis as the overhead ratio in %). GLOBECOM /03/$ IEEE

5 In all the scenarios, the values of the overhead ratio remain less than 0.4%. This is because only updated service advertisement packets are distributed in the network and the service query/reply mechanism in the pull model is used. These mechanisms make the service information to be sent in the network only when necessary. Therefore, network resources can be saved by avoiding unnecessary query flooding. In summary, the protocol presented in this paper successfully provides service advertisement and discovery by adding small overheads to the original ODMRP. Therefore it is a lightweight protocol. C. Delay Time To measure the delay time, we conduct simulations in ten scenarios. The number of multicast groups in each scenario has been set from one to ten. Each group has five nodes, where two of them are service providers and the rest three are client nodes. In all the scenarios, all the nodes have associated with a certain group from the beginning of the simulations and there is no join-group and leave-group event during the simulations. The nodes move with the maximum speed of 1 m/s and an average pause time of 2 seconds. Table VI and Fig. 7 show the delay time with different numbers of nodes. TABLE VI. DELAY TIME VS. NUMBER OF NODES Total number of nodes Delay time (s) Figure 7. Delay time as a function of the number of nodes (x axis as the number of nodes and y axis as the delay time in second). When the number of nodes increases, it takes more time for all the clients to discover the services in the network. Since our implementation is based on the ODMRP that is designed for efficient multicasting in MANETs, the delay time value remains in a low level and changes slightly. VI. CONCLUSIONS In this paper, we have presented a lightweight service advertisement and discovery protocol which is based on a multicast protocol in mobile ad hoc networks: ODMRP. Using this protocol, mobile nodes can be aware of the services in the MANETs by listening to the service advertisement; and any node in the MANET can send service inquiries and wait for the responses from the service providers to utilize those services. Simulation results have been studied to evaluate the performance of the protocol, which show that it achieves the goal of service advertisement and discovery in mobile ad hoc networks with small overheads. Future research includes performance comparisons and experiment studies. ACKNOWLODGEMENT This research is supported by Laboratory Of Networking Group (LONGLAB, at Lehigh University, which is sponsored by the National Science Foundation and Pennsylvania Department of Community and Economic Development. REFERENCES [1] S. J. Lee, W. Su, and M.. Gerla, On demand multicast routing protocol, in Proceedings of IEEE WCNC 99, pp , September [2] L. Cheng, advertisement and discovery in mobile ad hoc networks, in Workshop on Ad hoc Communications and Collaboration in Ubiquitous Computing Environments, in conjunction with the ACM 2002 Conference on Computer Supported Cooperative Work, New Orleans, USA, November 16-20, [3] W. K. Edwards, Core Jini, Prentice Hall PTR, Upper Saddle River, NJ, USA, [4] J. Veizades, E. Guttman., C. Perkins, and S. Kaplan, location protocol, Request for Comments (RFC) 2165, Internet Engineering Task Force, June [5] S. Lee, W. Su, J. Hsu, M. Gerla, and R. Bagrodia, A performance comparison study of ad hoc wireless multicast protocols, in Proceedings of IEEE Infocom 2000, pp , Tel-Aviv, Israel, March [6] S. Bajaj, L. Breslau, and D. Estrin, Improving simulation for network research, Technical Report , University of Southern California, Los Angeles, March, [7] D. B. Johnson, Validation of wireless and mobile network models and simulation, in Proceedings of the DARPA/NIST Workshop on Validation of Large-Scale Network Models and Simulation Fairfax, VA, May [8] J. G. Jetcheva and D. B. Johnson, Adaptive demand-driven multicast routing protocol (ADMR), Internet Draft, draft-jetcheva-manet-admr- 00.txt, work in progress, June GLOBECOM /03/$ IEEE

A DISTRIBUTED RESOURCE-MANAGEMENT APPROACH IN MANETS

A DISTRIBUTED RESOURCE-MANAGEMENT APPROACH IN MANETS Journal of Engineering Science and Technology Vol. 4, No. 2 (2009) 142-153 School of Engineering, Taylor s University College A DISTRIBUTED RESOURCE-MANAGEMENT APPROACH IN MANETS S. A. HOSSEINI-SENO 1,*,

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

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION CHAPTER 1 INTRODUCTION 1.1 Introduction Service Discovery Protocols (SDPs) are network protocols which allow automatic detection of devices and services offered by these devices on a computer network [1].

More information

Support of Multimedia SIP Applications over Proactive MANETs Extension of OLSR for Service Discovery

Support of Multimedia SIP Applications over Proactive MANETs Extension of OLSR for Service Discovery Support of Multimedia SIP Applications over Proactive MANETs Extension of OLSR for Service Discovery Li Li and Louise Lamont CRC Canada Outline Overview of MANET Service Discovery Schemes OLSR Extension

More information

Survey of Service Discovery Architectures for Mobile Ad hoc Networks

Survey of Service Discovery Architectures for Mobile Ad hoc Networks Survey of Service Discovery Architectures for Mobile Ad hoc Networks Chunglae Cho 1 and Duckki Lee 1 1 Computer and Information Science and Engineering Department University of Florida, Gainesville, FL-32611,

More information

CROSS LAYER BASED MULTIPATH ROUTING FOR LOAD BALANCING

CROSS LAYER BASED MULTIPATH ROUTING FOR LOAD BALANCING CHAPTER 6 CROSS LAYER BASED MULTIPATH ROUTING FOR LOAD BALANCING 6.1 INTRODUCTION The technical challenges in WMNs are load balancing, optimal routing, fairness, network auto-configuration and mobility

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

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

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

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

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

Energy Efficient and Robust Multicast Protocol for Mobile Ad Hoc Networks

Energy Efficient and Robust Multicast Protocol for Mobile Ad Hoc Networks Energy Efficient and Robust Multicast Protocol for Mobile Ad Hoc Networks Sangman Moh Chansu Yu Ben Lee Hee Yong Youn Electronics and Telecommunications Research Institute Daejeon, Korea smmoh@etri.re.kr

More information

Performance Evaluation of Service Discovery Strategies in Ad Hoc Networks

Performance Evaluation of Service Discovery Strategies in Ad Hoc Networks Performance Evaluation of Service Discovery Strategies in Ad Hoc Networks by Honghui Luo A thesis submitted to the Faculty of Graduate Studies and Research in partial fulfilment of the requirements for

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 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

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

Analysis on Leveraging social networks for p2p content-based file sharing in disconnected manets

Analysis on Leveraging social networks for p2p content-based file sharing in disconnected manets Analysis on Leveraging social networks for p2p content-based file sharing in disconnected manets # K.Deepika 1, M.Tech Computer Science Engineering, Mail: medeepusony@gmail.com # K.Meena 2, Assistant Professor

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

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

Network Layer Support for Service Discovery in Mobile Ad Hoc Networks

Network Layer Support for Service Discovery in Mobile Ad Hoc Networks Network Layer Support for Service Discovery in Mobile Ad Hoc Networks Ulaş C. Kozat and Leandros Tassiulas Department of Electrical and Computer Engineering and Institute for Systems Research 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

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

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

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

ROUTE MECHANISMS FOR WIRELESS ADHOC NETWORKS: -CLASSIFICATIONS AND COMPARISON ANALYSIS

ROUTE MECHANISMS FOR WIRELESS ADHOC NETWORKS: -CLASSIFICATIONS AND COMPARISON ANALYSIS International Journal of Science, Environment and Technology, Vol. 1, No 2, 2012, 72-79 ROUTE MECHANISMS FOR WIRELESS ADHOC NETWORKS: -CLASSIFICATIONS AND COMPARISON ANALYSIS Ramesh Kait 1, R. K. Chauhan

More information

RESOURCE DISCOVERY IN AD HOC NETWORKS

RESOURCE DISCOVERY IN AD HOC NETWORKS RESOURCE DISCOVERY IN AD HOC NETWORKS Diane Tang Chih-Yuan Chang Kei Tanaka Mary Baker Technical Report No.: CSL-TR-98-769 August 1998 This project is in part supported by FX Palo Alto Laboratories and

More information

SERVICE DISCOVERY AND MOBILITY MANAGEMENT

SERVICE DISCOVERY AND MOBILITY MANAGEMENT Objectives: 1) Understanding some popular service discovery protocols 2) Understanding mobility management in WLAN and cellular networks Readings: 1. Fundamentals of Mobile and Pervasive Computing (chapt7)

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

A Survey on Application of Agent-based Technology in Pervasive Computing

A Survey on Application of Agent-based Technology in Pervasive Computing A Survey on Application of Agent-based Technology in Pervasive Computing Provided by: M. Moussavi This tutorial has been provided as part of the coursework for: SENG 609.22 Agent-based Software Engineering

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

Accelerating Service Discovery in Ad-hoc Zero Configuration Networking

Accelerating Service Discovery in Ad-hoc Zero Configuration Networking Accelerating Service Discovery in Ad-hoc Zero Configuration Networking Se Gi Hong, Suman Srinivasan and Henning Schulzrinne Columbia University, New York, NY {segihong, sumans, hgs}@cs.columbia.edu Abstract

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

An Energy Efficient Location Service for Mobile Ad Hoc Networks

An Energy Efficient Location Service for Mobile Ad Hoc Networks An Energ Efficient Location Service for Mobile Ad Hoc Networks Zijian Wang 1, Euphan Bulut 1 and Boleslaw K. Szmanski 1, 1 Department of Computer Science, Rensselaer Poltechnic Institute, Tro, NY 12180

More information

A Catechistic Method for Traffic Pattern Discovery in MANET

A Catechistic Method for Traffic Pattern Discovery in MANET A Catechistic Method for Traffic Pattern Discovery in MANET R. Saranya 1, R. Santhosh 2 1 PG Scholar, Computer Science and Engineering, Karpagam University, Coimbatore. 2 Assistant Professor, Computer

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

Location-Aided Routing (LAR) in mobile ad hoc networks

Location-Aided Routing (LAR) in mobile ad hoc networks Location-Aided Routing (LAR) in mobile ad hoc networks Young-Bae Ko and Nitin H. Vaidya Department of Computer Science, Texas A&M University, College Station, TX 77843-3112, USA 2000 Abstract A mobile

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

Congestion Controlled Adaptive Lightweight Multicast in Wireless Mobile Ad Hoc Networks

Congestion Controlled Adaptive Lightweight Multicast in Wireless Mobile Ad Hoc Networks Congestion Controlled Adaptive Lightweight Multicast in Wireless Mobile Ad Hoc Networks Ken Tang * Katia Obraczka + Sung-Ju Lee^ Mario Gerla * * Computer Science Department, University of California, Los

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

Assignment #3 Routing and Network Analysis. CIS3210 Computer Networks. University of Guelph

Assignment #3 Routing and Network Analysis. CIS3210 Computer Networks. University of Guelph Assignment #3 Routing and Network Analysis CIS3210 Computer Networks University of Guelph Part I Written (50%): 1. Given the network graph diagram above where the nodes represent routers and the weights

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

PERFORMANCE STUDY AND SIMULATION OF AN ANYCAST PROTOCOL FOR WIRELESS MOBILE AD HOC NETWORKS

PERFORMANCE STUDY AND SIMULATION OF AN ANYCAST PROTOCOL FOR WIRELESS MOBILE AD HOC NETWORKS PERFORMANCE STUDY AND SIMULATION OF AN ANYCAST PROTOCOL FOR WIRELESS MOBILE AD HOC NETWORKS Reza Azizi Engineering Department, Bojnourd Branch, Islamic Azad University, Bojnourd, Iran reza.azizi@bojnourdiau.ac.ir

More information

Forced Low latency Handoff in Mobile Cellular Data Networks

Forced Low latency Handoff in Mobile Cellular Data Networks Forced Low latency Handoff in Mobile Cellular Data Networks N. Moayedian, Faramarz Hendessi Department of Electrical and Computer Engineering Isfahan University of Technology, Isfahan, IRAN Hendessi@cc.iut.ac.ir

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

Architectural Framework for Large- Scale Multicast in Mobile Ad Hoc Networks

Architectural Framework for Large- Scale Multicast in Mobile Ad Hoc Networks Architectural Framework for Large- Scale Multicast in Mobile Ad Hoc Networks Ahmed Helmy Electrical Engineering Department University of Southern California (USC) helmy@usc.edu http://ceng.usc.edu/~helmy

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

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

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

A Comparison Study of Address Autoconfiguration Schemes for Mobile Ad hoc Network

A Comparison Study of Address Autoconfiguration Schemes for Mobile Ad hoc Network A Comparison Study of Address Autoconfiguration Schemes for Mobile Ad hoc Network Soyeon Ahn, Namhoon Kim, Woohyun Kim and Younghee Lee Information and Communications University, Computer Networks Lab.,

More information

CHAPTER 6 SECURE PACKET TRANSMISSION IN WIRELESS SENSOR NETWORKS USING DYNAMIC ROUTING TECHNIQUES

CHAPTER 6 SECURE PACKET TRANSMISSION IN WIRELESS SENSOR NETWORKS USING DYNAMIC ROUTING TECHNIQUES CHAPTER 6 SECURE PACKET TRANSMISSION IN WIRELESS SENSOR NETWORKS USING DYNAMIC ROUTING TECHNIQUES 6.1 Introduction The process of dispersive routing provides the required distribution of packets rather

More information

Protocol Independent Multicast: from Wired to Wireless Networks

Protocol Independent Multicast: from Wired to Wireless Networks Protocol Independent Multicast: from Wired to Wireless Networks Alessandro Russo University of Trento Trento, Italy russo@disi.unitn.it Renato Lo Cigno University of Trento Trento, Italy locigno@disi.unitn.it

More information

Session Initiation Protocol Deployment in Ad-Hoc Networks: a Decentralized Approach

Session Initiation Protocol Deployment in Ad-Hoc Networks: a Decentralized Approach Session Initiation Protocol Deployment in Ad-Hoc Networks: a Decentralized Approach Simone Leggio, Jukka Manner, Antti Hulkkonen, Kimmo Raatikainen Department of Computer Science University of Helsinki,

More information

Opnet Based simulation for route redistribution in EIGRP, BGP and OSPF network protocols

Opnet Based simulation for route redistribution in EIGRP, BGP and OSPF network protocols IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 1, Ver. IV (Jan. 2014), PP 47-52 Opnet Based simulation for route redistribution

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

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

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

Reliable Adaptive Lightweight Multicast Protocol

Reliable Adaptive Lightweight Multicast Protocol Reliable Adaptive Lightweight Multicast Protocol Ken Tang Scalable Network Technologies ktang@scalable-networks.com Katia Obraczka UC Santa Cruz katia@cse.ucsc.edu Sung-Ju Lee HP Labs sjlee@hpl.hp.com

More information

Performance Analysis of AQM Schemes in Wired and Wireless Networks based on TCP flow

Performance Analysis of AQM Schemes in Wired and Wireless Networks based on TCP flow International Journal of Soft Computing and Engineering (IJSCE) Performance Analysis of AQM Schemes in Wired and Wireless Networks based on TCP flow Abdullah Al Masud, Hossain Md. Shamim, Amina Akhter

More information

EXTENDING NETWORK KNOWLEDGE: MAKING OLSR A QUALITY OF SERVICE CONDUCIVE PROTOCOL

EXTENDING NETWORK KNOWLEDGE: MAKING OLSR A QUALITY OF SERVICE CONDUCIVE PROTOCOL EXTENDING NETWORK KNOWLEDGE: MAKING OLSR A QUALITY OF SERVICE CONDUCIVE PROTOCOL by Pedro Eduardo Villanueva-Pena, Thomas Kunz Carleton University January, 2006 This report examines mechanisms to gradually

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

Role of Clusterhead in Load Balancing of Clusters Used in Wireless Adhoc Network

Role of Clusterhead in Load Balancing of Clusters Used in Wireless Adhoc Network International Journal of Electronics Engineering, 3 (2), 2011, pp. 283 286 Serials Publications, ISSN : 0973-7383 Role of Clusterhead in Load Balancing of Clusters Used in Wireless Adhoc Network Gopindra

More information

Datagram-based network layer: forwarding; routing. Additional function of VCbased network layer: call setup.

Datagram-based network layer: forwarding; routing. Additional function of VCbased network layer: call setup. CEN 007C Computer Networks Fundamentals Instructor: Prof. A. Helmy Homework : Network Layer Assigned: Nov. 28 th, 2011. Due Date: Dec 8 th, 2011 (to the TA) 1. ( points) What are the 2 most important network-layer

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

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

QUALITY OF SERVICE METRICS FOR DATA TRANSMISSION IN MESH TOPOLOGIES

QUALITY OF SERVICE METRICS FOR DATA TRANSMISSION IN MESH TOPOLOGIES QUALITY OF SERVICE METRICS FOR DATA TRANSMISSION IN MESH TOPOLOGIES SWATHI NANDURI * ZAHOOR-UL-HUQ * Master of Technology, Associate Professor, G. Pulla Reddy Engineering College, G. Pulla Reddy Engineering

More information

Routing and Transport in Wireless Sensor Networks

Routing and Transport in Wireless Sensor Networks Routing and Transport in Wireless Sensor Networks Ibrahim Matta (matta@bu.edu) Niky Riga (inki@bu.edu) Georgios Smaragdakis (gsmaragd@bu.edu) Wei Li (wli@bu.edu) Vijay Erramilli (evijay@bu.edu) References

More information

TOPOLOGIES NETWORK SECURITY SERVICES

TOPOLOGIES NETWORK SECURITY SERVICES TOPOLOGIES NETWORK SECURITY SERVICES 1 R.DEEPA 1 Assitant Professor, Dept.of.Computer science, Raja s college of Tamil Studies & Sanskrit,Thiruvaiyaru ABSTRACT--In the paper propose about topology security

More information

Adapting Distributed Hash Tables for Mobile Ad Hoc Networks

Adapting Distributed Hash Tables for Mobile Ad Hoc Networks University of Tübingen Chair for Computer Networks and Internet Adapting Distributed Hash Tables for Mobile Ad Hoc Networks Tobias Heer, Stefan Götz, Simon Rieche, Klaus Wehrle Protocol Engineering and

More information

CHAPTER 6. VOICE COMMUNICATION OVER HYBRID MANETs

CHAPTER 6. VOICE COMMUNICATION OVER HYBRID MANETs CHAPTER 6 VOICE COMMUNICATION OVER HYBRID MANETs Multimedia real-time session services such as voice and videoconferencing with Quality of Service support is challenging task on Mobile Ad hoc Network (MANETs).

More information

Optimized Load Balancing Mechanism Using Carry Forward Distance

Optimized Load Balancing Mechanism Using Carry Forward Distance Optimized Load Balancing Mechanism Using Carry Forward Distance Ramandeep Kaur 1, Gagandeep Singh 2, Sahil 3 1 M. Tech Research Scholar, Chandigarh Engineering College, Punjab, India 2 Assistant Professor,

More information

Ad hoc Networking

Ad hoc Networking An Integrated Approach for Efficient Routing and Service iscovery in Mobile Ad Hoc Networks Chang-Seok Oh Graduate School of Information & Communication, Ajou University Suwon, Korea Email: csoh@ajou.ac.kr

More information

PERFORMANCE ANALYSIS OF AODV, DSR AND ZRP ROUTING PROTOCOLS IN MANET USING DIRECTIONAL ANTENNA

PERFORMANCE ANALYSIS OF AODV, DSR AND ZRP ROUTING PROTOCOLS IN MANET USING DIRECTIONAL ANTENNA International Research Journal of Engineering and Technology (IRJET) e-issn: -00 Volume: 0 Issue: 0 Oct-01 www.irjet.net p-issn: -00 PERFORMANCE ANALYSIS OF AODV, DSR AND ZRP ROUTING PROTOCOLS IN MANET

More information

Comparative Study of Performance Evaluation for Mobile Ad hoc networks using a proxy node

Comparative Study of Performance Evaluation for Mobile Ad hoc networks using a proxy node Comparative Study of Performance Evaluation for Mobile Ad hoc networks using a proxy node G. E. RIZOS georizos@teiep.gr D. C. VASILIADIS dvas@teiep.gr E. STERGIOU ster@teiep.gr Abstract: In this paper,

More information

APPENDIX 1 USER LEVEL IMPLEMENTATION OF PPATPAN IN LINUX SYSTEM

APPENDIX 1 USER LEVEL IMPLEMENTATION OF PPATPAN IN LINUX SYSTEM 152 APPENDIX 1 USER LEVEL IMPLEMENTATION OF PPATPAN IN LINUX SYSTEM A1.1 INTRODUCTION PPATPAN is implemented in a test bed with five Linux system arranged in a multihop topology. The system is implemented

More information

Mobile Ad Hoc Networking: An Essential Technology for Pervasive Computing

Mobile Ad Hoc Networking: An Essential Technology for Pervasive Computing Mobile Ad Hoc Networking: An Essential Technology for Pervasive Computing Jun-Zhao Sun MediaTeam, Machine Vision and Media Processing Unit, Infotech Oulu P.O.Box 4500, FIN-90014 University of Oulu, Finland

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

EQ-BGP: an efficient inter-domain QoS routing protocol

EQ-BGP: an efficient inter-domain QoS routing protocol EQ-BGP: an efficient inter-domain QoS routing protocol Andrzej Beben Institute of Telecommunications Warsaw University of Technology Nowowiejska 15/19, 00-665 Warsaw, Poland abeben@tele.pw.edu.pl Abstract

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

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

SBSCET, Firozpur (Punjab), India

SBSCET, Firozpur (Punjab), India Volume 3, Issue 9, September 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Layer Based

More information

Hosts Address Auto Configuration for Mobile Ad Hoc Networks

Hosts Address Auto Configuration for Mobile Ad Hoc Networks Hosts Address Auto Configuration for Mobile Ad Hoc Networks Sudath Indrasinghe, Rubem Pereira, Hala Mokhtar School of Computing and Mathematical Sciences Liverpool John Moores University M.P.Indrasinghe@2004.ljmu.ac.uk,

More information

Chapter 3. Internet Applications and Network Programming

Chapter 3. Internet Applications and Network Programming Chapter 3 Internet Applications and Network Programming 1 Introduction The Internet offers users a rich diversity of services none of the services is part of the underlying communication infrastructure

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

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

Proposition of a new approach to adapt SIP protocol to Ad hoc Networks

Proposition of a new approach to adapt SIP protocol to Ad hoc Networks , pp.133-148 http://dx.doi.org/10.14257/ijseia.2014.8.7,11 Proposition of a new approach to adapt SIP protocol to Ad hoc Networks I. Mourtaji, M. Bouhorma, M. Benahmed and A. Bouhdir Computer and Communication

More information

Load-Balanced Routing through Virtual Paths: Highly Adaptive and Efficient Routing Scheme for Ad Hoc Wireless Networks

Load-Balanced Routing through Virtual Paths: Highly Adaptive and Efficient Routing Scheme for Ad Hoc Wireless Networks Load-Balanced Routing through Virtual Paths: Highly Adaptive and Efficient Routing Scheme for Ad Hoc Wireless Networks Abdulrahman H. Altalhi Computer Science Department University of New Orleans New Orleans,

More information

Routing Layer Support for Service Discovery in Mobile Ad Hoc Networks

Routing Layer Support for Service Discovery in Mobile Ad Hoc Networks Routing Layer Support for Service Discovery in Mobile Ad Hoc Networks Christopher N. Ververidis and George C. Polyzos Mobile Multimedia Laboratory, Department of Computer Science Athens University of Economics

More information

Student, Haryana Engineering College, Haryana, India 2 H.O.D (CSE), Haryana Engineering College, Haryana, India

Student, Haryana Engineering College, Haryana, India 2 H.O.D (CSE), Haryana Engineering College, Haryana, India Volume 5, Issue 6, June 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A New Protocol

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

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

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

Robust Security Solution to Countermeasure of Malicious Nodes for the Security of MANET

Robust Security Solution to Countermeasure of Malicious Nodes for the Security of MANET Robust Security Solution to Countermeasure of Malicious Nodes for the Security of MANET Kritika Sharma M.tech(CSE) Doon Valley Insttitute of Enggineering & Technology, Karnal Parikshit Singla Assistant

More information

Mobile Devices: Server and Management Lesson 05 Service Discovery

Mobile Devices: Server and Management Lesson 05 Service Discovery Mobile Devices: Server and Management Lesson 05 Service Discovery Oxford University Press 2007. All rights reserved. 1 Service discovery An adaptable middleware in a device (or a mobile computing system)

More information

Internet Firewall CSIS 4222. Packet Filtering. Internet Firewall. Examples. Spring 2011 CSIS 4222. net15 1. Routers can implement packet filtering

Internet Firewall CSIS 4222. Packet Filtering. Internet Firewall. Examples. Spring 2011 CSIS 4222. net15 1. Routers can implement packet filtering Internet Firewall CSIS 4222 A combination of hardware and software that isolates an organization s internal network from the Internet at large Ch 27: Internet Routing Ch 30: Packet filtering & firewalls

More information

Lesson 5-3: Border Gateway Protocol

Lesson 5-3: Border Gateway Protocol Unit 5: Intradomain and Interdomain Protocols Lesson 5-3: Gateway Protocol At a Glance The Gateway Protocol (BGP) is an interdomain routing protocol used in TCP/IP internetworks. BGP was created to allow

More information

Understanding and Exploiting the Tradeoffs between Broadcasting and Multicasting in Mobile Ad Hoc Networks*

Understanding and Exploiting the Tradeoffs between Broadcasting and Multicasting in Mobile Ad Hoc Networks* Understanding and Exploiting the Tradeoffs between Broadcasting and Multicasting in Mobile Ad Hoc Networks* Lap Kong Law, Srikanth V. Krishnamurthy, and Michalis Faloutsos Department of Computer Science

More information

A networking framework for spontaneous interactions in MANETs

A networking framework for spontaneous interactions in MANETs A networking framework for spontaneous interactions in MANETs BACKGROUND AND MOTIVATIONS Promoting interactions Socializing Group wise Transforming places Ephemeral Ad hoc Minimal Application driven User

More information

Load Balancing Routing in Multi-Channel Hybrid Wireless Networks with Single Network Interface

Load Balancing Routing in Multi-Channel Hybrid Wireless Networks with Single Network Interface Load Balancing Routing in Multi-Channel Hybrid Wireless Networks with Single Network Interface Jungmin So Nitin H. Vaidya Coordinated Science Laboratory, University of Illinois at Urbana-Champaign Email:

More information

ssumathy@vit.ac.in upendra_mcs2@yahoo.com

ssumathy@vit.ac.in upendra_mcs2@yahoo.com S. Sumathy 1 and B.Upendra Kumar 2 1 School of Computing Sciences, VIT University, Vellore-632 014, Tamilnadu, India ssumathy@vit.ac.in 2 School of Computing Sciences, VIT University, Vellore-632 014,

More information