Use of SCTP for IP Handover Support

Size: px
Start display at page:

Download "Use of SCTP for IP Handover Support"

Transcription

1 Use of SCTP for IP Handover Support Dong Phil Kim, Jong Shik Ha, Sang Tae Kim, Seok Joo Koh Department of Computer Science Kyungpook National University {dpkim, mugal1, Abstract This paper describes the experimental analysis of SCTP handover for the dual-homing and singlehoming mobile terminals based on Linux platform. From the experiments, it is shown that the SCTP handover latency of the dual-homing mobile terminal only depends on the Round Trip Time between two SCTP endpoints, possibly with a negligible latency time. On the other hand delay of the underlying link and network layer. 1. Introduction Stream Control Transmission Protocol (SCTP) is the new transport-layer protocol that is featured by multi-streaming and multi-homing [1]. In particular, the multi-homing feature of SCTP can be used to provide the handover capability for the mobile terminals (MT) by adding a new IP address and deleting the old IP address during the association [2]. Some related studies recently made [3, 4] include the performance analysis of the SCTP handover by using the Network Simulator (ns-2) [5]. In the study, the handover performance of the SCTP was analyzed for test scenarios using the signal strengths of the underlying wireless link layer. In this paper, we perform the analysis of the SCTP handover for the mobile terminal (MT) over Linux platforms. In particular, this paper is mainly purposed to compare the handover latency of the MT for the single-homing and dual-homing cases. First, we briefly describe the procedures of SCTP handover and the use of Application Programming Interfaces (API) for SCTP handover. Then, we perform the experimental analysis of the SCTP handover for the dual-homing and single-homing MT over Linux testbed networks. 2. APIs for SCTP Handover Figure 1 shows the sketch of the SCTP handover between two different IP network regions, where the MT is moving from Base Station (BS) A to B. Figure 1. SCTP Handover In the figure, we assume that an MT initiates an SCTP association with a Fixed Server (FS). For the SCTP association, FS has IP address 1, whereas MT uses IP address 2. Then, the overall SCTP handover procedures could be performed as follows: (1) Adding a new IP address to SCTP association When the MT is moving toward B, it is now in the overlapping region. In this phase, the MT obtains a new address IP address 3 from the BS B by using an address configuration scheme such as Dynamic Host Configuration Protocol (DHCP). After obtaining a new IP address, the MT informs FS that it will use a new IP address. This will be done by sending SCTP ASCONF chunk to FS. The MT may receive the responding ASCONF-ACK chunk from the FS. The MT is now in the dual homing state. (2) Changing the primary IP address While the MT continues to move toward BS B, it will set the new IP address as the primary address. Once the primary address is changed, the FS sends the outgoing data packets over the new primary IP address of MT.

2 (3) Deleting the old IP address from SCTP association As the MT progresses to move toward B, it will delete the old IP address from the association. The procedural steps described above will be repeated each time the MT moves to a new BS. On the other hand, the following SCTP Application Programming Interfaces (APIs) are used for the handover operations over Linux Platforms [6, 7]. 1 sctp_bindx(add) : adding the new IP address to SCTP association (Add-IP) 2 sctp_bindx(remove) : deleting the old IP address from SCTP association (Delete-IP) 3 setsockopt(primary_peer_addr) : changing the primary IP address (Primary- Change) Figure 2 illustrates the use of SCTP APIs over Linux platforms in order to implement the SCTP handover procedures. 3. Experimental Analysis of SCTP Handover This section describes the experimental analysis of SCTP based on Linux platforms. 3.1 Test Environment To perform the experimentation of the SCTP handover, a small test network is constructed, which consist of one router and two hosts (FS and MT). Each host support Linux Kernel together with LK- SCTP tool [7]. The MT is equipped with two different Network Interface Cards (NICs) to support the SCTP dual-homing feature. We have experimented the following two test scenarios, as also shown in Figure 3. Scenario A: dual-homing MT (Fig. 3(a)) The dial-homing MT uses two different NICs in the overlapping region. That is, the MT can transmit and receive the data packets by using the two interfaces at the same time. This dual-homing MT can be applied to the vertical handover in heterogeneous networks, as seen in the handover between 3G and WLAN. Scenario B: single-homing MT (Fig. 3(b)) Figure 2. APIs for SCTP Handover As shown in the figure, when the MT moves to the new region, the Link-up signal will be detected, and a new IP address is allocated at the IP layer. When SCTP performs the Add-IP operation by calling the sctp_bindx(add) function, an ASCONF chunk will be delivered to FS, and the FS then replies with an ASCONF-ACK chunk to the MT. When the signal strength of the new link is increased, the MT performs the Primary-Change operation by calling the setsockopt() function. If the old link is down, the old IP address will be deleted from the association by calling the sctp_bindx(remove) function. The single-homing MT activates only a single NIC at a time. That is, the MT performs data transport in the single-homing state. This scenario could be applied to the horizontal handover within homogenous networks. In this case, the Link-Up of a new link and Link-Down of the old link will occur at the same time at the underlying link and network layers. Figure 3. Two Scenarios for SCTP Handovoer

3 Figure 4. Results of SCTP Handover for single-homing MT In the experiments, an FS has the IP address , whereas an MT uses two IP addresses: and In Fig. 3(a), the dual-homing MT activates the two NICs the same time in the overlapping region. On the other hand, the single-homing MT uses a single NIC at a time in Fig. 3(b). For those two handover scenarios, we commonly applied the following procedures: 1) First, the MT with IP address connects to the FS with ) The MT adds a new IP address to the association using scto_bindx(). 3) The MT requests Primary-Change to the FS using setsockopt(). 4) The MT deletes the old IP address from the association using sctp_bindx(). 5) When the data transport is completed, the MT shotdown the sctp_bindx(). In the experiment, FS transmits data packets of 1,000 bytes to the MT periodically, and the MT also send a few data to the FS. By using the etheral [8], we captured the trace of the packets that have been exchanged between FS and MT. From the packet trace, we measured the handover latency as a performance metric of SCTP [3, 4]. More specially, the handover latency is defined as the gap between the time that the MT has received the last DATA chunk over the old IP address, and the time that the MT has received the first DATA chunk over the new IP address. 3.2 Results and Discussion Figure 4 shows the results of SCTP handover for the dual-homing MT. Form the figure, we see that the FS ( ) and MT ( ) establish an SCTP association through the 1 st 4 th packets. At packet 10, the MT sends an ASCONF chunk to the FS in order to add the new IP address The MT responds with an ASCONF-ACK to the MT at Packet 11. Then, the MT sends ASOCNF for Primary- Change to the FS at Packet 15, and the FS replies with

