Enabling SIP-Based Services in Ad Hoc Networks

Size: px
Start display at page:

Download "Enabling SIP-Based Services in Ad Hoc Networks"

Transcription

1 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 Technology, Hsiuping University of Science and Technology, Taichung, Taiwan wschen@ncnu.edu.tw Abstract- Session Initiation Protocol (SIP) is widely used for establishing multimedia sessions, and chosen as the signaling protocol in the 3GPP standards. It also attracts many attempts to deploy SIP in a Mobile Ad-hoc Network (MANET). However, traditional SIP end points rely on SIP servers to discover one another and exchange SIP messages, which becomes a challenge due to lack of such server-based components in the infrastructure-less MANET. Although there are some approaches in decentralizing the SIP server functions in MANETs, they either consume too much power and bandwidth, or take the random network topology change into little consideration. The Ad-hoc On-demand Distance Vector (AODV) routing protocol uses a reactive strategy to conserve resource consumption. Thus, we propose a middleware that is carefully integrate with AODV in order to minimize the signaling overhead as well as enable SIP-based applications in MANETs. Keywords- Mobile Ad-Hoc Networks; Session Initiation Protocol; ; Decentralized Approach I. INTRODUCTION As new mobile clients become miniaturized and cheaper, it attracts more and more attempts to deploy Internet-based applications over wireless Mobile Ad-hoc Networks (MANETs). For example, the voice-over-ip (VoIP) services are so popular that many people would like to use VoIP further over a MANET for ubiquitous communications. The MANET provides volatile connectivity to mobile nodes without any pre-existing infrastructural support. It can quickly help, for example, emergency response at a disaster site where the network infrastructure is broken down. However, as the mobile nodes spontaneously organize a network on-the-go, the network topology may change from time to time. Owing to conventional Internet-based applications heavily rely on the stable infrastructure of the Internet and server-based components to run: e.g., routers and DNS servers, the dynamic nature of the MANET hinders Internet-based applications from being run in the MANETs straightforwardly. Session Initiation Protocol (SIP) [1] was originally designed for establishing and managing multimedia sessions on the Internet with support of stable infrastructure. The basic SIP operations typically rely on centralized servers, e.g., SIP registration and proxy servers, to work. For example, the registration servers manage user location information while the proxy servers route SIP messages. However, in a MANET, such centralized servers may be no longer available. The SIP user agents may need broadcasting their location information proactively or requesting others on a demand basis. There are also other different approaches. For instance, in [2, 3], it may additionally combine with some extensions that are derived from the service location protocol (SLP) [4]. In [5, 6], it introduces the distributed hash table (DHT) that is well-known used in peer-to-peer architecture, to be used in MANETs. However, it could fail to build its DHT, due to the dynamic nature of MANET. In [7], it puts the SIP server function into the cluster heads. However, since the network topology may change so often that the cluster reformation process may degrade the SIP signaling performance dramatically in real practice. In this paper we propose a middleware that can enable existing SIP-based VoIP applications to be run on MANETs without any modification. The middleware takes over the SIP server functions. Besides, the middleware carefully invoke underlying network routing module while discovering targets and delivering SIP messages. For simplicity, we adopt Ad-hoc On-demand Distance Vector (AODV) routing protocol [8-10] for demonstration. The rest of this paper is organized as follows. Section II provides a brief overview of the SIP protocol. Section III introduces the AODV routing protocol briefly. Section IV states problems about using SIP in MANETs. Section V addresses the design issues about adapting SIP-based services in MANETs. Section VI concludes this paper. A. SIP II. PROTOCOL OVERVIEW SIP is a text-based and HTTP-like application-layer control (signaling) protocol for creating, modifying, and terminating sessions. There are two main components in SIP: the user agent (UA) and the servers (proxy, redirect, and registrar). The UA contains two parts: the user agent client (UAC) and the user agent server (UAS). UAC generates requests, such as,, CANCEL,, BYE, and etc. UAS responds accordingly. The SIP proxy, redirect, and registrar servers are logical functional entities. A physical device can run specific or all types of SIP servers. A user is identified by a SIP address-of-record (AOR) URI that is very similar to an address. A device is identified by a SIP contact address. A user may have multiple devices. Hence, the SIP method may bind one AOR with multiple contact addresses. Such binding information is kept by the location service that usually resides the same server as the registrar does, as shown

