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

Size: px
Start display at page:

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

Transcription

1 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

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

3 Quantitative Analysis of 2-tier P2P- SIP Architecture with ID-based Signature Advisor : Professor Young-Hee Lee by Chang-Hwan Lee School of Engineering Information and Communications University A thesis submitted to the faculty of Information and Communications University in partial fulfillment of the requirements for the degree of Master of Science in the School of Engineering Daejeon, Korea January 7, Approved by (signed) Professor Young-Hee Lee Major Advisor iii

4 Quantitative Analysis of 2-tier P2P-SIP Architecture with ID-based Signature Chang-Hwan Lee We certify that this work has passed the scholastic standards requested by the Information and Communications University as a thesis for the degree of Master January 7, 2008 Approved: Chairman of the Committee Young-Hee Lee, Professor School of Engineering Committee Member Kwang-Jo Kim, Professor School of Engineering Committee Member Myung-Chul Kim, Professor School of Engineering iv

5 M.S Chang-Hwan Lee Quantitative Analysis of 2-tier P2P-SIP Architecture with ID-based Signature School of Engineering. 2008, p.40 Major Advisor: Professor. Young-Hee Lee. Text in English Abstract SIP (Session Initiation Protocol) is IETF standard signaling protocol for VoIP (Voice over IP) and other multimedia services. Recently, there have been some efforts to propose P2P-SIP architecture, which makes use of a peer-to-peer network instead of registrar and location SIP servers in order to facilitate SIP user registration and location. However, existing P2P-SIP systems still have some problems. Current P2P-SIP lookup does not meet the requirement for low time delay in multimedia services. Furthermore, security procedure based on PKI for SIP message authentication requires verification of central authorities (CA) during message routing and certificates maintenance of intermediate nodes. It puts more delay in signaling as users increase in the P2P-SIP network. Therefore, we propose 2-tier P2P-SIP architecture, using ID-based signature which has more light-weight authentication procedure and decreases the session setup latency to some extent, and perform quantitative analysis of this architecture. ID-based signature allows users to verify digital signatures using only public information such as the user's identity, so that it reduces the complexity and costs for establishing and managing the public key of nodes. Based on the performance analysis and simulation results, our proposed 2-tier P2P-SIP architecture achieves better scalability as well as shorter session setup i

6 latency than PKI-based P2P-SIP architecture. ii

7 Contents A Thesis for the degree of Master... i Abstract... i Contents...iii List of Tables... v List of Figures... vi List of Abbreviations...vii I Introduction Peer-to-Peer SIP architecture Main Issues in P2P-SIP Session Setup Latency Message Authentication Overhead Problem Statement Thesis Organization... 5 II Related Work Works on P2P-SIP Skype Security Extensions for P2P-SIP ID-based Cryptography... 9 III 2-tier P2P-SIP Architecture with ID-based signature Building 2-tier Hierarchy and Utilizing Localized Cache Adopting the ID-based Signature to P2P-SIP system Key generation Resource registration...16 iii

8 3.2.3 Resource location and verification...18 IV Performance Evaluation Implementation of 2-tier P2P-SIP model, using ID-based signature Simulation environment Metrics for evaluation and Simulation result V Conclusions and Future-work References Acknowledgements Curriculum Vitae iv

9 List of Tables Table 1. Simulation parameters v

10 List of Figures Figure 1. 2-tier P2P-SIP with localized cache Figure 2. Registration with ID-based signature Figure 3. Resource location and verification of reource integrity Figure 4. P2P-SIP node architecture Figure 5. Session setup over P2P-SIP Figure 6. Effect of 2-tier hierarchy & localized cache 10% Figure 7. Effect of 2-tier hierarchy & localized cache 20% Figure 8. Effect of ID-based signature I Figure 9. Effect of ID-based signature II Figure 10. Effect of ID-based signature III Figure 11. Node overall bandwidth vi

11 List of Abbreviations ICU Information and Communications University vii

12 I Introduction SIP (Session Initiation Protocol) [1] is the most popular protocol for various multimedia services based on the Internet, including VoIP, conferencing application and IPTV. It is widely used by enterprise, consumers, and even carriers in the core of their networks. SIP is designed for establishing media sessions of any kind and it is a text-based client-server protocol. But the centralized SIP server becomes the single point of failure. So, Peer-to-Peer SIP has been recently focused on as an approach for handling media sessions with robustness and system scalability [2], [3], [4], [5]. There has been much speculation that this interest can be attributed Skype [6], the most popular P2P communication service provider. Researchers thus try to combine P2P and SIP functionality on the application layer, where participating nodes build an overlay network and locate the resources among these nodes. 1.1 Peer-to-Peer SIP architecture As the alternative to Client-Server SIP, P2P-SIP has been recently studied by many researchers due to its easy deployment and robustness against failure as benefits compared to using centralized servers. P2P inherently has high scalability because the capacity scales with user population, and robustness and fault tolerance because there is no centralized server and the network selforganizes itself. This is achieved at the cost of higher signaling latency for locating the resources of interest in the P2P overlay network. And the selforganizing aspects of P2P lend themselves to systems that are easier to configure and manage than centralized systems. Therefore, P2P-SIP removes or reduces 1

13 the number of centralized SIP servers needed in a SIP deployment and provides robustness because of the lack of a single point of failure. The centralized aspect of SIP architecture is the registrar and location server. In P2P-SIP, the peers store the resources of interest, rather than registrar and location server. In particular, P2P-SIP builds on a DHT (Distributed Hash Table). A peer is assigned its own ID by an authentication server, the hash of an IP address. Once the server assigns peer-id, the server does not need to be asked again during operation. And the user generates resource-id in the same space by hashing the SIP-URI of the user. As with any DHT, each peer knows about some fixed number of peers distributed across the overlay. To route a message, the peer with the closest peer- ID to the requested resource-id is selected from the list of known peers. The message is then sent to this closest known peer. The process repeats, converging on the peer with the nearest value. Usually, there are two approaches on P2P-SIP. The first approach is SIP over P2P, which replaces SIP location service by a P2P protocol and the second approach is P2P over SIP, which uses SIP messages as the syntax to encode the P2P protocol. Some researches [7] have combined two approaches into on hybrid architecture. 1.2 Main Issues in P2P-SIP The integration of SIP and P2P brings many benefits. Some of centralized SIP servers can be reduced and the robustness and scalability of SIP is improved. There has been many works on P2P-SIP now. However, some issues still need to be addressed. 2