4 Figure 5. Results of SCTP Handover for Single-homing MT ASCONF-ACK to the MT at Packet 19. It is noted that the FS transmits all DATA packets to the new IP address of MT, after the primary IP address is changed. When the existing link is down, the MT sends ASCONF chunk for Delete-IP to delete the old IP address at Packet 28. The FS then replies with ASCONF-ACK to MT at Packet 29. From the results, we note that even after Primary- Change, the MT still uses its old IP address as the source IP address of the DATA packets (see Packets 21, 22 and 24). This is because the Primary-Change operations is only applied to the FS, rather than MT. That is, the source IP address of DATA packets transmitted by MT is not affected by the Primary- Change operation. After the Delete-IP operation, the MT uses the new IP address as its source IP address (Packets 30 and 32). The handover latency for the dual-homing MT is measured as the time gap between Packet 16 and 20, = (second) = 0.41 (ms). It is noted that this handover latency is roughly equal to the Round Trip Time (RTT) between MT and FS for exchanging the ASCONF and ASCONF-ACK chunks for Primary-Change (Packets 15 and 19), = = 0.48 (ms). The kernel processing time at FS for handling the associated control chunks can be negligible, compared to the RTT. Accordingly, we see that the overall SCTP handover latency depends on the RTT for Primary-Change between two SCTP endpoints in the network. Figure 5 shows the results of SCTP handover for the single-homing MT. Figure 5 shows almost the same result as Figure 4, except the following differences: a) After the Add-IP operation (Packet 13), the MT uses the new IP address ( ) as its source IP address of all the DATA packets. This is because the Link-Down of the old link occurs at the same time with the Add-IP operation in the singlehoming test scenario. b) From the figure, the SCTP handover latency is measured as the time gap between Packet 10 and 21, = (second), which is extremely larger than that of the dual-homing MT. In fact, this handover latency approximately corresponds to the time taken for processing Link- Down (old link) and Link-Up (new link) at MT (note that these events occur at Packet 11 and 12 in this experiment). Accordingly, we see that the handover latency for the single-homing MT is

5 severely affected by the processing time of the linkdown and link-up at the underlying layers. Another interesting point from Figure 5 is that the FS cannot send any DATA packets to MT over the new IP address until the Primary0Change is completed (Packet 19), since the old IP address is not available by Link- Down event at Packet 12. Accordingly, it is concluded that the single-homing MT had better perform the Primary-Change operation just after the Add-IP operation (hopefully at the same time). This will be helpful to reduce the handover latency of SCTP. On the other hand, figure shows the result of SCTP handover with much more data packet for the dualhoming and single-homing MTs. In the experiment, we measured the amount of packets exchanged between MT and FS for each handover scenario. 4. Conclusions In this paper, we have described that experimental analysis of SCTP handover for the dual-homing and single-homing MTs over Linux platform. From the result, we can see that the handover latency of the dual-homing MT depends on the RTT between two SCTP endpoints, possibly with a negligible latency time. On the other hand, the handover latency of the single-homing MT may be severely affected by the processing time of the underlying link and network layer. 5. References [1] Stewart, R., et al., Stream Control Transmission Protocol, IETF RFC 2960, October 2000 [2] Stewart, R., et al., Stream Control Transmission Protocol (SCTP) Dynamic Address Reconfiguration, IETF Internet Draft, draft-ietf-tsvwg-addip-sctp-10.txt, February 2005 [3] Chang, M., et al., Transport Layer Mobility Support Utilizing Link Signal Strength Information, IEICE Transactions on Communications, Vol. E87-B, No.9, pp , September [4] Koh, S., et al., "msctp for Soft Handover in Transport Layer", IEEE Communications Letters, Vol. 8, No. 3, pp , March Figure 6. Results of SCTP Handover From the figure, we see that the handover latency of the dual-homing MT is negligible, compared to that of the single-homing MT (0.3 ~ 1.9 second). We also note that the dual-homing MT has completed all the data transmissions (at 3.3 second) earlier than the single-homing MT. This is because the single-homing MT requires larger handover latency due to the processing of link-down and link-up at the underlying layers, compared to the dual-homing MT. [5] Network Simulator 2, Available from [6] Stewart, R., et al., Sockets API Extensions for Stream Control Transmission Protocol, IETF Internet Draft, draft ietf-tsvwg sctpsocket-09.txt, September [7] Linux Kernel SCTP Project, Available from [8] Ethereal, Available from

msctp for Vertical Handover Between Heterogeneous Networks

msctp for Vertical Handover Between Heterogeneous Networks msctp for Vertical Handover Between Heterogeneous Networks Seok Joo Koh and Sang Wook Kim Department of Computer Science, Kyungpook National University, Daegoo, Korea {sjkoh, swkim}@cs.knu.ac.kr Abstract.

More information

A Scheme of Primary Path Switching for Mobile Terminals using SCTP Handover

A Scheme of Primary Path Switching for Mobile Terminals using SCTP Handover Proceedings of the 2007 WSEAS International Conference on Computer Engineering and Applications, Gold Coast, Australia, January 17-19, 2007 218 A Scheme of Primary Path Switching for Mobile Terminals using

More information

SCTP for Vertical Handover.

SCTP for Vertical Handover. SCTP for Vertical Handover sjkoh@knu.ac.kr SCTP Stream Control Transmission Protocol RFC 2960 (October 2000) Two Major Extensions PR-SCTP (Partial Reliable SCTP): RFC 3758 Dynamic Address Reconfiguration

More information

Mobile SCTP for IP Mobility Support in All-IP Networks

Mobile SCTP for IP Mobility Support in All-IP Networks Mobile SCTP for IP Mobility Support in All-IP Networks Seok Joo Koh sjkoh@cs.knu.ac.kr Abstract The Stream Control Transmission Protocol (SCTP) is a new transport protocol that is featured multi-streaming

More information

A Transport Layer Mobility Support Mechanism