2 in Fig. 1. The proxy servers may query the location service to resolve the current addresses of target UAS before route SIP request messages, as shown in Fig. 2. Fig. 1 Basic SIP registration example SIP separates the signaling control from the actual media session. Signaling control messages are usually routed through the proxies, while the media path is delivered directly from end to end, as shown in Fig. 2. The message contains media information in the message body using Session Description Protocol (SDP) The Session Description Protocol (SDP) [11] describes the detail of multimedia sessions. Usually, the media sessions are conveyed by the Real-time Transport Protocol (RTP) [12, 13]. UAC UA Query DNS Server Response SIP Registrar Store UAS Location Service Call Setup 3, for event subscription, notification, and publication model [14-16]. A user agent can act as a watcher and send messages to the presence agent (PA) [15] to request others presence information. A presence user agent (PUA) [15] can send PUBLISH [16] messages to PA to refresh its own presence information. PA usually co-locates with the proxy and/or registrar server. PA can send [14] messages to notify watchers of the change of presence states. B. AODV PUBLISH Presentity Presence Service Watcher Fig. 3 SIP-based presence model SIP Proxy / Registrar The Ad Hoc On-demand Distance Vector Protocol (AODV) protocol [8-10] is a reactive protocol, i.e., the routes are created and maintained only when a mobile node needs to look them up in order to send data to other nodes. The route discovery is started with broadcasting a route request (RREQ) message. On receiving the RREQ message, intermediate nodes as well as the destination can learn and cache a route back to the originator of the request. The route is responded by sending a route reply (RREP) message back, in a unicast way, to the originator of the RREQ, as shown in Fig. 4. RREQ RREP Media Session S D BYE BYE Call Teardown Fig. 2 SIP session establishment flow SIP also provides an extensible framework, as shown in Fig. Fig. 4 Route discovery operations Initially, it is responded by the destination node. However, a route can be determined earlier by an intermediate node that has the fresh enough route to the destination. As long as the mobile node has valid routes to the others, AODV remains silent. Nodes monitor the statuses of links to the next hops in active routes. If a broken link is detected, the node may try to repair and find a detour to the destination node. On the other