14 1.2.1 Session Setup Latency Session setup latency can be intolerable when too many peer nodes join in a P2P-SIP network. Existing P2P-SIP systems store and locate resources in P2P- SIP networks based on DHT algorithms, such as Chord [8], CAN [9] and Pastry [10]. Basically, system scalability and robustness of P2P-SIP are achieved at the cost of higher signaling latency for locating the resources of interest in the P2P overlay network. Session setup latency increase when the number of peer nodes in a DHT based P2P-SIP increases. For example, session setup latency in P2P- SIP with N-nodes based on Chord is O(log N), which will increase when N increases Message Authentication Overhead Without an authentication server, authentication of the resource stored in a P2P-SIP network is difficult task. In order to authenticate the resources in P2P- SIP, the signature can be attached to the end of message under PKI (Public Key Infrastructure) framework. However, the PKI-based signature model requires verification of central authorities (CA) during SIP message routing and certificates maintenance of intermediate nodes for authentication procedure. It puts more delay in signaling as users increase in P2P-SIP. Especially, much delay in signaling of real-time multimedia communication can be a significant problem. 3

15 1.3 Problem Statement The P2P-SIP architecture improves the performance of client-server SIP system in aspects of robustness and system scalability. However, existing P2P- SIP system still needs to address some problems. Basically, session setup in P2P- SIP takes about O(log N) times more than client-server session setup O(1) in aspects of latency. Furthermore, Using PKI-based signature for SIP message authentication burdens session setup with high latency. Thus, the design goal of secure P2P-SIP should achieve low latency for real-time multimedia services In this thesis, we propose 2-tier P2P-SIP architecture, using ID-based signature which has more light-weight authentication procedure and decreases the session setup latency to some extent, perform quantitative analysis about the proposed architecture through the simulation tool and present proper network scalability for this architecture. ID-based signature is firstly proposed in [11], which is signature scheme, based on the bilinear pairings on elliptic curves. IDbased signature allows users to verify digital signatures using only public information such as the user's identity, while PKI-based signature requires verification of each user s public key from CAs. It can utilize public identifier such as ID or SIP-URI as a public key, so that it reduces the complexity and costs for establishing and managing the public key of nodes. Additionally, we build 2-tier hierarchy and utilize localized cache for fast session setup. According to the storage capacity and network connectivity, the P2P-SIP node is classified into two types, which are super node and ordinary node. Once a node locates the resource of interest, the resource will be stored at the localized cache of its super node for certain time of period. 4

16 1.4 Thesis Organization The remaining sections are organized as follows. Section 2 gives brief overview about some draft documents proposed in IETF P2P-SIP Working Group and explains about the ID-based cryptography. In Section 3, the proposed P2P-SIP architecture with ID-based signature is described. And Section 4, we evaluate the performance of our P2P-SIP architecture with ID-based signature in aspects of session setup latency and node bandwidth. Finally, Section 5 concludes the thesis. 5

17 II Related Work 2.1 Works on P2P-SIP The integration of SIP and P2P is interesting work in multimedia domain. In this chapter, we look through the existing works on P2P-SIP architectures. Firstly, Kundan et al [2], present P2P Internet telephony architecture using SIP. They use Chord as the underlying distributed hash table (DHT) and extend SIP protocol to support P2P. In this architecture, P2P messages are sent over the SIP infrastructure. Secondly, David et al [3], combine the SIP/SIMPLE family of IETF standards for VoIP and IM with Gnutella protocol. SIP/SIMPLE is one P2P over SIP protocol. Besides in [4], they use an External DHT as a SIP location service. In this situation, applications use SIP to establish conversation and use P2P as route protocol. The P2P arithmetic is based on Chord. Additionally, there exist already P2P-SIP working groups patronized by IETF [5]. Many people propose the draft documents on critical issues of P2P-SIP and try to solve the issues and standardize the P2P-SIP architecture. 6

18 2.2 Skype A Skype [6] is a free P2P application based on Kazaa [12] architecture that allows making calls over the Internet to any other Skype user. Skype has the following problems: The protocol is proprietary unlike open standards such as SIP. Most importantly, it has centralized elements for login authentication which means that if this element fails, the system may not work. The Skype s architecture is no different from the classical SIP architecture, except that Skype s Global Index Server assigns a super-node for a new joining node. The super-node, similar to the SIP registrar, proxy and presence server, maintains the presence information for this node, and locates other users by communicating with other super-nodes. A node that has enough capacity and availability can become a super-node. We believe that the lookup is based on some variation of flooding, similar to Kazaa. The main advantage of Skype is that it implements the equivalent of STUN [13] and TURN [14] servers in the node itself to handle NAT [15], unlike explicit server configuration in existing SIP applications. 7

19 2.3 Security Extensions for P2P-SIP P2P-SIP provides peer-to-peer registration and resource location that can be used for SIP applications. A secure P2P-SIP network requires protection from a variety of security threats. Joining peers should only be admitted into an overlay if they are authorized members of that overlay. Resources (users) should be authenticated before communication begins. The overlay's links and the data registered on the peers should be protected from attackers. Without such security measures in place, attackers can generate false identities and become peers in the system, where they can interfere with message routing and maintenance of the overlay structure. They can also masquerade as other, valid users or resources in the overlay, possibly generating false responses to resource requests. The goal of P2P-SIP is to scale gracefully from ad hoc groups of a few people to overlays of millions of peers across the globe. As such, there is no one security model that fits the needs of all envisioned environments: for the small network establishing a certificate chain is difficult, while for a global network the unrestricted ability to insert resources and devise useful Peer IDs is a clear invitation to insecurity. To address this issue, some people propose the draft document about the P2P-SIP authentication. [16] This work offers one security model. It is a public key certificate system applicable to larger deployments in which the administrative costs of public key management is preferable to the scalability issues of shared secret keys. 8