A Transport Layer Mobility Support Mechanism A Transport Layer Mobility Support Mechanism Moonjeong Chang 1, Meejeong Lee 1, and Seokjoo Koh 2 1 Dept. of Computer Engineering, Ewha Womans University, Seoul 121-791, Korea {mjchang,lmj}@ewha.ac.kr

More information

Telecommunication & Network Research Lab

Telecommunication & Network Research Lab SCTP based Framework for Mobile Web Agent Y.J. Lee, Mohammed Atiquzzaman TR-OU-TNRL-05-116 September 2005 Telecommunication & Network Research Lab School of Computer Science THE UNIVERSITY OF OKLAHOMA

More information

A Network-Based Handover Scheme in HIP-Based Mobile Networks

A Network-Based Handover Scheme in HIP-Based Mobile Networks J Inf Process Syst, Vol.9, No.4, pp.651~659, December 2013 http://dx.doi.org/10.3745/jips.2013.9.4.651 pissn 1976-913X eissn 2092-805X A Network-Based Handover Scheme in HIP-Based Mobile Networks Moneeb

More information

Partial Bicasting with Buffering for Proxy Mobile IPv6 Handover in Wireless Networks

Partial Bicasting with Buffering for Proxy Mobile IPv6 Handover in Wireless Networks Journal of Information Processing Systems, Vol.7, No.4, December 2011 http://dx.doi.org/10.3745/jips.2011.7.4.627 Partial Bicasting with Buffering for Proxy Mobile IPv6 Handover in Wireless Networks Ji-In

More information

Vertical Handoff Characterization for SIP and msctp Based UMTS-WLAN Integration Solutions

Vertical Handoff Characterization for SIP and msctp Based UMTS-WLAN Integration Solutions Vertical Handoff Characterization for SIP and msctp Based UMTS-WLAN Integration Solutions Syed Asadullah, Ashraf S. Mahmoud, Marwan Abu-Amara, Tarek Sheltami Computer Engineering Department King Fahd University

More information

Novel web agent framework to support seamless mobility for data networks Y.-J. Lee 1 D.-W. Lee 2 M. Atiquzzaman 3

Novel web agent framework to support seamless mobility for data networks Y.-J. Lee 1 D.-W. Lee 2 M. Atiquzzaman 3 Published in IET Communications Received on 11th December 2008 Revised on 20th March 2009 ISSN 1751-8628 Novel web agent framework to support seamless mobility for data networks Y.-J. Lee 1 D.-W. Lee 2

More information

Network-based Fast Handover for IMS Applications and Services

Network-based Fast Handover for IMS Applications and Services Network-based Fast Handover for IMS Applications and Services Sang Tae Kim 1, Seok Joo Koh 1, Lee Kyoung-Hee 2 1 Department of Computer Science, Kyungpook National University 2 Electronics and Telecommunications

More information

Architecture and Performance of SIGMA: A Seamless Mobility Architecture for Data Networks

Architecture and Performance of SIGMA: A Seamless Mobility Architecture for Data Networks Architecture and Performance of : A Seamless Mobility Architecture for Data Networks Shaojian Fu, Liran Ma, Mohammed Atiquzzaman, Yong-Jin Lee Telecommunications and Networks Research Lab School of Computer

More information

Design principles and performance evaluation of msctp-cmt for transport-layer based handover

Design principles and performance evaluation of msctp-cmt for transport-layer based handover Design principles and evaluation of msctp-cmt for transport-layer based handover Łukasz Budzisz, Ramon Ferrús and Ferran Casadevall Radio Communication Group (GCR), Signal Theory and Communication Dept

More information

Novel web agent framework to support seamless mobility for data networks Y.-J. Lee 1 D.-W. Lee 2 M. Atiquzzaman 3

Novel web agent framework to support seamless mobility for data networks Y.-J. Lee 1 D.-W. Lee 2 M. Atiquzzaman 3 Published in IET Communications Received on 11th December 2008 Revised on 20th March 2009 ISSN 1751-8628 Novel web agent framework to support seamless mobility for data networks Y.-J. Lee 1 D.-W. Lee 2

More information

Distributed Mobility Control Schemes in the HIP-based Mobile Networks

Distributed Mobility Control Schemes in the HIP-based Mobile Networks ICACT Transactions on Advanced Communications Technology (TACT) Vol. 2, Issue 4, July 2013 269 Distributed Mobility Control Schemes in the HIP-based Mobile Networks Sang-Il Choi, Seok-Joo Koh School of

More information

RADIO AWARE SCTP EXTENSION FOR HANDOVER DATA IN EGPRS