3 hand, a broken link can be reported in the way that the node sends a route error (RERR) message to those affected nodes, as shown in Fig. 5. In order to enable the reporting mechanism, each node keeps a precursor list containing the addresses of neighbors that are likely to use it as a next hop toward the destination. The precursor lists can be easily achieved during passing RREP messages. are separate from SIP signaling traffic, they may use normal AODV operations to discover routes as well. Registrar/ Proxy Registrar/ Proxy Data RERR Cache Cache Routing Module Routing Module S D Fig. 5 Reporting unreachable route III. PROBLEMS ABOUT USING SIP IN MANETS In MANETs, there are no centralized servers. Thus, the normal procedure for resolving SIP URI binding information is impossible and so is the routing process for SIP messages via proxy servers. Hence, SIP must operate in a fully decentralized manner while maintaining the same interface and procedures. A mobile node in MANET is apt to move around, which means that it is now a challenge to locate and enquire the target user. In MANETs, there is no dedicated router. Thus, each mobile node must act as a router in order to help others forwarding messages. Basically, there are two major routing strategies: proactive and reactive ones. The proactive strategy continuously updates the routing information of all the mobile nodes. It may generate considerable overhead that impacts the network performance. On the contrary, the reactive strategy only discovers the routes on demand basis, for instance, the AODV. Although the proactive may provide routes quicker than the reactive, they consume more bandwidth and battery power. As bandwidth and battery power are the primary concerns in wireless networks, a reactive strategy is preferable. IV. THE PROPOSED SYSTEM DESIGN We propose a middleware to take over conventional SIP server functions. The middleware allows client applications to be run in MANET as usual. Instead of registering to conventional SIP servers, the SIP client applications simply register to the local middleware. The client applications behave as usual while the middleware takes over all the operations that are performed by conventional SIP servers, as shown in Fig. 6. Like in the Internet-based scenario, the middleware relies on the underlying routing module to deliver SIP messages. Concerning with power and bandwidth consumption, we use AODV for the underlying routing protocol. The AODV messages carry SIP messages during the route discovery, as shown in Fig. 7. On the other hand, since the media sessions Fig. 6 The middleware takes the place of the SIP server Conventionally, Internet-based applications need to query DNS servers for resolving the destination IP addresses. Likewise, a SIP client may also query DNS servers for resolving serving SIP registrar as well as proxy servers before registering itself or any further SIP operations. However, such a resolution is also unavailable in MANETs. In addition to broadcasting schemes, in [2, 3], there are combinations with SLP-like approaches to discover end points. In contrast, we go for pure SIP-based solutions by refining the process of registration and subscription. Since existing SIP-based VoIP and IM-enabled client products usually require SIP registration before proceeding any other SIP operations, the middleware serves as a registrar server, accept user s registration, and bind the user s AOR with IP address locally. The middleware does not broadcast registration information proactively. Afterward, a client may begin sending SIP request (e.g., ) messages to others as well as sending SIP response messages. The local middleware simply acts as the default outbound proxy server that forwards such SIP messages, as shown in Fig. 2. The originating middleware triggers the AODV RREQ message to carry the SIP request message and discover the IP address of untouched SIP URI. All nodes that receive this RREQ message can learn the originator s AOR. The destination middleware puts the SIP response message into the AODV RREP message accordingly. Similarly, all nodes that pass this message can learn the destination AOR. Thus, all the subsequent SIP messages can follow the same route in a unicast manner. While routing SIP messages, a mobile node can learn and originators and destinations latest binding information. Thus, it can also cache such information for later use. However, a mobile node may come and go randomly without notifying others of its movement. Such mobility may cause routes

4 unreachable, AODV Route Error (RERR) Messages address this problem. RERR messages are used for notifying affected nodes of this situation. Thus an affected node can delete, expire, or repair the broken route with possible detours, as well as updates its local cache. Registrar/ Proxy RTP/RTCP AODV Routing RREQ 202 Accepted RREP Fig. 7 The AODV RREP packet piggybacks the SIP response message V. CONCLUSION This paper proposes a middleware to enable SIP-based applications to run in MANETs. The middleware actually takes over the functionalities of SIP servers and discovers target user agents on demand basis. It carefully integrates with the well-known AODV in order to conserve the bandwidth and power consumption. However, there are still some future work to do, e.g., to compare the delay and overhead in terms of different underlying network routing protocols, to inter-work with SIP-based services on the Internet. REFERENCES AODV Routing Registrar/ Proxy 202 Accepted RTP/RTCP [1] Jonathan Rosenberg et al., SIP: session initiation protocol, IETF RFC 3261, Jun [2] Simone Leggio, Jukka M anner, Antti Hulkkonen and Kimmo Raatikainen, Session initiation protocol deployment in ad-hoc networks: a decentralized approach, Proc. 2nd International Workshop on Wireless Ad-hoc Networks (IWWAN), London, May [3] Juhamatti Kettunen, Jukka Manner and Antti Yld-Jaaski, Distributed service location and session management for ad-hoc networks, Proc. IEEE International Symposium on a World of Wireless, Mobile and Multimedia Networks 2007 (WoWMoM 2007), pp. 1-6, Jun [4] Erik Guttman, Charles Perkins, John Veizades and Michael Day, Service location protocol, Version 2, IETF RFC 2608, Jun [5] Ion Stoica et al., Chord: a scalable peer-to-peer lookup protocol for Internet applications, IEEE/ACM Trans. on Networking (TON), vol. 11, No. 1, pp , [6] Kundan Singh and Henning Schulzrinne, Peer-to-peer Internet telephony using SIP, Proc. International Workshop on Network and Operating Systems Support for Digital Audio and Video (NOSSDAV 05), pp , Washington, [7] Nilanjan Banerjee, Arup Acharya and Sajal K. Das, Enabling SIP-based sessions in ad hoc networks, ACM Wireless Networks, vol. 13, pp , Aug [8] Charles E. Perkins and Elizabeth M. Royer, The Ad hoc on-demand distance vector protocol, Ad hoc Networking, C. E. Perkins, Ed. Addison-Wesley, pp , [9] Charles E. Perkins, Elizabeth M. Belding-Royer and Samir R. Das, Ad hoc on-demand distance vector (AODV) routing, IETF RFC 3561, Jul [10] Ian D. Chakeres and Elizabeth M. Belding-Royer, AODV routing protocol implementation design, Proc. 24th Int. Conf. on Distributed Computing Systems Workshops (ICDCSW 04), pp , [11] Mark Handley and Van Jacobson, SDP: session description protocol, IETF RFC 2327, Apr [12] Henning Schulzrinne, Stephen L. Casner, Ron Frederick and Van Jacobson, RTP: a transport protocol for real-time applications, IETF RFC 3550, Jul [13] Henning Schulzrinne and Stephen L. Casner, RTP profile for audio and video conferences with minimal control, IETF RFC 3551, Jul [14] Adam Roach, Session initiation protocol (SIP)-specific event notification, IETF RFC 3265, Jun [15] Jonathan Rosenberg, A presence event package for the session initiation protocol (SIP), IETF RFC 3856, Aug [16] Aki Niemi, Session initiation protocol (SIP) extension for event state publication, IETF RFC 3903, Oct Heng-Te Chu received his MS degree in