20 2.4 ID-based Cryptography ID-based cryptography [11] is an asymmetric key authentication system in which the public key of a user is some unique information about the identity of the user (e.g. a user's address or telephone number). Firstly, the identitybased cryptosystem was a signature scheme developed by Adi Shamir in 1984, which allowed users to verify digital signatures using only public information such as the user's identity. Current ID-based schemes include Boneh/Franklin's pairing-based encryption scheme, and Cocks's encryption scheme based on quadratic residues. Identity-based systems allow any users to generate a public key from a known identity value such as ID or telephone number. A trusted third party, called the Private Key Generator (PKG), constructs the corresponding private keys. To work, the PKG first publishes a "master" public key, and retains the corresponding master private key. Given the master public key, any users can generate a public key corresponding to the identity i by combining the master public key with the identity value. To obtain a corresponding private key, the user is authorized to use the identity i, contacting the PKG, which uses the master private key to generate the private key for identity i. As a result, users may encrypt messages (or verify signatures) with no prior distribution of keys between individual participants. This is remarkably efficient in cases where pre-distribution of authenticated keys is inconvenient or infeasible due to technical restrictions. However, to decrypt or sign messages, 9

21 the authorized user must obtain the appropriate private key from the PKG. A prior settlement of the ID-based schemes is that the PKG must be highly trusted, as it is capable of generating any user's private key and may therefore decrypt (or sign) messages without authentication. Because any user's private key can be computed through the use of the third party's secret, this system has inherent key escrow. Lots of variant systems have been proposed which remove the escrow including certificate-based encryption and secure key issuing cryptography. 10

22 III 2-tier P2P-SIP Architecture with ID-based signature We have studied on the overview of Peer-to-Peer SIP architecture and some critical issues in P2P-SIP now. Still, there are some problems to be addressed. Current P2P-SIP model for message authentication has high latency of lookup and verification procedures for multimedia services. Thus, we propose 2-tier P2P-SIP architecture, using ID-based signature which can decrease the session setup latency, so as to meet the low latency requirement in case of multimedia services and prove that the proposed architecture achieves proper network scalability. First of all, we build 2-tier hierarchy and utilize localized caches in the P2P-SIP system in order to improve the performance in aspects of session setup latency. According to storage capacity and network connectivity of a node, a P2P-SIP network is comprised of super nodes and child nodes. 2-tier P2P-SIP architecture makes the system more scalable and the session setup faster. Additionally, super nodes preserve the resource for a certain time of period once the resource is requested. Secondly, we adopt ID-based signature to the P2P-SIP system in the first time to reduce the session setup latency. It allows users to verify digital signatures using only public information such as the user's identity, so that it reduces the complexity and costs for establishing and managing the public key of nodes. With this 2-tier P2P-SIP architecture using ID-based signature, users can make any kind of media session with other users. Based on 2-tier hierarchy, localized cache and ID-based signature, latency for lookup is faster than existing secure P2P-SIP system. 11

23 3.1 Building 2-tier Hierarchy and Utilizing Localized Cache In order to meet the requirement of low latency for multimedia services, we build 2-tier hierarchy in the P2P-SIP system first of all. According to storage capacity and network connectivity of a node, there are two types of nodes in the P2P-SIP system, super node and child node. Super nodes perform lookup service and resource storage service on behalf of child nodes. Child nodes stick to their super nodes, while they only request necessary services to super nodes. Usually, super nodes are stable nodes, while child nodes are weak and dynamic nodes in the P2P-SIP network. However, child nodes are allowed to promote to the role of super nodes whenever they satisfy the criteria on storage capacity and network connectivity. In the lookup service, super nodes can perform both local lookup within their child nodes and DHT-based lookup among them, and preserve the resource as a localized cache for a certain time of period once it is requested. Figure 1 below shows overall picture about 2-tier P2P-SIP architecture with localized cache. Performing two types of lookup under 2-tier hierarchy and utilizing a localized cache make session setup faster than current P2P-SIP system. 12

24 Figure 1. 2-tier P2P-SIP with localized cache 13

25 3.2 Adopting the ID-based Signature to P2P-SIP system ID-based signature scheme is firstly proposed in [11], which is signature scheme, based on the bilinear pairings on elliptic curves. ID-based signature allows users to verify digital signatures using only public information such as the user's identity, while PKI-based signature requires verification of each user s public key from CAs. It can utilize public identifier such as ID or SIP- URI as a public key, so that it reduces the complexity and costs for establishing and managing the public key of nodes. Thus, we make an efficient resource registration and location scheme, using ID-based signature. In order to authenticate resources in P2P-SIP, the user needs to generate ID-based signature and attach the signature to the end of message. In our work, we make use of Hess s ID-based signature algorithm [17]. First, the user creates a public-private key pair. Then the user signs the resource with a private key and registers signed resource to the peer-to-peer network. In turn of resource location, the user gets the signed resource from the peer-to-peer network and verifies that resource with public key, which can be his ID or SIP-URI. In detail, the scheme works as follows: 14

26 3.2.1 Key generation In this process, the user creates a public-private key pair and generates a specific ID for resource to be stored in peer-to-peer network. First of all, the user calculates the public key by using a hash function such as SHA-1. The generation of private key is performed by Private Key Generator, which is one of the trusted third parties. PKG computes the private key, using public key and one temporary random number by Hess s ID-based signature algorithm [17]. The specific procedure for generating private key is out of scope in this thesis. Then, the user can get the private key from PKG directly. And, the user needs to generate the resource ID by using another hash function within network size, N. This is the first step to make an ID-based signature, which attaches to the SIP message. Public Key = hash_func1 (SIP-URI) Private Key = multiplicative pairing operation (t, public key) Resource ID = hash_func2 (SIP-URI) / N 15

27 3.2.2 Resource registration In this process, the user creates two types of signature u and v, and calls put method of peer-to-peer network to store the signed resource. The creation of two signatures requires several operations of Hess s ID-based signature scheme. The specific procedure for generating two types of signature, u and v is out of scope in this thesis. After generating two signature, u and v, those are stored at other super nodes in the P2P-SIP network with resource itself. r = [pairing (P1, P)]k Q id = multiplicative operation (t, P) v = hash_func3 (resource information, r) u = additive operation [multiplicative operation (v, private key), multiplicative operation (k, P1)] P2P.put (id, resource information, u, v) register! 16

28 Figure 2. Registration with ID-based signature 17

29 3.2.3 Resource location and verification In this process, the user calls get method of peer-to-peer network to locate the signed resource and verify the integrity of the resource with two types of signature u and v. The verification of signed resource also requires several operations of Hess s ID-based signature scheme. The specific procedure for verifying the integrity of resource with two signatures, u and v is out of scope in this thesis. However, the user can identify the authenticity through the comparison of signature values P2P.get (SIP-URI) = resource information, u, v locate! r = multiplicative operation {pairing (u, P), [pairing (public key, Qid)]v} v = hash_func3 (resource information, r) compare v with v verify! 18

30 Figure 3. Resource location and verification of reource integrity 19

31 IV Performance Evaluation This chapter describes the performance evaluation in two aspects of the proposed architecture by simulating with Peer-to-Peer simulator (p2psim) [18]. The p2psim can evaluate and investigate various peer-to-peer protocols. It runs in several UNIX-like operating systems. We evaluated the proposed architecture through this tool. Additionally, we implemented SIP protocol over Chord protocol of p2psim and signature generation procedures for PKI-based model and ID-based model. We are interested in lookup latency as a performance metric. The lookup latency is very significant since much delay in P2P-SIP for multimedia communication cannot happen to establish a session with others successfully. The p2psim tool shows statistics about latency of each lookup event during simulations. We make use of those statistics for measurement. 20

32 4.1 Implementation of 2-tier P2P-SIP model, using ID-based signature Our proposed 2-tier P2P-SIP model is implemented in p2psim simulation tool. Basically, our model follows SIP over P2P approach, which means replacing SIP location service by any possible P2P protocol. In p2psim simulation tool, we choose the Chord protocol [8] as an underlying P2P protocol and add the SIP functionality over Chord implementation in p2psim. Figure 4 shows the typical P2P-SIP node architecture used in p2psim simulation tool. In this tool, we define two type of node, which consists of super peer and ordinary peer. Both of nodes are based on the structure illustrated at Figure 4. The super peers build the overall network structure in P2P-SIP and each of them has storage capacity regulating how many ordinary peers can be controlled. They control the promotion of their ordinary peers based on predefined criteria. We set the criteria of promotion as network connectivity for a certain time of period and storage capacity which can take over more than 10 ordinary peers. And ordinary peers assign their super peer when they try to join in the P2P-SIP network by the specific entry point. In the P2P module of node, each peer gets its own peer ID, which is generated by consistent hash function such as SHA-1. Also, resource ID is generated using consistent hash function. In our simulation, the space of these identifiers ranges over 32bit. 21

33 Application SIP User Agent SIP Proxy SIP message P2P-SIP peer P2P module (Chord) Lookup Network Data link & Physical Figure 4. P2P-SIP node architecture The interaction between P2P module and SIP module is operated by the following sequences. Firstly, the SIP user agent constructs REGISTER SIP message and send it over P2P module. Then the P2P module gets the SIP message and identifies the destination of SIP message through parsing. After identifying the destination of SIP message, the lookup method is performed by the P2P module and receives the corresponding IP address of destination node. With identified location information, SIP proxy sends INVITE SIP message over IP network, so as to setup the session with destined node. 22

34 Figure 5. Session setup over P2P-SIP As illustrated at Figure 5, the REGISTER SIP message is first sent by the ordinary peer and its super peer parses the message and sent P2P message over the P2P network by performing lookup method. 23

35 4.2 Simulation environment Table 1 shows the parameter of simulation to evaluate the P2P-SIP protocol based on p2psim. Network size(n) 100, 500, 1000, 3000, 5000, 10000, 30000, Network topology P2P protocol Euclidean model Chord Number of lookup event 30, 100, 1000 Total execution cycle Table 1. Simulation parameters The topology used for evaluation of the proposed P2P-SIP architecture is Euclidean model, which is a metric topology induced by the Euclidean metric. The basic peer-to-peer protocol used for P2P-SIP is Chord, which is one of the original distributed hash table protocols. For different network sizes (100 to 50000) and different lookup trials (10 to 40), we performed simulations to quantize the performance of the proposed scheme, using ID-based signature and the existing scheme, using PKI-based signature. 24

36 4.3 Metrics for evaluation and Simulation result Metrics for evaluation are followings: i) routing hops as session setup latency, and ii) node bandwidth as network overhead. Routing hops from source user to destination user shows the extent of session setup latency indirectly. Overall bandwidth of each node shows the extent of network overhead. 25