RADIO AWARE SCTP EXTENSION FOR HANDOVER DATA IN EGPRS RADIO AWARE SCTP EXTENSION FOR HANDOVER DATA IN EGPRS Mériem Afif 1, Philippe Martins 2, Sami Tabbane 3 and Philippe Godlewski 4 1, 3, Mediatron, Ecole Supérieure des Communications de Tunis (Sup'Com),

More information

Host Identifier and Local Locator for Mobile Oriented Future Internet: Implementation Perspective

Host Identifier and Local Locator for Mobile Oriented Future Internet: Implementation Perspective Host Identifier and Local Locator for Mobile Oriented Future Internet: Implementation Perspective Nak Jung Choi*, Ji In Kim**, Seok Joo Koh* * School of Computer Science and Engineering, Kyungpook National

More information

Location Management Agent for SCTP Handover in Mobile Network

Location Management Agent for SCTP Handover in Mobile Network Location Management Agent for SCTP Handover in Mobile Network Yong-Jin Lee Department of Technology Education, Korea National University of Education 250 Taesungtapyon-ro, Heungduk-ku, Cheongju, South

More information

On Concurrent Multipath Transfer in SCTP-based handover scenarios

On Concurrent Multipath Transfer in SCTP-based handover scenarios On Concurrent Multipath Transfer in SCTP-based handover scenarios Łukasz Budzisz Ramon Ferrús, Ferran Casadevall and Paul Amer Radio Communication Group (GCR), Signal Theory and Communication Dept (TSC),

More information

Distributed CoAP Handover Using Distributed Mobility Agents in Internet-of-Things Networks

Distributed CoAP Handover Using Distributed Mobility Agents in Internet-of-Things Networks J. lnf. Commun. Converg. Eng. 15(1): 37-42, Mar. 2017 Regular paper Distributed CoAP Handover Using Distributed Mobility Agents in Internet-of-Things Networks Sang-Il Choi 1 and Seok-Joo Koh 2*, Member,

More information

Seamless Multicast Handover in PMIPv6-based Wireless Networks

Seamless Multicast Handover in PMIPv6-based Wireless Networks Seamless Multicast Handover in PMIPv6-based Wireless Networks Moneeb Gohar*, Seok Joo Koh*, Tae-Won Um**, Hyun-Woo Lee** *School of Computer Science and Engineering, Kyungpook National University **Electronic

More information

Chapter 7 Mobility Management at Transport Layer

Chapter 7 Mobility Management at Transport Layer Chapter 7 Mobility Management at Transport Layer This chapter is dedicated to transport-layer mobility support schemes, which follow an end-to-end philosophy, putting the notion of mobility at the end

More information

TABLE OF CONTENTS CHAPTER NO. ABSTRACT ACKNOWLEDGEMENT TABLE OF CONTENTS LIST OF TABLES LIST OF FIGURES LIST OF SYMBOLS AND ABBREVIATIONS

TABLE OF CONTENTS CHAPTER NO. ABSTRACT ACKNOWLEDGEMENT TABLE OF CONTENTS LIST OF TABLES LIST OF FIGURES LIST OF SYMBOLS AND ABBREVIATIONS TABLE OF CONTENTS CHAPTER NO. TITLE ABSTRACT ACKNOWLEDGEMENT TABLE OF CONTENTS LIST OF TABLES LIST OF FIGURES LIST OF SYMBOLS AND ABBREVIATIONS PAGE NO. iii viii ix xiv xv xviii 1 INTRODUCTION 1 1.1 EVOLUTION

More information

Enhanced Mobility Control in Mobile LISP Networks

Enhanced Mobility Control in Mobile LISP Networks Enhanced Mobility Control in Mobile LISP Networks Moneeb Gohar School of Computer Science and Engineering Kyungpook National University Daegu, South Korea moneebgohar@gmail.com Ji In Kim School of Computer

More information

Seamless Multicast Handover in Fmipv6-Based Networks

Seamless Multicast Handover in Fmipv6-Based Networks Seamless Multicast Handover in Fmipv6-Based Networks Moneeb Gohar, Seok Joo Koh, Tae-Won Um, and Hyun-Woo Lee Abstract This paper proposes a fast tree join scheme to provide seamless multicast handover

More information

The Modified Mobile Concurrent Multipath Transfer for Joint Resource Management

The Modified Mobile Concurrent Multipath Transfer for Joint Resource Management Available online at www.sciencedirect.com Procedia Engineering 30 (2012) 963 969 International Conference on Communication Technology and System Design 2011 The Modified Mobile Concurrent Multipath Transfer

More information

Q-PMIP: Query-based Proxy Mobile IPv6

Q-PMIP: Query-based Proxy Mobile IPv6 Q-PMIP: Query-based Proxy Mobile IPv6 Jae Wan Park*, Ji In Kim*, Seok Joo Koh* *School of Computer Science and Engineering, Kyungpook National University, Korea jwparkinf8@gmail.com, jiin16@gmail.com,

More information

CC-SCTP: Chunk Checksum of SCTP for Enhancement of Throughput in Wireless Network Environments

CC-SCTP: Chunk Checksum of SCTP for Enhancement of Throughput in Wireless Network Environments CC-SCTP: Chunk Checksum of SCTP for Enhancement of Throughput in Wireless Network Environments Stream Control Transmission Protocol (SCTP) uses the 32-bit checksum in the common header, by which a corrupted

More information

Use of SCTP for Handoff and Path Selection Strategy in Wireless Network

Use of SCTP for Handoff and Path Selection Strategy in Wireless Network Use of SCTP for Handoff and Path Selection Strategy in Wireless Network Huai-Hsinh Tsai Grad. Inst. of Networking and Communication Eng., Chaoyang University of Technology s9530615@cyut.edu.tw Lin-Huang

More information

SCTP: An innovative transport layer protocol for the web

SCTP: An innovative transport layer protocol for the web SCTP: An innovative transport layer protocol for the web (Position paper) P. Natarajan, J. Iyengar, P. Amer, & R. Stewart 1 HTTP over TCP Transmission Control Protocol (TCP) has been the default transport

More information

Analysis of FTP over SCTP and TCP in Congested Network

Analysis of FTP over SCTP and TCP in Congested Network Analysis of FTP over SCTP and TCP in Congested Network Lin-Huang Chang Ming-Yi Liao De-Yu Wang Grad. Inst. of Networking and Communication Eng., Chaoyang University of Dept. of Computer Science and Information

More information

ICTC 2013 http://ictc2013.org/main/ 1 / 1 2013-10-17 International Advisory Committee Steering Committee Organizing Committee Technical Program Committee Program at a Glance Industrial Session Special

More information

SCTP Congestion Window Overgrowth During Changeover

SCTP Congestion Window Overgrowth During Changeover SCTP Congestion Window Overgrowth During Changeover Janardhan R. Iyengar, Armando L. Caro, Jr., Paul D. Amer, Gerard J. Heinz Computer and Information Sciences University of Delaware iyengar, acaro, amer,

More information

Distributed Mobility Control for Mobile-Oriented Future Internet Environments

Distributed Mobility Control for Mobile-Oriented Future Internet Environments Distributed Mobility Control for Mobile-Oriented Future Internet Environments Ji-In Kim Kyungpook National University Daegu, KOREA jiin16@gmail.com Heeyoung JUNG ETRI Daejon, KOREA hyjung@etri.re.kr Seok

More information

Distributed Pub/Sub Model in CoAP-based Internet-of-Things Networks

Distributed Pub/Sub Model in CoAP-based Internet-of-Things Networks Distributed Pub/Sub Model in CoAP-based Internet-of-Things Networks Joong-Hwa Jung School of Computer Science and Engineering, Kyungpook National University Daegu, Korea godopu16@gmail.com Dong-Kyu Choi

More information

Cost Analysis of Mobility Management Entities for SIGMA

Cost Analysis of Mobility Management Entities for SIGMA 010 International Conference on High Performance Switching and Routing Cost Analysis of Mobility Management Entities for SIGMA Md. Shohrab Hossain Mohammed Atiquzzaman University of Oklahoma, Norman, OK

More information

An Improvement of TCP Downstream Between Heterogeneous Terminals in an Infrastructure Network

An Improvement of TCP Downstream Between Heterogeneous Terminals in an Infrastructure Network An Improvement of TCP Downstream Between Heterogeneous Terminals in an Infrastructure Network Yong-Hyun Kim, Ji-Hong Kim, Youn-Sik Hong, and Ki-Young Lee University of Incheon, 177 Dowha-dong Nam-gu, 402-749,

More information

TraSH: A Transport Layer Seamless Handover for Mobile Networks

TraSH: A Transport Layer Seamless Handover for Mobile Networks 1 : A Transport Layer Seamless Handover for Mobile Networks Shaojian Fu 1, Mohammed Atiquzzaman 1, Liran Ma 1,William Ivancic 2,Yong-Jin Lee 1, Justin S. Jones 1, Song Lu 1 1 Telecommunications and Networks

More information

A New Path Failure Detection Method for Multi-homed Transport Layer Protocol

A New Path Failure Detection Method for Multi-homed Transport Layer Protocol ICN 211 : The Tenth International Conference on Networks A New Path Failure Detection Method for Multi-homed Transport Layer Protocol Sinda Boussen, Nabil Tabbane and Sami Tabbane Research Unit MEDIATRON

More information

Seamless Handover in Heterogeneous Radio Access Networks

Seamless Handover in Heterogeneous Radio Access Networks Seamless Handover in Heterogeneous Radio Access Networks Christina Thorpe University College Dublin, Ireland Contact: christina.thorpe@ucdco nnect.ie Sean Murphy University College Dublin, Ireland Contact:

More information

Cellular SCTP: A Transport-Layer Approach to Internet Mobility

Cellular SCTP: A Transport-Layer Approach to Internet Mobility Cellular SCTP: A Transport-Layer Approach to Internet Mobility Ilknur Aydin Computer and Information Sciences University of Delaware aydin@cis.udel.edu Woojin Seok KISTI Supercomputing Center Korea wjseok25@kisti.re.kr

More information

ITU-T Y Framework of multi-homing in IPv6-based NGN

ITU-T Y Framework of multi-homing in IPv6-based NGN INTERNATIONAL TELECOMMUNICATION UNION ITU-T Y.2052 TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU (02/2008) SERIES Y: GLOBAL INFORMATION INFRASTRUCTURE, INTERNET PROTOCOL ASPECTS AND NEXT-GENERATION NETWORKS

More information

nsctp: A New Transport Layer Tunnelling Approach to Provide Seamless Handover for Moving Network

nsctp: A New Transport Layer Tunnelling Approach to Provide Seamless Handover for Moving Network nsctp: A New Transport Layer Tunnelling Approach to Provide Seamless Handover for Moving Network Peyman Behbahani City University, London, UK p.behbahani@city.ac.uk Veselin Rakocevic City University, London,

More information

Fast Device Discovery for Remote Device Management in Lighting Control Networks

Fast Device Discovery for Remote Device Management in Lighting Control Networks J Inf Process Syst, Vol.10, No.4, pp.00~00, December 2014 http://dx.doi.org/10.3745/jips.03.0011 ISSN 1976-913X (Print) ISSN 2092-805X (Electronic) Fast Device Discovery for Remote Device Management in

More information

Mobile Oriented Future Internet (MOFI): Architectural Design and Implementations

Mobile Oriented Future Internet (MOFI): Architectural Design and Implementations Mobile Oriented Future Internet (): Architectural Design and Implementations Ji-In Kim, Heeyoung Jung, and Seok-Joo Koh With the recent growth in smartphone services, the mobile environment has become

More information

Subnet Multicast for Delivery of One-to-Many Multicast Applications

Subnet Multicast for Delivery of One-to-Many Multicast Applications Subnet Multicast for Delivery of One-to-Many Multicast Applications We propose a new delivery scheme for one-to-many multicast applications such as webcasting service used for the web-based broadcasting

More information

SEAMLESS HANDOVER AMONG HETEROGENEOUS MOBILE NETWORKS USING STREAM CONTROL TRANSMISSION PROTOCOL (SCTP)

SEAMLESS HANDOVER AMONG HETEROGENEOUS MOBILE NETWORKS USING STREAM CONTROL TRANSMISSION PROTOCOL (SCTP) SEAMLESS HANDOVER AMONG HETEROGENEOUS MOBILE NETWORKS USING STREAM CONTROL TRANSMISSION PROTOCOL (SCTP) ENG SE-HSIENG (B.Eng (Hons), NUS) A THESIS SUBMITTED FOR THE DEGREE OF MASTER OF ENGINEERING DEPARTMENT

More information

ITU-T Y Framework of multi-homing in IPv6-based NGN

ITU-T Y Framework of multi-homing in IPv6-based NGN International Telecommunication Union ITU-T Y.2052 TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU (02/2008) SERIES Y: GLOBAL INFORMATION INFRASTRUCTURE, INTERNET PROTOCOL ASPECTS AND NEXT-GENERATION NETWORKS

More information

DHT-based Identifier-Locator Mapping Management for Mobile Oriented Future Internet

DHT-based Identifier-Locator Mapping Management for Mobile Oriented Future Internet DHT-based Identifier-Locator Mapping Management for Mobile Oriented Future Internet Hyung-Woo Kang Kyungpook National University Daegu, Korea hwkang0621@gmail.com Ji-In Kim Kyungpook National University

More information

A NEW METHOD TO SUPPORT UMTS/WLAN VERTICAL HANDOVER USING SCTP

A NEW METHOD TO SUPPORT UMTS/WLAN VERTICAL HANDOVER USING SCTP MOBILITY AND RESOURCE MANAGEMENT A NEW METHOD TO SUPPORT UMTS/WLAN VERTICAL HANDOVER USING SCTP LI MA, FEI YU, AND VICTOR C. M. LEUNG, THE UNIVERSITY OF BRITISH COLUMBIA TEJINDER RANDHAWA, BRITISH COLUMBIA

More information

Schahin Rajab TCP or QUIC Which protocol is most promising for the future of the internet?

Schahin Rajab TCP or QUIC Which protocol is most promising for the future of the internet? Schahin Rajab sr2@kth.se 2016 04 20 TCP or QUIC Which protocol is most promising for the future of the internet? Table of contents 1 Introduction 3 2 Background 4 2.1 TCP 4 2.2 UDP 4 2.3 QUIC 4 2.4 HTTP

More information

Unified QoS Provision in Wireless Access Networks

Unified QoS Provision in Wireless Access Networks Unified QoS Provision in Wireless Access Networks Nikos Passas and Lazaros Merakos Dept. of Informatics & Telecommunications University of Athens Athens, Greece {passas,merakos}@di.uoa.gr Abstract A scheme

More information

SCTP: A new networking protocol for super-computing. Mohammed Atiquzzaman Shaojian Fu Department of Computer Science University of Oklahoma.

SCTP: A new networking protocol for super-computing. Mohammed Atiquzzaman Shaojian Fu Department of Computer Science University of Oklahoma. SCTP: A new networking protocol for super-computing Mohammed Atiquzzaman Shaojian Fu Department of Computer Science University of Oklahoma. atiq@ou ou.edu Networking Characteristics in Supercomputing High

More information

User Datagram Protocol

User Datagram Protocol Topics Transport Layer TCP s three-way handshake TCP s connection termination sequence TCP s TIME_WAIT state TCP and UDP buffering by the socket layer 2 Introduction UDP is a simple, unreliable datagram

More information

Reliable transmission of visible light communication data in lighting control networks

Reliable transmission of visible light communication data in lighting control networks IET Networks Research Article Reliable transmission of visible light communication data in lighting control networks ISSN 2047-4954 Received on 12th February 2017 Accepted on 12th March 2017 E-First on

More information

Transparent Flow Mapping for NEAT

Transparent Flow Mapping for NEAT Transparent Flow Mapping for Felix Weinrank, Michael Tüxen Münster University of Applied Sciences Department of Electrical Engineering and Computer Science Stegerwaldstrasse 39 D-48565 Steinfurt Germany

More information

Kent State University

Kent State University CS 4/54201 Computer Communication Network Kent State University Dept. of Computer Science www.mcs.kent.edu/~javed/class-net06f/ 1 A Course on Networking and Computer Communication LECT-10, S-2 IP- Internet

More information

Performance Comparison between MIPv6 and SEMO6

Performance Comparison between MIPv6 and SEMO6 This full text paper was peer reviewed at the direction of IEEE Communications Society subject matter experts for publication in the IEEE Globecom proceedings. Performance Comparison between MIPv6 and

More information

Performance of End-to-End Mobility Management in Satellite IP Networks

Performance of End-to-End Mobility Management in Satellite IP Networks 1 Performance of End-to-End Mobility Management in Satellite IP Networks Pulak K Chowdhury, Mohammed Atiquzzaman School of Computer Science, University of Oklahoma, Norman, OK 7319-6151 Email: {pulak,

More information

SCTP s Reliability and Fault Tolerance

SCTP s Reliability and Fault Tolerance SCTP s Reliability and Fault Tolerance Brad Penoff, Mike Tsai, and Alan Wagner Department of Computer Science University of British Columbia Vancouver, Canada Distributed Systems Group Seattle Conference

More information

Measuring MPLS overhead

Measuring MPLS overhead Measuring MPLS overhead A. Pescapè +*, S. P. Romano +, M. Esposito +*, S. Avallone +, G. Ventre +* * ITEM - Laboratorio Nazionale CINI per l Informatica e la Telematica Multimediali Via Diocleziano, 328

More information

SIP-based Mobility Architecture for Next Generation Wireless Networks

SIP-based Mobility Architecture for Next Generation Wireless Networks SIP-based Mobility Architecture for Next Generation Wireless Networks PerCom IEEE 2005 Presented by T.C. Lin 2006/01/25 Outline Introduction Overview of SIP Problem Description Proposed Architecture Performance

More information

Selective Channel Scanning for Fast Handoff in Wireless LAN using Neighbor Graph

Selective Channel Scanning for Fast Handoff in Wireless LAN using Neighbor Graph Selective Channel Scanning for Fast Handoff in Wireless LAN using Neighbor Graph Sang-Hee Park, Hye-Soo Kim, Chun-Su Park, Jae-Won Kim, and Sung-Jea Ko Department of Electronics Engineering, Korea University,

More information

Effect of SCTP Multistreaming over Satellite Links

Effect of SCTP Multistreaming over Satellite Links Effect of SCTP Multistreaming over Satellite Links Mohammed Atiquzzaman (Co-author: William Ivancic (NASA)) School of Computer Science University of Oklahoma. Email: atiq@ieee.org Web: www.cs.ou.edu/~atiq

More information

FILE TRANSFER IN FCS NETWORKS USING TRANSPORT LAYER MULTISTREAMING*

FILE TRANSFER IN FCS NETWORKS USING TRANSPORT LAYER MULTISTREAMING* FILE TRANSFER IN FCS NETWORKS USING TRANSPORT LAYER MULTISTREAMING* Sourabh Ladha, Paul D. Amer, Janardhan Iyengar, Armando L. Caro Jr. Protocol Engineering Lab Computer and Information Sciences University

More information

- Page 1 of 8 -

- Page 1 of 8 - LTE Load Tester v3.0 Release Notes - Page 1 of 8 - Introduction Polaris Networks LTE Load Tester is a test-tool to generate traffic load on an LTE EPC Node to measure and analyze the performance of the

More information

Utilizing Multiple Home Links in Mobile IPv6

Utilizing Multiple Home Links in Mobile IPv6 Utilizing Multiple Home Links in Mobile IPv6 Hongbo Shi and Shigeki Goto Department of Computer Science, Waseda University 3-4-1 Ohkubo Shijuku-ku, Tokyo, 169-8555 JAPAN Email: {shi, goto}@goto.info.waseda.ac.jp

More information

Topics in Computer Networking Switch SS7 PSTN/ISDN. Gatekeeper/ Proxy Server. Topics in Computer Networking Н.

Topics in Computer Networking Switch SS7 PSTN/ISDN. Gatekeeper/ Proxy Server. Topics in Computer Networking Н. Outline SCTP Stream Control Transmission Protocol NGN and Motivation for SCTP Protocol Overview Packet format Protection against SYN Flooding Multistreaming Multihoming Research Activities at Kau Summary

More information

Outline. History Introduction Packets Association/ Termination Data Transmission concepts Multihoming Streams

Outline. History Introduction Packets Association/ Termination Data Transmission concepts Multihoming Streams Outline History Introduction Packets Association/ Termination Data Transmission concepts Multihoming Streams 1 History Developed by IETF SIGTRAN working group (Internet Engineering Task Force) (SIGnaling

More information

Due to the many benefits provided by both the third-generation (3G) mobile networks and the IEEE wireless local area networks (WLANs), it is

Due to the many benefits provided by both the third-generation (3G) mobile networks and the IEEE wireless local area networks (WLANs), it is Performance of UMTS/WLAN Integration at Hot-Spot Locations Using OPNET Marwan Abu-Amara, Ashraf Mahmoud, Tarek Sheltami, Adel Al-Shahrani, Khalid Al-Otaibi, S.M.Rehman, and Taha Anwar {marwan, ashraf,

More information

Interoperability and Security of TraSH: A Transport Layer Seamless Handover

Interoperability and Security of TraSH: A Transport Layer Seamless Handover Interoperability and Security of TraSH: A Transport Layer Seamless Handover Panel Session at 23 rd IEEE International Performance, Computing, and Communications Conference April 16, 2004 Dr. Mohammed Atiquzzaman

More information

bitcoin allnet exam review: transport layer TCP basics congestion control project 2 Computer Networks ICS 651

bitcoin allnet exam review: transport layer TCP basics congestion control project 2 Computer Networks ICS 651 bitcoin allnet exam review: transport layer TCP basics congestion control project 2 Computer Networks ICS 651 Bitcoin distributed, reliable ("hard to falsify") time-stamping network each time-stamp record

More information

Chapter 6. What happens at the Transport Layer? Services provided Transport protocols UDP TCP Flow control Congestion control

Chapter 6. What happens at the Transport Layer? Services provided Transport protocols UDP TCP Flow control Congestion control Chapter 6 What happens at the Transport Layer? Services provided Transport protocols UDP TCP Flow control Congestion control OSI Model Hybrid Model Software outside the operating system Software inside

More information

Implementation and Operation of Mobility in WIDE

Implementation and Operation of Mobility in WIDE Implementation and Operation of Mobility in WIDE The 14th Korea Internet Conference June 28, 2006 Keiichi Shima Internet Initiative Japan Inc. / WIDE project Contents Background Implementation

More information

An Integrated Scheme for Intrusion Detection in WLAN +

An Integrated Scheme for Intrusion Detection in WLAN + An Integrated Scheme for Intrusion Detection in WLAN + Dong hil Kim, Seok Joo Koh and Sang Wook Kim Department of Computer Science, Kyungpook National University, Korea {dpkim, sjkoh, swkim}@cs.knu.ac.kr

More information

IP Mobility Support with a Multihomed Mobile Router

IP Mobility Support with a Multihomed Mobile Router IP Mobility Support with a Multihomed Mobile Router Hee-Dong Park 1, Dong-Won Kum 2, Yong-Ha Kwon 2, Kang-Won Lee 2, and You-Ze Cho 2 1 Department of Computer Engineering, Pohang College, Pohang, 791-711,

More information

SCTP over Satellite Networks

SCTP over Satellite Networks SCTP over Satellite Networks Shaojian Fu Mohammed Atiquzzaman School of Computer Science University of Oklahoma, Norman, OK 73019-6151. William Ivancic Satellite Networks & Architectures Branch NASA Glenn

More information

Seamless Network Mobility Management for Realtime Service

Seamless Network Mobility Management for Realtime Service Seamless Network Mobility Management for Realtime Service Hee-Dong Park, Yong-Ha Kwon, Kang-Won Lee, Sung-Hyup Lee, Young-Soo Choi, Yang Li, and You-Ze Cho School of Electrical Engineering & Computer Science,

More information

Distributed Mobility Management in Proxy Mobile IPv6 using Hash Function

Distributed Mobility Management in Proxy Mobile IPv6 using Hash Function Distributed Mobility Management in Proxy Mobile IPv6 using Hash Function Ji In Kim School of Computer Science and Engineering Kyungpook National University Daegu, Korea jiin16@gmail.com Seok Joo Koh School

More information

MODIFIED VERTICAL HANDOFF DECISION ALGORITHM FOR IMPROVING QOS METRICS IN HETEROGENEOUS NETWORKS

MODIFIED VERTICAL HANDOFF DECISION ALGORITHM FOR IMPROVING QOS METRICS IN HETEROGENEOUS NETWORKS MODIFIED VERTICAL HANDOFF DECISION ALGORITHM FOR IMPROVING QOS METRICS IN HETEROGENEOUS NETWORKS 1 V.VINOTH, 2 M.LAKSHMI 1 Research Scholar, Faculty of Computing, Department of IT, Sathyabama University,

More information

Freeze DeadLine Method for Vertical Handover in Heterogeneous Wireless Networks

Freeze DeadLine Method for Vertical Handover in Heterogeneous Wireless Networks , pp.187-191 http://dx.doi.org/10.14257/astl.2014.63.41 Freeze DeadLine Method for Vertical Handover in Heterogeneous Wireless Networks Hyeon-Jin Jeong 1, Seung-Sik Choi 1 1 Computer Engineering Department,

More information

Retransmission Policies With Transport Layer Multihoming

Retransmission Policies With Transport Layer Multihoming Retransmission Policies With Transport Layer Multihoming Armando L. Caro Jr., Paul D. Amer, Janardhan R. Iyengar Protocol Engineering Lab Computer and Information Sciences Department University of Delaware

More information

Applications and Performance Analysis of Bridging with Layer-3 Forwarding on Wireless LANs

Applications and Performance Analysis of Bridging with Layer-3 Forwarding on Wireless LANs Applications and Performance Analysis of Bridging with Layer-3 Forwarding on Wireless LANs James T. Yu and Chibiao Liu School of Computer Science, Telecommunications, and Information Systems DePaul University,

More information

Extended Correspondent Registration Scheme for Reducing Handover Delay in Mobile IPv6

Extended Correspondent Registration Scheme for Reducing Handover Delay in Mobile IPv6 Extended Correspondent Registration Scheme for Reducing Handover Delay in Mobile IPv6 Ved P. Kafle Department of Informatics The Graduate University for Advanced Studies Tokyo, Japan Eiji Kamioka and Shigeki

More information

Secure SCTP against DoS Attacks in Wireless Internet *

Secure SCTP against DoS Attacks in Wireless Internet * Secure SCTP against DoS Attacks in Wireless Internet * Inwhee Joe College of Information and Communications Hanyang University Seoul, Korea iwj oeshanyang,ac.kr Abstract. The Stream Control Transport Protocol

More information

Dynamic Traffic Load Balancing Mechanism for SHAKE Architecture

Dynamic Traffic Load Balancing Mechanism for SHAKE Architecture Dynamic Traffic Load Balancing Mechanism for SHAKE Architecture Hiroshi Esaki, Hiroki Kan Graduate School of Information Science and Technology, The University of Tokyo, Japan hiroshi@wide.ad.jp kohki@hongo.wide.ad.jp

More information

End-to-End Host Mobility Using SCTP

End-to-End Host Mobility Using SCTP End-to-End Host Mobility Using SCTP Lei Li, Russell Clark, Ellen Zegura College of Computing, Georgia Institute of Technology, Atlanta, Georgia 30332 leili,rjc,ewz @cc.gatech.edu Abstract We present the

More information

COMPARATIVE STUDY AND ANALYSIS OF AODTPRR WITH DSR, DSDV AND AODV FOR MOBILE AD HOC NETWORK

COMPARATIVE STUDY AND ANALYSIS OF AODTPRR WITH DSR, DSDV AND AODV FOR MOBILE AD HOC NETWORK International Journal of Information Technology and Knowledge Management July-December 2011, Volume 4, No. 2, pp. 531-538 COMPARATIVE STUDY AND ANALYSIS OF AODTPRR WITH DSR, DSDV AND AODV FOR MOBILE AD

More information

OPNET simulation model for performance evaluation of CAHP-C handover procedure

OPNET simulation model for performance evaluation of CAHP-C handover procedure OPNET simulation model for performance evaluation of CAHP-C handover procedure ROK LIBNIK*, GORAZD KANDUS**, and ALES SVIGELJ** * Network and Services Strategic Development Office, Telekom Slovenije d.d.

More information

Wireless TCP. TCP mechanism. Wireless Internet: TCP in Wireless. Wireless TCP: transport layer

Wireless TCP. TCP mechanism. Wireless Internet: TCP in Wireless. Wireless TCP: transport layer Wireless TCP W.int.2-2 Wireless Internet: TCP in Wireless Module W.int.2 Mobile IP: layer, module W.int.1 Wireless TCP: layer Dr.M.Y.Wu@CSE Shanghai Jiaotong University Shanghai, China Dr.W.Shu@ECE University

More information

A Seamless Handover Mechanism for IEEE e Broadband Wireless Access

A Seamless Handover Mechanism for IEEE e Broadband Wireless Access A Seamless Handover Mechanism for IEEE 802.16e Broadband Wireless Access Kyung-ah Kim 1, Chong-Kwon Kim 2, and Tongsok Kim 1 1 Marketing & Technology Lab., KT, Seoul, Republic of Korea {kka1, tongsok}@kt.co.kr

More information

Contact: Contact: Seok J. Koh. Tel: KNU. Fax: KOREA.

Contact: Contact: Seok J. Koh. Tel: KNU. Fax: KOREA. Question(s): 1 Meeting, date: Geneva, April 2008 Study Group: 17 Working Party: 1 Intended type of document (R-C-TD-LS): C Source: ETRI Title: Revised Text of X.mmc-2 ISO/IEC WD 24793-2 (MMC-2) Contact:

More information

Does current Internet Transport work over Wireless? Reviewing the status of IETF work in this area

Does current Internet Transport work over Wireless? Reviewing the status of IETF work in this area Does current Internet Transport work over Wireless? Reviewing the status of IETF work in this area Sally Floyd March 2, 2000 IAB Workshop on Wireless Internetworking 1 Observations: Transport protocols

More information

An Efficient Correspondent Registration to Reduce Signaling Overheads for Proxy Mobile IPv6

An Efficient Correspondent Registration to Reduce Signaling Overheads for Proxy Mobile IPv6 IJCSNS International Journal of Computer Science and Network Security, VOL.7 No.9, September 2007 187 An Efficient Correspondent Registration to Reduce Signaling Overheads for Proxy Mobile IPv6 Pyung-Soo

More information

Reliable Transmission for Remote Device Management (RDM) Protocol in Lighting Control Networks

Reliable Transmission for Remote Device Management (RDM) Protocol in Lighting Control Networks Reliable Transmission for Remote Device Management (RDM) Protocol in Lighting Control Networks Sang-Il Choi 1, Sanghun Lee 1, Seok-Joo Koh 1, Sang-Kyu Lim 2, Insu Kim 2, and Tae-Gyu Kang 2 1 Kyungpook

More information

Multihoming: the SCTP perspective

Multihoming: the SCTP perspective Multihoming: the SCTP perspective Lode.Coene@Siemens.Atea.be Information and Communications SCTP: Stream Control Transmission Protocol Described in RFC 2960 and 3309 Multihomed host: endpoint with more

More information

TAKEOVER: A New Vertical Handover Concept for Next-Generation Heterogeneous Networks

TAKEOVER: A New Vertical Handover Concept for Next-Generation Heterogeneous Networks TAKEOVER: A New Vertical Handover Concept for Next-Generation Heterogeneous Networks Hyun-Ho Choi and Dong-Ho Cho Department of Electrical Engineering and Computer Science Korea Advanced Institute of Science

More information

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists 4,100 116,000 120M Open access books available International authors and editors Downloads Our

More information

Performance Evaluation of the Stream Control Transmission Protocol

Performance Evaluation of the Stream Control Transmission Protocol Performance Evaluation of the Stream Control Transmission Protocol Andreas Jungmaier, University of Essen, Institute of Computer Networking Technology, Germany Michael Schopp, Michael Tüxen, Siemens AG,

More information

SCTP Administrator's Guide

SCTP Administrator's Guide SCTP Administrator's Guide HP-UX 11i v2, HP-UX 11i v3 HP Part Number: 5992-4577 Published: April 2008 Edition: 1 Copyright 2007 2008 Hewlett-Packard Development Company, L.P. Confidential computer software.

More information