5 computer science in 1995 from Syracuse University, NY, USA. Currently, he is a Ph.D candidate of Department of Electrical Engineering, National Chi Nan University, Taiwan. His research interests cover location-aware management, mobile computing, wireless networking, and SIP-based applications Wen-Shiung Chen received the M.S. degree from National Taiwan University, Taipei, Taiwan, in 1985 and the Ph.D. degree from the University of Southern California, Los Angeles, CA, in 1994, both in electrical engineering. He has been with the Department of Electrical Engineering at Feng Chia University, Taichung, Taiwan from 1994 to In 2000, he joined the Department of Electrical Engineering at National Chi Nan University, where he currently is a Professor. His research interests include digital image processing, image analysis and pattern recognition, image and video compression, biometrics, mobile computing and networking

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

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

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

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

Research on P2P-SIP based VoIP system enhanced by UPnP technology

Research on P2P-SIP based VoIP system enhanced by UPnP technology December 2010, 17(Suppl. 2): 36 40 www.sciencedirect.com/science/journal/10058885 The Journal of China Universities of Posts and Telecommunications http://www.jcupt.com Research on P2P-SIP based VoIP system

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

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

SIP: Ringing Timer Support for INVITE Client Transaction

SIP: Ringing Timer Support for INVITE Client Transaction SIP: Ringing Timer Support for INVITE Client Transaction Poojan Tanna (poojan@motorola.com) Motorola India Private Limited Outer Ring Road, Bangalore, India 560 037 Abstract-The time for which the Phone

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

Peer-to-peer SIP-based Services over Wireless Ad Hoc Networks

Peer-to-peer SIP-based Services over Wireless Ad Hoc Networks Peer-to-peer SIP-based Services over Wireless Ad Hoc Networks Nilanjan Banerjee CReWMaN, University of Texas at Arlington banerjee@cse.uta.edu Sajal K. Das CReWMaN, University of Texas at Arlington das@cse.uta.edu

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

A Lightweight Secure SIP Model for End-to-End Communication

A Lightweight Secure SIP Model for End-to-End Communication A Lightweight Secure SIP Model for End-to-End Communication Weirong Jiang Research Institute of Information Technology, Tsinghua University, Beijing, 100084, P.R.China jwr2000@mails.tsinghua.edu.cn Abstract

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

Using SIP Protocol for Bi-directional Push-to-Talk Mechanism over Ad-Hoc Network