37 Figure 6. Effect of 2-tier hierarchy & localized cache 10% We have evaluated the proposed P2P-SIP model with ID-based signature in comparison with PKI-based P2P-SIP model in aspects of session setup latency. Figure 6 shows the evaluation result under 30 lookup events. Firstly, we construct a 2-tier P2P-SIP architecture given 20 super nodes and assume that there exists 10% hit ratio in cache. Then we attach ID-based signature to SIP message. As a result of evaluation with this design, the proposed model represents lower session setup latency than PKI-based model. In this simulation, session setup latency is represented by the number of hops needed to perform a successful lookup. As nodes increase in the P2P-SIP network, the gap of lookup cost between the proposed model with ID-based signature and PKI-based model is getting bigger. As a result of quantitative comparison, we identify average 22.98% of improvement in aspect of session setup latency from 2-tier P2P-SIP with 10% hit ratio cache. 26

38 Figure 7. Effect of 2-tier hierarchy & localized cache 20% In this evaluation, we assume that there exists 20% hit ratio in cache under 2- tier P2P-SIP model with 20 super nodes. Figure 7 shows the result of evaluation under 30 lookup events. As a result of evaluation with this design, the proposed model also plots lower lookup cost than PKI-based model. The network size varies from 100 to As a result of quantitative comparison, we identify average 32.56% of improvement in aspect of session setup latency from 2-tier P2P-SIP with 20% hit ratio cache. In case of the system with high hit ratio, session setup latency is decreased remarkably. 27

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

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

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

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

OVERVIEW OF ALL VOIP SOLUTIONS

OVERVIEW OF ALL VOIP SOLUTIONS OVERVIEW OF ALL VOIP SOLUTIONS Kovács Gábor Parnaki Zsolt Gergı 13/03/2009 TABLE OF CONTENTS Introduction Overview of VoIP protocols Standard based implementations: H.323 SIP Proprietary solutions: Skype

More information

TECHNICAL CHALLENGES OF VoIP BYPASS

TECHNICAL CHALLENGES OF VoIP BYPASS TECHNICAL CHALLENGES OF VoIP BYPASS Presented by Monica Cultrera VP Software Development Bitek International Inc 23 rd TELELCOMMUNICATION CONFERENCE Agenda 1. Defining VoIP What is VoIP? How to establish

More information

RELOAD Usages for P2P Data Storage and Discovery

RELOAD Usages for P2P Data Storage and Discovery RELOAD Usages for P2P Data Storage and Discovery AW2-presentation from Alexander Knauf Alexander.Knauf@Haw-Hamburg.de Review Infrastructure Independent Conferencing: Decentralized fashion Multiple conference

More information

Skype VoIP service- architecture and comparison

Skype VoIP service- architecture and comparison Skype VoIP service- architecture and comparison Hao Wang Institute of Communication Networks and Computer Engineering University of Stuttgart Mentor: Dr.-Ing. S. Rupp ABSTRACT Skype is a peer-to-peer (P2P)

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

Peer-to-Peer Internet Telephony using SIP

Peer-to-Peer Internet Telephony using SIP Peer-to-Peer Internet Telephony using SIP Kundan Singh and Henning Schulzrinne Department of Computer Science, Columbia University 1214 Amsterdam Ave, Mail Code 0401 New York, NY 10027, USA {kns10,hgs}@cs.columbia.edu

More information

Secure Communication in a Distributed System Using Identity Based Encryption

Secure Communication in a Distributed System Using Identity Based Encryption Secure Communication in a Distributed System Using Identity Based Encryption Tyron Stading IBM, Austin, Texas 78758, USA tjstadin@us.ibm.com Abstract Distributed systems require the ability to communicate

More information

A P2PSIP event notification architecture