Using SIP Protocol for Bi-directional Push-to-Talk Mechanism over Ad-Hoc Network Using SIP Protocol for Bi-directional Push-to-Talk Mechanism over Ad-Hoc Network Shih-yi Chiu Graduate Inst. of Networking and Communication Eng. Chao Yang Univ. of Tech., Taichung, Taiwan s9430605@cyut.edu.tw

More information

Chapter 10 Session Initiation Protocol. Prof. Yuh-Shyan Chen Department of Computer Science and Information Engineering National Taipei University

Chapter 10 Session Initiation Protocol. Prof. Yuh-Shyan Chen Department of Computer Science and Information Engineering National Taipei University Chapter 10 Session Initiation Protocol Prof. Yuh-Shyan Chen Department of Computer Science and Information Engineering National Taipei University Outline 12.1 An Overview of SIP 12.2 SIP-based GPRS Push

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

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

An Efficient Server Load Balancing using Session Management

An Efficient Server Load Balancing using Session Management An Efficient Server Load Balancing using Session Management S.Tharani 1, Balika.J.Chelliah 2, Dr.J.Jagadeesan 3 1 M.Tech.Computer Science and Engg, Ramapuram campus, 2 Asst.prof, Ramapuram campus, 3 Prof,

More information

A Comparative Study of Signalling Protocols Used In VoIP

A Comparative Study of Signalling Protocols Used In VoIP A Comparative Study of Signalling Protocols Used In VoIP Suman Lasrado *1, Noel Gonsalves *2 Asst. Prof, Dept. of MCA, AIMIT, St. Aloysius College (Autonomous), Mangalore, Karnataka, India Student, Dept.

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

Mobile P2PSIP. Peer-to-Peer SIP Communication in Mobile Communities

Mobile P2PSIP. Peer-to-Peer SIP Communication in Mobile Communities Mobile P2PSIP -to- SIP Communication in Mobile Communities Marcin Matuszewski, Esko Kokkonen Nokia Research Center Helsinki, Finland marcin.matuszewski@nokia.com, esko.kokkonen@nokia.com Abstract This

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

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

AN APPROACH TOWARDS THE LOAD BALANCING STRATEGY FOR WEB SERVER CLUSTERS

AN APPROACH TOWARDS THE LOAD BALANCING STRATEGY FOR WEB SERVER CLUSTERS INTERNATIONAL JOURNAL OF REVIEWS ON RECENT ELECTRONICS AND COMPUTER SCIENCE AN APPROACH TOWARDS THE LOAD BALANCING STRATEGY FOR WEB SERVER CLUSTERS B.Divya Bharathi 1, N.A. Muneer 2, Ch.Srinivasulu 3 1

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

Intelligent VoIP System in Ad-Hoc Network with Embedded Pseudo SIP Server

Intelligent VoIP System in Ad-Hoc Network with Embedded Pseudo SIP Server Intelligent VoIP System in Ad-Hoc Network with Embedded Pseudo SIP Server Lin-huang Chang 1,2, Chun-hui Sung 2, Shih-yi Chiu 2, and Jiun-jian Liaw 2 1 Department of Computer and Information Science National

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

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

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

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

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

A Scalable Multi-Server Cluster VoIP System

A Scalable Multi-Server Cluster VoIP System A Scalable Multi-Server Cluster VoIP System Ming-Cheng Liang Li-Tsung Huang Chun-Zer Lee Min Chen Chia-Hung Hsu mcliang@nuk.edu.tw {kpa.huang, chunzer.lee}@gmail.com {minchen, chhsu}@nchc.org.tw Department

More information

SIP: Ringing Timer Support for INVITE Client Transaction

SIP: Ringing Timer Support for INVITE Client Transaction SIP: Ringing Timer Support for INVITE Client Transaction Poojan Tanna (poojan@motorola.com) Motorola India Private Limited Outer Ring Road, Bangalore, India 560 037 Abstract-The time for which the Phone

More information

Sangheon Pack, EunKyoung Paik, and Yanghee Choi

Sangheon Pack, EunKyoung Paik, and Yanghee Choi 1 Design of SIP Server for Efficient Media Negotiation Sangheon Pack, EunKyoung Paik, and Yanghee Choi Multimedia & Communication Laboratory, Seoul National University, Korea ABSTRACT Voice over IP (VoIP)

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

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

ANALYSIS OF LONG DISTANCE 3-WAY CONFERENCE CALLING WITH VOIP

ANALYSIS OF LONG DISTANCE 3-WAY CONFERENCE CALLING WITH VOIP ENSC 427: Communication Networks ANALYSIS OF LONG DISTANCE 3-WAY CONFERENCE CALLING WITH VOIP Spring 2010 Final Project Group #6: Gurpal Singh Sandhu Sasan Naderi Claret Ramos (gss7@sfu.ca) (sna14@sfu.ca)

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

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

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

Load Balancing Support for Self-Organizing IMS Networks

Load Balancing Support for Self-Organizing IMS Networks Load Balancing Support for Self-Organizing IMS Networks Christian Makaya, Ashutosh Dutta, Subir Das, Dana Chee, F. Joe Lin Telcordia Technologies, Inc. Piscataway, NJ, USA Email: adutta@research.telcordia.com

More information

Network Convergence and the NAT/Firewall Problems

Network Convergence and the NAT/Firewall Problems Network Convergence and the NAT/Firewall Problems Victor Paulsamy Zapex Technologies, Inc. Mountain View, CA 94043 Samir Chatterjee School of Information Science Claremont Graduate University Claremont,

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

Session Initiation Protocol and Services

Session Initiation Protocol and Services Session Initiation Protocol and Services Harish Gokul Govindaraju School of Electrical Engineering, KTH Royal Institute of Technology, Haninge, Stockholm, Sweden Abstract This paper discusses about the

More information

Improving Quality in Voice Over Internet Protocol (VOIP) on Mobile Devices in Pervasive Environment

Improving Quality in Voice Over Internet Protocol (VOIP) on Mobile Devices in Pervasive Environment Journal of Computer Applications ISSN: 0974 1925, Volume-5, Issue EICA2012-4, February 10, 2012 Improving Quality in Voice Over Internet Protocol (VOIP) on Mobile Devices in Pervasive Environment Mr. S.Thiruppathi

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

Security in Ad Hoc Network

Security in Ad Hoc Network Security in Ad Hoc Network Bingwen He Joakim Hägglund Qing Gu Abstract Security in wireless network is becoming more and more important while the using of mobile equipments such as cellular phones or laptops

More information

NAT TCP SIP ALG Support

NAT TCP SIP ALG Support The feature allows embedded messages of the Session Initiation Protocol (SIP) passing through a device that is configured with Network Address Translation (NAT) to be translated and encoded back to the

More information

Session Initiation Protocol (SIP) The Emerging System in IP Telephony

Session Initiation Protocol (SIP) The Emerging System in IP Telephony Session Initiation Protocol (SIP) The Emerging System in IP Telephony Introduction Session Initiation Protocol (SIP) is an application layer control protocol that can establish, modify and terminate multimedia

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 for MANETs connected to the Internet

Quality of Service for MANETs connected to the Internet Quality of Service for MANETs connected to the Internet Andreas J. Kassler 1, ChenShanShan 2 1 Karlstad University, Computer Science Department, Universitetgatan 2, 65188 Karlstad, Sweden, kassler@ieee.org

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

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK AN OVERVIEW OF MOBILE ADHOC NETWORK: INTRUSION DETECTION, TYPES OF ATTACKS AND

More information

SOSIMPLE: A SIP/SIMPLE Based P2P VoIP and IM System

SOSIMPLE: A SIP/SIMPLE Based P2P VoIP and IM System 1 SOSIMPLE: A SIP/SIMPLE Based P2P VoIP and IM System David A. Bryan and Bruce B. Lowekamp Computer Science Department College of William and Mary Williamsburg, VA 23185 {bryan, lowekamp}@cs.wm.edu Abstract

More information

Bridging the gap between peer-to-peer and conventional SIP networks