A P2PSIP event notification architecture A P2PSIP event notification architecture Georgios Panagiotou Appear Networks AB, Kista Science Tower, 164 51 Kista, Sweden Email: georgios.panagiotou@appearnetworks.com Alisa Devlic Appear Networks AB,

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

Service Quality Assurance Mechanisms for P2P SIP VoIP

Service Quality Assurance Mechanisms for P2P SIP VoIP Service Quality Assurance Mechanisms for P2P SIP VoIP Xiaofei Liao, Fengjiang Guo, Hai Jin Services Computing Technology and System Lab Cluster and Grid Computing Lab School of Computer Science and Technology

More information

Object Request Reduction in Home Nodes and Load Balancing of Object Request in Hybrid Decentralized Web Caching

Object Request Reduction in Home Nodes and Load Balancing of Object Request in Hybrid Decentralized Web Caching 2012 2 nd International Conference on Information Communication and Management (ICICM 2012) IPCSIT vol. 55 (2012) (2012) IACSIT Press, Singapore DOI: 10.7763/IPCSIT.2012.V55.5 Object Request Reduction

More information

SOSIMPLE: A Serverless, Standards-based, P2P SIP Communication System

SOSIMPLE: A Serverless, Standards-based, P2P SIP Communication System Appears in AAA-IDEA 2005 c IEEE SOSIMPLE: A Serverless, Standards-based, P2P SIP Communication System David A. Bryan and Bruce B. Lowekamp Computer Science Department College of William and Mary Williamsburg,

More information

A P2P SIP Architecture - Two Layer Approach - draft-sipping-shim-p2p-arch-00.txt

A P2P SIP Architecture - Two Layer Approach - draft-sipping-shim-p2p-arch-00.txt A SIP Architecture - Two Layer Approach - draft-sipping-shim-p2p-arch-00.txt IETF65, Dallas March 25, 2006 Eunsoo Shim Sathya Narayanan Greg Daley Panasonic Digital Networking Laboratory Two Layer Approach

More information

Chord - A Distributed Hash Table

Chord - A Distributed Hash Table Kurt Tutschku Vertretung - Professur Rechnernetze und verteilte Systeme Chord - A Distributed Hash Table Outline Lookup problem in Peer-to-Peer systems and Solutions Chord Algorithm Consistent Hashing

More information

International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 349 ISSN 2229-5518

International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 349 ISSN 2229-5518 International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 349 Load Balancing Heterogeneous Request in DHT-based P2P Systems Mrs. Yogita A. Dalvi Dr. R. Shankar Mr. Atesh

More information

Load Balancing in Structured Overlay Networks. Tallat M. Shafaat tallat(@)kth.se

Load Balancing in Structured Overlay Networks. Tallat M. Shafaat tallat(@)kth.se Load Balancing in Structured Overlay Networks Tallat M. Shafaat tallat(@)kth.se Overview Background The problem : load imbalance Causes of load imbalance Solutions But first, some slides from previous

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

A Topology-Aware Relay Lookup Scheme for P2P VoIP System

A Topology-Aware Relay Lookup Scheme for P2P VoIP System Int. J. Communications, Network and System Sciences, 2010, 3, 119-125 doi:10.4236/ijcns.2010.32018 Published Online February 2010 (http://www.scirp.org/journal/ijcns/). A Topology-Aware Relay Lookup Scheme

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

Improving Availability with Adaptive Roaming Replicas in Presence of Determined DoS Attacks

Improving Availability with Adaptive Roaming Replicas in Presence of Determined DoS Attacks Improving Availability with Adaptive Roaming Replicas in Presence of Determined DoS Attacks Chin-Tser Huang, Prasanth Kalakota, Alexander B. Alexandrov Department of Computer Science and Engineering University

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

Indepth Voice over IP and SIP Networking Course

Indepth Voice over IP and SIP Networking Course Introduction SIP is fast becoming the Voice over IP protocol of choice. During this 3-day course delegates will examine SIP technology and architecture and learn how a functioning VoIP service can be established.

More information

VoIP Security. Seminar: Cryptography and Security. 07.06.2006 Michael Muncan

VoIP Security. Seminar: Cryptography and Security. 07.06.2006 Michael Muncan VoIP Security Seminar: Cryptography and Security Michael Muncan Overview Introduction Secure SIP/RTP Zfone Skype Conclusion 1 Introduction (1) Internet changed to a mass media in the middle of the 1990s

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

A Reputation Management System in Structured Peer-to-Peer Networks

A Reputation Management System in Structured Peer-to-Peer Networks A Reputation Management System in Structured Peer-to-Peer Networks So Young Lee, O-Hoon Kwon, Jong Kim and Sung Je Hong Dept. of Computer Science & Engineering, Pohang University of Science and Technology

More information

LOAD BALANCING WITH PARTIAL KNOWLEDGE OF SYSTEM

LOAD BALANCING WITH PARTIAL KNOWLEDGE OF SYSTEM LOAD BALANCING WITH PARTIAL KNOWLEDGE OF SYSTEM IN PEER TO PEER NETWORKS R. Vijayalakshmi and S. Muthu Kumarasamy Dept. of Computer Science & Engineering, S.A. Engineering College Anna University, Chennai,

More information

Peer-to-Peer Replication

Peer-to-Peer Replication Peer-to-Peer Replication Matthieu Weber September 13, 2002 Contents 1 Introduction 1 2 Database Replication 2 2.1 Synchronous Replication..................... 2 2.2 Asynchronous Replication....................

More information

IPTV AND VOD NETWORK ARCHITECTURES. Diogo Miguel Mateus Farinha

IPTV AND VOD NETWORK ARCHITECTURES. Diogo Miguel Mateus Farinha IPTV AND VOD NETWORK ARCHITECTURES Diogo Miguel Mateus Farinha Instituto Superior Técnico Av. Rovisco Pais, 1049-001 Lisboa, Portugal E-mail: diogo.farinha@ist.utl.pt ABSTRACT IPTV and Video on Demand

More information

Guidance Regarding Skype and Other P2P VoIP Solutions

Guidance Regarding Skype and Other P2P VoIP Solutions Guidance Regarding Skype and Other P2P VoIP Solutions Ver. 1.1 June 2012 Guidance Regarding Skype and Other P2P VoIP Solutions Scope This paper relates to the use of peer-to-peer (P2P) VoIP protocols,

More information

GISP: Global Information Sharing Protocol a distributed index for peer-to-peer systems

GISP: Global Information Sharing Protocol a distributed index for peer-to-peer systems GISP: Global Information Sharing Protocol a distributed index for peer-to-peer systems Daishi Kato Computer Science Department, Stanford University Visiting from NEC Corporation Abstract This paper proposes

More information

Best Practices for Controlling Skype within the Enterprise. Whitepaper

Best Practices for Controlling Skype within the Enterprise. Whitepaper Best Practices for Controlling Skype within the Enterprise Whitepaper INTRODUCTION Skype (rhymes with ripe ) is a proprietary peer-to-peer (P2P) voice over Internet protocol (VoIP) network, founded by

More information

SOSIMPLE Self Organizing SIMPLE A Proposed P2P Instant Messaging System

SOSIMPLE Self Organizing SIMPLE A Proposed P2P Instant Messaging System SOSIMPLE Self Organizing SIMPLE A Proposed P2P Instant Messaging System David A. Bryan College of William and Mary, CSCI 780, P2P and Grid Systems December, 2003 1 Introduction Instant messaging (IM) has

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

P2P Networking - Advantages and Disadvantages of Virtualization

P2P Networking - Advantages and Disadvantages of Virtualization Are Virtualized Overlay Networks Too Much of a Good Thing? Pete Keleher, Bobby Bhattacharjee, Bujor Silaghi Department of Computer Science University of Maryland, College Park keleher@cs.umd.edu 1 Introduction

More information

Volume 2, Issue 1, 2008. A New Security Architecture for SIP Based P2P Computer Networks

Volume 2, Issue 1, 2008. A New Security Architecture for SIP Based P2P Computer Networks Volume 2, Issue 1, 2008 A New Security Architecture for SIP Based P2P Computer Networks Huang Yongfeng, Professor, Tsinghua University, yfhuang@tsinghua.edu.cn Shanyu Tang, Dr & Senior Lecturer, London

More information

Load Balancing in Structured P2P Systems

Load Balancing in Structured P2P Systems 1 Load Balancing in Structured P2P Systems Ananth Rao Karthik Lakshminarayanan Sonesh Surana Richard Karp Ion Stoica ananthar, karthik, sonesh, karp, istoica @cs.berkeley.edu Abstract Most P2P systems

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

A Brief Overview of VoIP Security. By John McCarron. Voice of Internet Protocol is the next generation telecommunications method.

A Brief Overview of VoIP Security. By John McCarron. Voice of Internet Protocol is the next generation telecommunications method. A Brief Overview of VoIP Security By John McCarron Voice of Internet Protocol is the next generation telecommunications method. It allows to phone calls to be route over a data network thus saving money

More information

Krunal Patel Department of Information Technology A.D.I.T. Engineering College (G.T.U.) India. Fig. 1 P2P Network

Krunal Patel Department of Information Technology A.D.I.T. Engineering College (G.T.U.) India. Fig. 1 P2P Network Volume 3, Issue 7, July 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Secure Peer-to-Peer

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

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

Lawful Interception in P2Pbased

Lawful Interception in P2Pbased Lawful Interception in P2Pbased VoIP Systems Jan Seedorf (jan.seedorf_at_nw.neclab.eu) NEC Laboratories Europe Heidelberg, Germany July Page 2008 1-1 IPTCOMM 2008 Heidelberg, Germany Outline 1.

More information

Bit Chat: A Peer-to-Peer Instant Messenger

Bit Chat: A Peer-to-Peer Instant Messenger Bit Chat: A Peer-to-Peer Instant Messenger Shreyas Zare shreyas@technitium.com https://technitium.com December 20, 2015 Abstract. Bit Chat is a peer-to-peer instant messaging concept, allowing one-to-one

More information

8 Conclusion and Future Work

8 Conclusion and Future Work 8 Conclusion and Future Work This chapter concludes this thesis and provides an outlook on future work in the area of mobile ad hoc networks and peer-to-peer overlay networks 8.1 Conclusion Due to the

More information

Distributed Hash Tables in P2P Systems - A literary survey

Distributed Hash Tables in P2P Systems - A literary survey Distributed Hash Tables in P2P Systems - A literary survey Timo Tanner Helsinki University of Technology tstanner@cc.hut.fi Abstract Distributed Hash Tables (DHT) are algorithms used in modern peer-to-peer

More information

A P2P SERVICE DISCOVERY STRATEGY BASED ON CONTENT

A P2P SERVICE DISCOVERY STRATEGY BASED ON CONTENT A P2P SERVICE DISCOVERY STRATEGY BASED ON CONTENT CATALOGUES Lican Huang Institute of Network & Distributed Computing, Zhejiang Sci-Tech University, No.5, St.2, Xiasha Higher Education Zone, Hangzhou,

More information

Analysis of SIP Traffic Behavior with NetFlow-based Statistical Information

Analysis of SIP Traffic Behavior with NetFlow-based Statistical Information Analysis of SIP Traffic Behavior with NetFlow-based Statistical Information Changyong Lee, Hwankuk-Kim, Hyuncheol Jeong, Yoojae Won Korea Information Security Agency, IT Infrastructure Protection Division

More information

Computer System Management: Hosting Servers, Miscellaneous

Computer System Management: Hosting Servers, Miscellaneous Computer System Management: Hosting Servers, Miscellaneous Amarjeet Singh October 22, 2012 Partly adopted from Computer System Management Slides by Navpreet Singh Logistics Any doubts on project/hypo explanation

More information

Calto: A Self Sufficient Presence System for Autonomous Networks

Calto: A Self Sufficient Presence System for Autonomous Networks Calto: A Self Sufficient Presence System for Autonomous Networks Abstract In recent years much attention has been paid to spontaneously formed Ad Hoc networks. These networks can be formed without central

More information

A Measurement of NAT & Firewall Characteristics in Peer to Peer Systems

A Measurement of NAT & Firewall Characteristics in Peer to Peer Systems A Measurement of NAT & Firewall Characteristics in Peer to Peer Systems L. D Acunto, J.A. Pouwelse, and H.J. Sips Department of Computer Science Delft University of Technology, The Netherlands l.dacunto@tudelft.nl

More information

Discovery and Routing in the HEN Heterogeneous Peer-to-Peer Network

Discovery and Routing in the HEN Heterogeneous Peer-to-Peer Network Discovery and Routing in the HEN Heterogeneous Peer-to-Peer Network Tim Schattkowsky Paderborn University, C-LAB, D-33102 Paderborn, Germany tim@c-lab.de Abstract. Network infrastructures are nowadays

More information

How To Use A Phone Over Ip (Phyto) For A Phone Call

How To Use A Phone Over Ip (Phyto) For A Phone Call SIP and VoIP Skype an example VoIP client 1 SIP / VoIP: what are these? Voice over IP (VoIP) Session Initiation Protocol (SIP) Control channel Known in telephone world as signaling channel Does call setup:

More information

Adaptation of TURN protocol to SIP protocol

Adaptation of TURN protocol to SIP protocol IJCSI International Journal of Computer Science Issues, Vol. 7, Issue 1, No. 2, January 2010 ISSN (Online): 1694-0784 ISSN (Print): 1694-0814 78 Adaptation of TURN protocol to SIP protocol Mustapha GUEZOURI,

More information

An Analysis of the Skype Peer-to-Peer Internet Telephony Protocol

An Analysis of the Skype Peer-to-Peer Internet Telephony Protocol An Analysis of the Skype Peer-to-Peer Internet Telephony Protocol Written by: Salman A. Baset and Henning G. Schulzrinne (Colombia University, NY) CIS 6000 Distributed Systems Benjamin Ferriman bferrima@uoguelph.ca

More information

Load Balancing in Distributed Systems: A survey

Load Balancing in Distributed Systems: A survey Load Balancing in Distributed Systems: A survey Amit S Hanamakkanavar * and Prof. Vidya S.Handur # * (amitsh2190@gmail.com) Dept of Computer Science & Engg, B.V.B.College of Engg. & Tech, Hubli # (vidya_handur@bvb.edu)

More information

Skype characteristics

Skype characteristics Advanced Networking Skype Renato Lo Cigno Credits for part of the original material to Saverio Niccolini NEC Heidelberg Skype characteristics Skype is a well known P2P program for real time communications

More information

LOOKING UP DATA IN P2P SYSTEMS

LOOKING UP DATA IN P2P SYSTEMS LOOKING UP DATA IN P2P SYSTEMS Hari Balakrishnan, M. Frans Kaashoek, David Karger, Robert Morris, Ion Stoica MIT Laboratory for Computer Science 1. Introduction The recent success of some widely deployed

More information

How To Create A Network Communication System With A Peer To Peer (P2P) And Network Communication (Networking)

How To Create A Network Communication System With A Peer To Peer (P2P) And Network Communication (Networking) 88 ADVANCES IN ELECTRONICS AND TELECOMMUNICATIONS, VOL. 2, NO. 3, SEPTEMPBER 2011 Agent based VoIP Application with Reputation Mechanisms Grzegorz Oryńczak and Zbigniew Kotulski Abstract In this paper

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

Peer-to-Peer audio conferencing using SIP: P2P Architecture

Peer-to-Peer audio conferencing using SIP: P2P Architecture Peer-to-Peer audio conferencing using SIP: P2P Architecture Max Weltz May 11, 2007 Abstract This report is part of a collection of three report describing several aspects of Peer-to-Peer audio conferencing

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

TLS and SRTP for Skype Connect. Technical Datasheet

TLS and SRTP for Skype Connect. Technical Datasheet TLS and SRTP for Skype Connect Technical Datasheet Copyright Skype Limited 2011 Introducing TLS and SRTP Protocols help protect enterprise communications Skype Connect now provides Transport Layer Security

More information

An Efficient and Light weight Secure Framework for Applications of Cloud Environment using Identity Encryption Method

An Efficient and Light weight Secure Framework for Applications of Cloud Environment using Identity Encryption Method An Efficient and Light weight Secure Framework for Applications of Cloud Environment using Identity Encryption Method E.Sathiyamoorthy 1, S.S.Manivannan 2 1&2 School of Information Technology and Engineering

More information

Varalakshmi.T #1, Arul Murugan.R #2 # Department of Information Technology, Bannari Amman Institute of Technology, Sathyamangalam

Varalakshmi.T #1, Arul Murugan.R #2 # Department of Information Technology, Bannari Amman Institute of Technology, Sathyamangalam A Survey on P2P File Sharing Systems Using Proximity-aware interest Clustering Varalakshmi.T #1, Arul Murugan.R #2 # Department of Information Technology, Bannari Amman Institute of Technology, Sathyamangalam

More information

Sync Security and Privacy Brief

Sync Security and Privacy Brief Introduction Security and privacy are two of the leading issues for users when transferring important files. Keeping data on-premises makes business and IT leaders feel more secure, but comes with technical

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

Strengthen RFID Tags Security Using New Data Structure

Strengthen RFID Tags Security Using New Data Structure International Journal of Control and Automation 51 Strengthen RFID Tags Security Using New Data Structure Yan Liang and Chunming Rong Department of Electrical Engineering and Computer Science, University

More information

P2P and IMS Cooperation / Integration

P2P and IMS Cooperation / Integration P2P and IMS Cooperation / Integration Jens Fiedler Fraunhofer FOKUS Group for Next Generation Network Infrastructures 1 P2P vs. IMS Isn t P2P and IMS like Fire and Water? No, more like Fish and Chips.

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION CHAPTER 1 INTRODUCTION 1.0 Introduction Voice over Internet Protocol (VoIP) is the most popular in telecommunication technology. Nowadays, three million users use VoIP. It is estimated that the number

More information

Optimizing and Balancing Load in Fully Distributed P2P File Sharing Systems

Optimizing and Balancing Load in Fully Distributed P2P File Sharing Systems Optimizing and Balancing Load in Fully Distributed P2P File Sharing Systems (Scalable and Efficient Keyword Searching) Anh-Tuan Gai INRIA Rocquencourt anh-tuan.gai@inria.fr Laurent Viennot INRIA Rocquencourt

More information

Security Issues and Solutions in Peer-topeer Systems for Real-time Communications

Security Issues and Solutions in Peer-topeer Systems for Real-time Communications Security Issues and Solutions in Peer-topeer Systems for Real-time Communications draft-schulzrinne-p2prg-rtc-security-00 Henning Schulzrinne Enrico Marocco Emil Ivov March 2009 (IETF 74) IETF - P2PRG

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

Project Code: SPBX. Project Advisor : Aftab Alam. Project Team: Umair Ashraf 03-1853 (Team Lead) Imran Bashir 02-1658 Khadija Akram 04-0080

Project Code: SPBX. Project Advisor : Aftab Alam. Project Team: Umair Ashraf 03-1853 (Team Lead) Imran Bashir 02-1658 Khadija Akram 04-0080 Test Cases Document VOIP SOFT PBX Project Code: SPBX Project Advisor : Aftab Alam Project Team: Umair Ashraf 03-1853 (Team Lead) Imran Bashir 02-1658 Khadija Akram 04-0080 Submission Date:23-11-2007 SPBX

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

Acknowledgements. Peer to Peer File Storage Systems. Target Uses. P2P File Systems CS 699. Serving data with inexpensive hosts:

Acknowledgements. Peer to Peer File Storage Systems. Target Uses. P2P File Systems CS 699. Serving data with inexpensive hosts: Acknowledgements Peer to Peer File Storage Systems CS 699 Some of the followings slides are borrowed from a talk by Robert Morris (MIT) 1 2 P2P File Systems Target Uses File Sharing is one of the most

More information

An Introduction to Identity-based Cryptography CSEP 590TU March 2005 Carl Youngblood

An Introduction to Identity-based Cryptography CSEP 590TU March 2005 Carl Youngblood An Introduction to Identity-based Cryptography CSEP 590TU March 2005 Carl Youngblood One significant impediment to the widespread adoption of public-key cryptography is its dependence on a public-key infrastructure

More information

An Introduction to VoIP Protocols

An Introduction to VoIP Protocols An Introduction to VoIP Protocols www.netqos.com Voice over IP (VoIP) offers the vision of a converged network carrying multiple types of traffic (voice, video, and data, to name a few). To carry out this

More information

A NEW FULLY DECENTRALIZED SCALABLE PEER-TO-PEER GIS ARCHITECTURE

A NEW FULLY DECENTRALIZED SCALABLE PEER-TO-PEER GIS ARCHITECTURE A NEW FULLY DECENTRALIZED SCALABLE PEER-TO-PEER GIS ARCHITECTURE S.H.L. Liang Department of Geomatics Engineering, University of Calgary, Calgary, Alberta, CANADA T2N 1N4 steve.liang@ucalgary.ca Commission

More information

Identity Theft Protection in Structured Overlays

Identity Theft Protection in Structured Overlays Identity Theft Protection in Structured Overlays Lakshmi Ganesh and Ben Y. Zhao Computer Science Department, U. C. Santa Barbara {lakshmi, ravenben}@cs.ucsb.edu Abstract Structured peer-to-peer (P2P) overlays

More information

Peer-to-Peer Internet Telephony using SIP

Peer-to-Peer Internet Telephony using SIP Peer-to-Peer Internet Telephony using SIP Kundan Singh and Henning Schulzrinne Department of Computer Science, Columbia University {kns10,hgs}@cs.columbia.edu Abstract P2P systems inherently have high

More information

This presentation discusses the new support for the session initiation protocol in WebSphere Application Server V6.1.

This presentation discusses the new support for the session initiation protocol in WebSphere Application Server V6.1. This presentation discusses the new support for the session initiation protocol in WebSphere Application Server V6.1. WASv61_SIP_overview.ppt Page 1 of 27 This presentation will provide an overview of

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

ENUM: Migrating to VoIP. P2P Voice Applications

ENUM: Migrating to VoIP. P2P Voice Applications Advanced Networking ENUM: Migrating to VoIP P2P Voice Applications Renato Lo Cigno Credits for part of the original material to Saverio Niccolini NEC Heidelberg Index ENUM P2P Basics Overlay & P2P Does

More information

How To Create A P2P Network

How To Create A P2P Network Peer-to-peer systems INF 5040 autumn 2007 lecturer: Roman Vitenberg INF5040, Frank Eliassen & Roman Vitenberg 1 Motivation for peer-to-peer Inherent restrictions of the standard client/server model Centralised

More information

Towards a scalable ad hoc network infrastructure

Towards a scalable ad hoc network infrastructure Towards a scalable ad hoc network infrastructure Ansley Post abpost@rice.edu Rice University, Houston, TX, USA Abstract As wirelessly networked devices become more pervasive, large scale mobile ad hoc

More information

Voice over IP Communications

Voice over IP Communications SIP The Next Big Step Voice over IP Communications Presented By: Stephen J. Guthrie VP of Operations Blue Ocean Technologies Goals What are our Goals for Today? Executive Summary: It is expected that real-time

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

Identity Theft Protection in Structured Overlays

Identity Theft Protection in Structured Overlays Appears in Proceedings of the 1st Workshop on Secure Network Protocols (NPSec 5) Identity Theft Protection in Structured Overlays Lakshmi Ganesh and Ben Y. Zhao Computer Science Department, U. C. Santa

More information

Internet Security. Prof. Anja Feldmann, Ph.D. anja@net.t-labs.tu-berlin.de http://www.net.t-labs.tu-berlin.de/

Internet Security. Prof. Anja Feldmann, Ph.D. anja@net.t-labs.tu-berlin.de http://www.net.t-labs.tu-berlin.de/ Internet Security Prof. Anja Feldmann, Ph.D. anja@net.t-labs.tu-berlin.de http://www.net.t-labs.tu-berlin.de/ Prof. Dr. Jean-Pierre Seifert jpseifert@sec.t-labs.tu-berlin.de http://www.sec.t-labs.tu-berlin.de/

More information

IAX-Based Peer-to-Peer VoIP Architecture

IAX-Based Peer-to-Peer VoIP Architecture www.ijcsi.org 280 IAX-Based Peer-to-Peer VoIP Architecture Amor Lazzez, Ouissem Ben Fredj, Thabet Slimani Taif University, Kingdom of Saudi Arabia Abstract Nowadays, Voice over IP (VoIP) constitutes a

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

Join and Leave in Peer-to-Peer Systems: The DASIS Approach

Join and Leave in Peer-to-Peer Systems: The DASIS Approach Join and Leave in Peer-to-Peer Systems: The DASIS Approach Keno Albrecht, Ruedi Arnold, Michael Gähwiler, Roger Wattenhofer {kenoa@inf, rarnold@inf, mgaehwil@student, wattenhofer@inf}.ethz.ch Department

More information

Single Sign-On Secure Authentication Password Mechanism

Single Sign-On Secure Authentication Password Mechanism Single Sign-On Secure Authentication Password Mechanism Deepali M. Devkate, N.D.Kale ME Student, Department of CE, PVPIT, Bavdhan, SavitribaiPhule University Pune, Maharashtra,India. Assistant Professor,

More information

A Peer-to-Peer File Sharing System for Wireless Ad-Hoc Networks

A Peer-to-Peer File Sharing System for Wireless Ad-Hoc Networks 1 A Peer-to-Peer File Sharing System for Wireless Ad-Hoc Networks Hasan Sözer, Metin Tekkalmaz, and İbrahim Körpeoğlu Abstract File sharing in wireless ad-hoc networks in a peerto-peer manner imposes many

More information

SIP and VoIP 1 / 44. SIP and VoIP

SIP and VoIP 1 / 44. SIP and VoIP What is SIP? What s a Control Channel? History of Signaling Channels Signaling and VoIP Complexity Basic SIP Architecture Simple SIP Calling Alice Calls Bob Firewalls and NATs SIP URIs Multiple Proxies

More information

Peer-to-peer (P2P) telephony and communications

Peer-to-peer (P2P) telephony and communications 02jennings/bryan-p36 4/21/06 9:42 AM Page 2 P2P For Communications: Beyond File Sharing Cullen Jennings and David A. Bryan Dr. Cullen Jennings is a Distinguished Engineer with Cisco Systems specializing

More information