Bridging the gap between peer-to-peer and conventional SIP networks 1 Bridging the gap between peer-to-peer and conventional SIP networks Mosiuoa Tsietsi, Alfredo Terzoli, George Wells Department of Computer Science Grahamstown, South Africa Tel: +27 46 603 8291 hezekiah@rucus.ru.ac.za

More information

Nomination-based Session Initiation Protocol Service for Mobile Ad Hoc Networks

Nomination-based Session Initiation Protocol Service for Mobile Ad Hoc Networks 22nd National Conference of the Australian Society for Operations Research, Adelaide, Australia, 1 6 December 2013 www.asor.org.au/conferences/asor2013 Nomination-based Session Initiation Protocol Service

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

Implementation of Video Voice over IP in Local Area Network Campus Environment

Implementation of Video Voice over IP in Local Area Network Campus Environment Implementation of Video Voice over IP in Local Area Network Campus Environment Mohd Nazri Ismail Abstract--In this research, we propose an architectural solution to integrate the video voice over IP (V2oIP)

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

SIP : Session Initiation Protocol

SIP : Session Initiation Protocol : Session Initiation Protocol EFORT http://www.efort.com (Session Initiation Protocol) as defined in IETF RFC 3261 is a multimedia signaling protocol used for multimedia session establishment, modification

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

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

Alkit Reflex RTP reflector/mixer

Alkit Reflex RTP reflector/mixer Alkit Reflex RTP reflector/mixer Mathias Johanson, Ph.D. Alkit Communications Introduction Real time audio and video communication over IP networks is attracting a lot of interest for applications like

More information

Programming SIP Services University Infoline Service

Programming SIP Services University Infoline Service Programming SIP Services University Infoline Service Tatiana Kováčiková, Pavol Segeč Department of Information Networks University of Zilina Moyzesova 20, 010 26 SLOVAKIA Abstract: Internet telephony now

More information

SIP Service Providers and The Spam Problem

SIP Service Providers and The Spam Problem SIP Service Providers and The Spam Problem Y. Rebahi, D. Sisalem Fraunhofer Institut Fokus Kaiserin-Augusta-Allee 1 10589 Berlin, Germany {rebahi, sisalem}@fokus.fraunhofer.de Abstract The Session Initiation

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

Dynamic Scalable Model for Video Conferencing (DSMVC) using Request Routing

Dynamic Scalable Model for Video Conferencing (DSMVC) using Request Routing Dynamic Scalable Model for Video Conferencing (DSMVC) using Request Routing Adeel Anwar Abbasi*, Tahir Mehmood** {*Department of Computer Sciences, Shaheed Zulfiqar Ali Bhutto Institute of Science 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

Address Resolution in Mobile Ad Hoc Networks using Adaptive Routing

Address Resolution in Mobile Ad Hoc Networks using Adaptive Routing Address Resolution in Mobile Ad Hoc Networks using Adaptive Routing Thomas Finke, Juergen Schroeder Department of Electronics and Information Technology Heilbronn University, Germany {thomas.finke,juergen.schroeder}@hs-heilbronn.de

More information

Chapter 2 PSTN and VoIP Services Context

Chapter 2 PSTN and VoIP Services Context Chapter 2 PSTN and VoIP Services Context 2.1 SS7 and PSTN Services Context 2.1.1 PSTN Architecture During the 1990s, the telecommunication industries provided various PSTN services to the subscribers using

More information

Design of a SIP Outbound Edge Proxy (EPSIP)

Design of a SIP Outbound Edge Proxy (EPSIP) Design of a SIP Outbound Edge Proxy (EPSIP) Sergio Lembo Dept. of Communications and Networking Helsinki University of Technology (TKK) P.O. Box 3000, FI-02015 TKK, Finland Jani Heikkinen, Sasu Tarkoma

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

A Scalable Architecture for SIP Infrastructure using Content Addressable Networks

A Scalable Architecture for SIP Infrastructure using Content Addressable Networks A Scalable Architecture for Infrastructure using Content Addressable Networks Ramrajprabu Balasubramanian Injong Rhee Jaewoo Kang Department of Computer Science North Carolina State University Raleigh,

More information

Simulation of SIP-Based VoIP for Mosul University Communication Network

Simulation of SIP-Based VoIP for Mosul University Communication Network Int. J. Com. Dig. Sys. 2, No. 2, 89-94(2013) 89 International Journal of Computing and Digital Systems http://dx.doi.org/10.12785/ijcds/020205 Simulation of SIP-Based VoIP for Mosul University Communication

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

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

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

Enterprise VoIP Services over Mobile Ad-Hoc Technologies

Enterprise VoIP Services over Mobile Ad-Hoc Technologies Enterprise VoIP Services over Mobile Ad-Hoc Technologies 1 System Architecture Figure 1 illustrates the system architecture. We can divide it into 2 parts. One is the Mobile VoIP Box (MVB) node and the

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

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

EE4607 Session Initiation Protocol

EE4607 Session Initiation Protocol EE4607 Session Initiation Protocol Michael Barry michael.barry@ul.ie william.kent@ul.ie Outline of Lecture IP Telephony the need for SIP Session Initiation Protocol Addressing SIP Methods/Responses Functional

More information

Research Article A Two-Layered Mobility Architecture Using Fast Mobile IPv6 and Session Initiation Protocol

Research Article A Two-Layered Mobility Architecture Using Fast Mobile IPv6 and Session Initiation Protocol Hindawi Publishing Corporation EURA Journal on Wireless Communications and Networking Volume 2008, Article ID 348594, 8 pages doi:10.1155/2008/348594 Research Article A Two-Layered Mobility Architecture

More information

Quantitative Analysis of 2-tier P2P- SIP Architecture with ID-based Signature

Quantitative Analysis of 2-tier P2P- SIP Architecture with ID-based Signature A Thesis for the degree of Master Quantitative Analysis of 2-tier P2P- SIP Architecture with ID-based Signature Chang-Hwan Lee School of Engineering Information and Communications University 2008 i Quantitative

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

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

Secured Data Transmissions In Manet Using Neighbor Position Verfication Protocol

Secured Data Transmissions In Manet Using Neighbor Position Verfication Protocol www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 3 Issue3 March, 2014 Page No. 5067-5071 Secured Data Transmissions In Manet Using Neighbor Position Verfication

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

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

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

User authentication in SIP

User authentication in SIP User authentication in SIP Pauli Vesterinen Helsinki University of Technology pjvester@cc.hut.fi Abstract Today Voice over Internet Protocol (VoIP) is used in large scale to deliver voice and multimedia

More information

Adding Multi-Homing and Dual-Stack Support to the Session Initiation Protocol

Adding Multi-Homing and Dual-Stack Support to the Session Initiation Protocol Adding Multi-Homing and Dual-Stack Support to the Session Initiation Protocol Mario Baldi, Fulvio Risso, Livio Torrero Dipartimento di Automatica e Informatica, Politecnico di Torino, Torino, Italy {mario.baldi,

More information

SIP: NAT and FIREWALL TRAVERSAL Amit Bir Singh Department of Electrical Engineering George Washington University

SIP: NAT and FIREWALL TRAVERSAL Amit Bir Singh Department of Electrical Engineering George Washington University SIP: NAT and FIREWALL TRAVERSAL Amit Bir Singh Department of Electrical Engineering George Washington University ABSTRACT The growth of market for real-time IP communications is a big wave prevalent 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

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

Survey on Load balancing protocols in MANET S (mobile ad-hoc networks)

Survey on Load balancing protocols in MANET S (mobile ad-hoc networks) Survey on Load balancing protocols in MANET S (mobile ad-hoc networks) Ramandeep Kaur 1, Gagandeep Singh 2, Sahil Vashist 3 1 M.tech Research Scholar, Department of Computer Science & Engineering, Chandigarh

More information

A Self-Managing SIP-based IP Telephony System based on a P2P approach using Kademlia

A Self-Managing SIP-based IP Telephony System based on a P2P approach using Kademlia A Self-Managing SIP-based IP Telephony System based on a P2P approach using Kademlia Felipe de Castro Louback Rocha 1, Linnyer Beatriz 1 Programa de Pós Graduação em Engenharia Elétrica, Universidade Federal

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