Multiple Backhaul Mobile Access Router: Design and Experimentation

Size: px
Start display at page:

Download "Multiple Backhaul Mobile Access Router: Design and Experimentation"

Transcription

1 Multiple Backhaul Mobile Access Router: Design and Experimentation Yan Sun, Fangfei Chen and Thomas F. La Porta Networking and Security Research Center Department of Computer Science and Engineering The Pennsylvania State University, University Park, PA Abstract The Multiple Backhaul Mobile Access Router aims to provide high capacity and high performance Internet access for emerging mobile wireless applications. In this paper we describe the framework and implementation of a modular mobile access router system. A set of backhaul interface monitoring APIs are provided to support flexible handover policies. We present the experimental results to validate the performance of our mobile access router and illustrate tradeoffs when designing handover policies. 1 I. INTRODUCTION Mobile access routers allow groups of users to connect to the Internet and remain connected as the router moves. These routers are attractive for providing high capacity and high performance Internet access for a group of users in a mobile environment, for example on a train or bus. There are several existing and emerging wireless networks that support mobile applications. These networks include the widely deployed GPRS, UMTS, and CDMA cellular networks as well as WLAN (e.g., ) and emerging broadband Wimax networks. When these technologies are used to provide connectivity from the mobile access router to the Internet, we term them wireless backhaul. The trend is for a mobile access router to support multiple wireless backauls, each with a different wireless technology. This way, the mobile access router has a better chance of maintaining Internet connectivity as it moves. One major effort supporting these architectures is the NEMO protocol developed within the IETF [1]. NEMO is proposed to support network mobility which enables session continuity of a group users attached to a mobile access router. The protocol is an extension of Mobile IPv6. A new IETF draft [2] analyzes multihoming for network mobility. A similar problem has been explored considering clients with multiple wireless interfaces. For example, two different inter-working architectures have been proposed for WLAN- 3G interworking: tightly coupled and loosely coupled [3]. Figure 1 shows the loosely coupled architecture which separates the data path for WLAN access from 3G networks and connects to the 3G core network through the Internet. In contrast, in a tightly coupled architecture the WLAN access can be viewed as an alternative radio access network to the 3G network. We extend the loosely coupled architecture to the mobile access router. 1 The work was funded by National Science Foundation (NSF) grant CNS G Core Network Home Agent (HA) Fig. 1. Internet PDSN Internet SGSN Foreign Agent (FA) Foreign Agent (FA) CDMA BS UMTS BS Wimax AP WiFi AP Multiple Backhauls Mobile Access Router Multiple Backhaul Mobile Access Router System Architecture. Different handover policies have been proposed to improve the performance of vertical handovers [3] [4] [5]. Yet, there are still challenges in determining the relevant network parameters and effective handover decision models related to vertical handover in dynamic network environments. As such, interfaces that allow flexible policies for handover are essential. In this paper we focus on: describing the implementation of a modular mobile access router that supports multiple wireless backhauls using Mobile IP [6]; presenting common APIs that may be used by a network monitor to implement different backhaul switching policies; demonstrating performance measurements of handover policies we implemented to show the utility of the APIs and considerations to be taken when designing such policies; Our system is built on top of the workit Wireless Open Research KIT [7] provided by Alcatel-Lucent Bell Labs. The remainder of the paper is organized as follows. Section II presents the framework of the multiple backhaul mobile access router system. In Section III we demonstrate the details of the multiple backhaul access APIs that may be used by a network monitor. Section IV defines three network selection policies for vertical handover built using the API. Section V explores the performance of the system implementation for different vertical handover policies. Section VI describes the conclusions and future work. II. THE MULTIPLE BACKHAUL MOBILE ACCESS ROUTER Our mobile access router is built based on the loosely coupled architecture described above /08/$ IEEE 4543

2 When clients connect to the mobile access router for service, they receive an address from the router using DHCP and are authenticated using a RADIUS server. The addresses assigned to the clients are private addresses administered by the mobile access router. The mobile access router connects to the Internet through one of its backhauls. It provides the NAT service to the clients. The mobile access router manages mobility across wireless links of the same technology, and between technology using Mobile IP. It shields the clients from the handover. The mobile access router integrates the mobility functions in the access router on top of a multi-link virtual network interface driver to support dynamic backhaul monitoring and seamless handoff in addition to group mobility. Figure 2 shows the software framework of the mobile access router in three parts: a multi-link virtual interface driver implemented as a kernel module; the network monitor and mobility modules which direct the handover decisions and implement the handover across backhauls; the security and IP services module and client session database for internal user access. We implement Mobile IP [6] client functions on a virtual network interface which controls the multiple backhauls. This interface acts as a Mobile IP client to the network and is thus assigned a fixed Mobile IP Home Address. Because this address remains constant across handovers, end user sessions are preserved. The handover algorithms can exploit overlapped network coverage to avoid service disruption and packet loss. Our solution does not change the Mobile IP protocol and we require no upgrade to the Mobile IP Home Agent or Foreign Agent as is required by NEMO. The Mobile IP Home Agent and Foreign Agent are provided by the workit Wireless Open Research KIT [7]. Our mobile access router is implemented in Debian Linux. The kernel version supported is up to 2.6. The modular design approach provides flexible framework to allow scalability on different platforms. Below we first describe the implementation of the three main modules of the mobile access router. We then describe the processing flow for an inter-backaul handover and show a basic handover performance result. This motivates our study on wireless link parameters in Section III. A. Multi-link Virtual Interface Module The mobile access router is built on a multi-link virtual interface driver that is used by both the mobility module and access router module as described in the subsequent sections. The main benefit of using a virtual interface is that the higher layer modules, i.e., the mobility and access router modules, may be shielded from changes in backhaul. The virtual interface device driver provides device registration, initialization, transmission and reception. In addition to the standardized operations, a custom IOCTL command SIOCSWITCHBACKHAUL, is provided to the user to trigger the backhaul interface switching. Fig. 2. Access Router PostSQL Session DB Session Mgmt. Radius Web Server Server Security/Web Services DHCP Server Integrated Internal Access Point IF IP Services NAT/ Firewall Network Detection Network Monitor Mobility Client Mobility Multi-link Virtual IF Driver Mobility Host Radius Client Security Network Selection Multi-link Soft IF Multiple Backhauls IFs (Ethernet, , CDMA,etc.) Multi-link Virtual IF Multiple Backhaul Mobile Access Router Software Framework. B. Mobility Module The mobile access router is designed to support multiple backhauls and select the best interface dynamically to provide high quality connectivity. Mobile IP is used to manage handovers on the backhaul to support service continuity. We implement the Mobile IP Client functionalities as member functions of C++ class MipClient. We support RADIUS, challenge/response and NAI in the mobility module. A Multi-link Soft Interface class MIP VIF is designed to initialize the virtual interface and abstract the IOCTL operation invocations of the virtual interface driver. It also abstracts the link status information. MipClient class uses the MIP VIF class to interact with the virtual interface. MipClient class also updates the route/arp entries based on the virtual interface when a reply message is received from the agent. The network monitor is specifically designed to flexibly support new link quality parameters and network selection policies. An abstract link status class BHIface and several derived classes are designed for supported backhaul types. We study the link quality parameters in detail in Section III and use them in handover policies in Section IV. The network selection chooses the best interface based on different policy requirements. We provide a basic handover policy according to link connectivity as member functions of the classes for supported backhaul types. New functionalities can be added to support more complicated policies and decision models. The MipClient class interacts with the network monitor modules to trigger vertical handovers. C. Access Router Module The access router module serves as an access router for its clients. To simplify the system hierarchy we support Simple IP for clients that connect to the mobile router. They are assigned an address using DHCP and maintain this address for the duration of a session. A PostSQL on-disk database is used to store the client session state information and can provide a recovery capability on failure. Web-based user/password authentication is used to interact with Radius Server on the router. The NAT/firewall is designed to provision and dynamically insert the filtering rules on the virtual interface instead of a physical interface. The on-going client sessions are 4544

3 Network Detection Unit Network Selection Unit Handover Unit Handover Triggered Monitor Triggered Yes No New Backhaul Yes Add New Backhaul Select Best IF based on Policy Best IF == Current IF? No Successful Radius Authentication Successful MIP Reg. on new IF sequence number RRR R R Access IF Parameters Handle New IF Multi-link Soft Interface Switch Invocation Fig. 3. Handover Processing Flow. Handover End preserved when the backhaul switches since the virtual interface does not change and the per user filter rules are still valid. This is desirable compared with the approach in [3] which uses a packet filter library that installs per user packet filtering rules on the physical interface. D. Handover Processing Flow In this subsection we briefly describe the processing flow for a handover between backhauls. Please refer to Figure 3 for this discussion. This illustrates the processing flow and interaction between the network monitor module and mobility module to trigger a handover in the mobile access router. Assume internal users have already registered with the mobile access router, have received IP addresses and had their NAT filters installed. In this example, the handover occurs from backhaul type A to backhaul type B. Before the handover, packets from the client are received by the mobile access router, a NAT function is performed, and the packets are sent to the virtual interface. This interface transmits the packets out on interface A. If a router advertisement is received from a new backhaul network, the network monitor must decide if it should switch backhauls. Assume at some time an advertisement from backhaul network B is received and interface A becomes unavailable. This is detected by the network monitor. The network selection function determines that a handover to backhaul B must be performed. The Mobile IP client in the mobility module then sends a Mobile IP Registration message to the new FA. During the handover the packets from the internal users are still transmitted through the virtual interface which directs the traffic to the old backhaul A. The reply message from the new FA triggers the multi-link soft interface to interact with the multi-link virtual interface driver. The virtual interface driver changes the physical backhaul to interface B. At this time, packets received at the mobile access router from the client continue to be routed to the virtual interface via the NAT function, which then transmits them out interface B. E. Preliminary Handover Performance To determine the base performance of the system we perform a simple experiment using WLAN and ethernet as two backahuls from the mobile access router. Handovers are forced from the ethernet to the WLAN by disconnecting the ethernet cable. We transfer a large file from an internal ftp sever. We monitor the traffic using tcpdump for the the active data sessions :10 08:20 08:30 08:40 08:50 09:00 09:10 09:20 09:30 09:40 09:50 10:00 time Fig. 4. TCP Time Sequence Graph. TCP sequence number progression vs. time is used as the metric to evaluate the backhaul handover performance. The result is shown in Figure 4. This experiment results in the worst case handover latency because the monitor waits for the active backhaul link to break before initiating a backhaul change. The handover latency is approximately 12s which includes the network discovery time, the network registration time and the client processing time. This undesirable handover performance motivates the study of different link quality parameters based upon which the decision to switch backhauls may be made. We build a set of APIs to provide basic functions that can be used to extend the network monitor module which makes the backhaul switching decision. The APIs communicate with different wireless devices and provide information such as RSSI, noise level, BER, etc. III. MULTIPLE BACKHAUL ACCESS APIS Our challenge is to provide a set of APIs that may be used by the network monitor to implement flexible backhaul switching policies. We have two main design goals for these APIs. First, we can only control processing in the client; we cannot upgrade network equipment such as base stations or access routers. Second, the APIs must hide the details of the wireless interface from the network monitor. After studying several wireless cards it is apparent that while it is possible to obtain values for certain parameters of interest, some parameter values may only be estimated or inferred depending on the interface card. We provide a summary of the API below. If a function starts with Get, the value is obtained from the interface; if it starts with Cal, the value is calculated and can be taken as an estimate. / Common functions / // Use ioctl () or serial communication int GetRSSI(char InterfaceName); / Functions for cards only / // Parsed from /proc/ net / wireless int GetNoise(char InterfaceName); // Wireless extension long GetBitRate(char InterfaceName); // Calculated from SNR double CalBitErrorRate(char InterfaceName); // Calculated from BER and MTU double CalFrameErrorRate(char InterfaceName); Most cards support a standard called the Wireless Extension. This provides a general way to get information from these cards using IOCTL requests. Using this method, the IOCTL returns must be parsed. The interface allows the RSSI, MTU and transmission rate to be obtained directly. 4545

4 CDMA cards do not provide such an interface. Instead, the interface to these cards is similar to that of a modem. Values of select parameters may be read from a serial port. In the commercial CDMA cards used in our implementation the only available measured parameter is the received signal strength indication (RSSI) of a link. For either card, we cannot get a bit or frame error rate directly from the interface. One possibility is to generate traffic and monitor the error rate, but this is difficult to do efficiently without modification of the base station or access router in the backbone network. A second option is to estimate the bit error rate from the RSSI. This is not straightforward for the cards because different modulation methods are used depending on the transmission rate. To get this estimation, we first use the GetRate function to determine the modulation scheme, and then apply the appropriate error rate formula for the modulation scheme. Once the bit error rate (BER) is determined, this can easily be mapped into an estimation of the frame error rate (FER) if we assume bit errors are independent and we know the size of the frames being transmitted. To determine the frame size with use the GetMTU function and apply the formula: FER =1 (1 BER) MTU IV. POLICIES FOR VERTICAL HANDOVER The APIs provided in Section III can be used to build sophisticated backhaul switching polices. For example, switching may be triggered based on error rates, data rates, or signal quality. Here we define a basic threshold scheme based on signal to noise ratio (SNR), and by adjusting the threshold values can implement several policies. Clearly, the policies described here are simple, but they are adequate for our purposes of showing the utility of the API and implementation of the mobile access router. In the threshold scheme, the mobile access router has a primary link, p, and a secondary link, s. As the names indicate, the mobile access router will use the primary link if its performance is good enough as defined by the thresholds, and will switch to the secondary link only when necessary. The primary link has two thresholds associated with it, T p low and T p hi. The secondary link has a single threshold, T s. In our experiments, the thresholds correspond to values of SNR, but they can easily be mapped to other parameters such as transmission rate, error rates, or delay. If the primary link is in service, it remains in use as long as the measured SNR p >= T p low. If the measured SNR p falls below T p low and the measured SNR for the secondary link, SNR s >= T s, the mobile router will switch to the secondary backhaul. The mobile access router returns to the primary backhaul if either SNR s <T s or SNR p >T p hi. By adjusting the thresholds, several policies can be implemented as described below: 1) Persistent Policy: The mobile access router attempts to stay on the primary backhaul unless it is unavailable. To implement this policy, T p low is set to the minimum SNR at which communication may take place, and T p hi is set very close to T p low. TABLE I SIMPLE IP HANDOVER POLICY THRESHOLD Policy Primary Link Primary Link Secondary Link Low Th. (db) High Th. (db) Th. (db) Persistent Aggressive Predictive ) Aggressive Policy: The mobile access router attempts to always use the link with higher quality; it favors the primary link only if it is above a high threshold. This may be implemented by setting T p low and T s to relatively high values and setting T p hi close to T p low. This policy may lead to instability by aggressively switching between backhauls. 3) Predictive Policy: The mobile router attempts to stay on the primary backhaul, but switches to the secondary link before the primary link is lost, thus improving performance. This may be implemented by setting T p low to a value above the minimum needed for communication, but at a point at which it is beginning to degrade. To promote stability, T p hi is set to a relatively high value. In all three policies, a stability period is set. If the threshold is not violated for a duration of longer than the stability period, no backhaul switching is performed. The level of aggressiveness, stability, etc., may be tuned by setting the thresholds. V. PERFORMANCE EVALUATION A. Testbed Setup The experimental setup consists of our mobile access router in a loosely coupled Mobile IP-based WLAN- Ethernet/WLAN-CDMA testbed. The wireless backhaul from the mobile access router is either WLAN (802.11) or CDMA. An ethernet connection is also available when the mobile access router is inside a building. We used Soekris WLAN access points (APs) with a Netgate 200mW long range b PCMCIA card. The CDMA network used was the Verizon wireless network. The Verizon CDMA network used in the testing provides its own Mobile IP Home Agent. This Home Agent will not serve traffic to a mobile device connected via a WLAN. Therefore, we were unable to test the vertical handoff between WLAN and CDMA using Mobile IP. Instead we tested simple IP vertical handovers between CDMA and WLAN networks to compare the performance of the handover policies. Table I summarizes the SNR thresholds used for each policy tested. A stability threshold of 3 seconds is used. The data for all tests for are collected using tcpdump and analyzed using tcptrace[8]. B. WLAN-CDMA Simple IP Handover Performance To avoid firewall filtering we conduct an ICMP Ping test from the mobile client to a server inside the CSE department of Penn State University. To measure handover performance, we track ICMP sequence number progression vs. time. The mobile router physically traverses a path inside the building along the lobby at normal walking speed. The 4546

5 Fig. 5. ICMP Time SEQ with SNR - Persistent Policy. Fig. 7. ICMP Time SEQ with SNR - Aggressive Policy. Fig. 6. Packet Loss Distribution - Persistent Policy. initial backhaul is WLAN. The first handover switches the backhaul to CDMA; a subsequent handover occurs which switches the backhaul back to WLAN. The timing of the handovers differs for the different policies. The packet size is set to 1400 bytes and the transmission interval is 10ms. This rate saturates the CDMA network and results in high packet loss when the CDMA backhaul is used. We use this rate to show that available network throughput is critical to support different service requirements in addition to the signal quality such as the SNR parameter. 1) Persistent Policy: The goal of the persistent policy is to keep the WLAN connection as long as possible. For this policy we chose T low p = 0dB and T hi p = 10dB. These values were chosen because we observed that WLAN performance (such as throughput) degrades to zero quickly at these values. Figure 5 shows the ICMP time sequence graph during the experiment with the persistent policy. The packet number progression vs. time is indicative of the system throughput. We include the measured SNR and transmission rate on the y-axis as well to show how this correlates to actual throughput of the wireless link. Figure 6 shows two bursts of packet loss which correspond to two SNR drop-offs near the handover time. The first burst occurs at 53 seconds due to a sudden, but brief drop in SNR on the WLAN backhaul, and results in 635 lost packets (corresponding to the (53, 635) in the Figure). This drop is shorter than the stability timer, so no handover occurs. The second burst of lost packets (55, 407) corresponds to a drop in WLAN SNR to -23dB which triggers the first Fig. 8. Packet Loss Distribution - Aggressive Policy. backhaul handover at 57 seconds. There is an short blackout time after the backhaul switch before the first message is received from the CDMA network. We count the WLAN packet loss during the last stability period until the blackout period ends as shown in Figure 10. The CDMA backhaul link experiences a burst of packet loss during its first 3 seconds of use. The backhaul uses the CDMA network for a short time and then switches back to the WLAN link at 63 seconds when the WLAN has a measured SNR of 11dB. Because the WLAN SNR is still low there is visible packet loss (in Figure 6) even after the second handover resulting in decreased throughput. In addition, there is a sudden SNR drop at 81s. This results in another burst of packet loss before the link stabilizes. This drop in SNR is not sustained longer than the stability timer so no backhaul handover to CDMA occurs. In summary, the packet loss of persistent policy is mainly due to the instability of the WLAN link at relatively low SNR values. The packet loss from CDMA network is discussed in more detail below. 2) Aggressive Policy: The rapid drop-off in performance observed on the WLAN link makes setting the thresholds for the aggressive policy difficult because there is not a large range of values during which a switch from WLAN may take place. We set relatively high threshold values for both backhauls, as shown in Table I and the CDMA network quality is very good and stable in the building. The time sequence graph for the experiments with the aggressive policy is shown in Figure 7. The aggressive policy properly chooses to use the backhaul with the highest 4547

6 Fig. 9. ICMP Time SEQ with SNR - Predictive Policy. SNR as long as possible, but does not achieve overall higher throughput performance than the other policies. The reason is that, although the CDMA link has higher SNR, its sustainable transmission rate is lower than the WLAN, and thus it incurs high packet loss. The packet loss over time is shown in Figure 8. Since the threshold values of the WLAN network were set hight, the CDMA backhaul was used for a longer period of time. 3) Predictive Policy: Figure 9 shows the time sequence graph for the predictive policy. The handover from WLAN to CDMA occurs at 54s, and the subsequent handover back to WLAN occurs at 73s. These handovers correspond to measured SNR values of 8dB and 25dB, respectively. The predictive handover policy uses lower threshold values than the aggressive policy, so the backhaul tends to remain on the primary link, in this case WLAN, for a longer period of time. There is no burst packet loss related to handover (not shown). Because messages are buffered in the client kernel, and the handovers are relatively close in time, interleaved packets are received over the CDMA and WLAN backhaul. The higher packet loss rate of CDMA network accounts for almost all lost packets in this experiment. The overall throughput achieved using the predictive policy is better than the other two policies we explored. The main reason is that the WLAN backhaul provided a higher data rate, and hence resulted in less packet loss. This illustrates that, depending on network environments, different policies and thresholds will lead to better performance. The APIs we provide allow the flexible development of these policies. Figure 10 shows the causes for packet loss for all three policies. For the aggressive policy, loss on the CDMA backhaul dominates the performance. This argues for a tradeoff between SNR and transmission rate. This is possible using the APIs as discussed in the next subsection. 4) Combined Policy: Based on our observations above, we define a new policy that attempts to stress the use of backhaul with the highest transmission rate, but also avoids long pauses by predicting when link outage will occur. To implement this policy, we set SNR thresholds T hi SNR p and T low SNR p to the same values as the corresponding SNR thresholds for the predictive policy. In addition, we defined a new set of thresholds based on transmission rate with the same relationship as with the Fig. 10. Packet Loss Comparison - Three Policies. aggressive SNR policy. That is, we set T low rate p = T rate s and set T hi rate p close to T low rate p. In our experiments, this policy performed exactly as the predictive policy because of the behavior of the WLAN backhaul link. This link always had a higher rate than the CDMA link unless it was about to drop below the threshold at which the link was broken. In this setting, this is the desirable behavior. In settings with different wireless technology being used for backhaul, it would remain on the link with the highest rate but avoid outages. VI. CONCLUSION AND FUTURE WORK In this paper we present a flexible framework and implementation of a Multiple Backhaul Mobile Access Router. A set of backhaul interface monitoring APIs is provided to support flexible handover policies. We present experimental results to validate the performance of our mobile access router and several handover policies. In the future, we plan to evaluate the performance of Mobile IP vertical handovers across different wireless links and extend the handover polices to more sophisticated decision models. ACKNOWLEDGMENT The authors would like to acknowledge the workit group in Bell Labs, New Jersey, especially Girish Chandranmenon, Clement Lee, Milind Buddhikot and Scott Miller. REFERENCES [1] V. Devarapalli, R. Wakikawa, A. Petrescu, and P. Thubert, Network mobility (nemo) basic support protocol, RFC 3963, [2] C. Ng, T. Ernst, E. Paik, and M. Bagnulo, Analysis of multihoming in network mobility support, draft-ietf-nemo-multihoming-issues-07, [3] M. Buddhikot, G. Chandranmenon, S. Han, Y. W. Lee, S. Miller, and L. Salgarelli, Integration of and third-generation wireless data networks, in the IEEE INFOCOM, [4] R. Chakravorty, P. Vidales, K. Subramanian, I. Pratt, and J. Crowcroft, Performance issues with vertical handovers - experiences from gprs cellular and wlan hot-spots integration, in the IEEE PERCOM, [5] E. S. Navarro and V. Wong, Comparison between vertical handoff decision algorithms for heterogeneous wireless networks, in VTC, [6] C. E. Perkins, Ip mobility support for ipv4, RFC 3220, [7] Workit - wireless open research kit, 2007, [8] Tcptrace, v 6.6.0,

Efficient Handoff using Mobile IP and Simplified Cellular IP

Efficient Handoff using Mobile IP and Simplified Cellular IP Presented at GNSS 2004 The 2004 International Symposium on GNSS/GPS Sydney, Australia 6 8 December 2004 Efficient Handoff using Mobile IP and Simplified Cellular IP S. Omar School of Surveying & Spatial

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

WiMax-based Handovers in Next Generation Networks

WiMax-based Handovers in Next Generation Networks WiMax-based Handovers in Next Generation Networks Nadine Akkari Department of Computer Science Faculty of Computing and Information Technology King Abdulaziz University, Saudi Arabia nakkari@kau.edu.sa

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

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

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

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

A Tightly-coupled Integration Scheme between WiBro and cdma2000 mobile networks

A Tightly-coupled Integration Scheme between WiBro and cdma2000 mobile networks A Tightly-coupled Integration Scheme between WiBro and cdma2000 mobile networks Hongsung Chang 1,YongChang 1, and Jinsung Cho 2 1 Telecommunication Network, SAMSUNG Electrnoics, Suwon 442-742, Korea {hschang7,yongchang}@samsung.com

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

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

Performance Comparison between Multihomed Network Mobility Protocols

Performance Comparison between Multihomed Network Mobility Protocols Performance Comparison between Multihomed Network Mobility Protocols Md. Shohrab Hossain, Mohammed Atiquzzaman School of Computer Science, University of Oklahoma Norman, OK 79. Email: {shohrab, atiq}@ou.edu

More information

Analyzing the performance of WiMAX zone handover in the presence of relay node Qualnet6.1

Analyzing the performance of WiMAX zone handover in the presence of relay node Qualnet6.1 IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 3, Ver. IV (May - Jun. 2014), PP 49-53 Analyzing the performance of WiMAX zone

More information

SJTU 2018 Fall Computer Networking. Wireless Communication

SJTU 2018 Fall Computer Networking. Wireless Communication SJTU 2018 Fall Computer Networking 1 Wireless Communication Internet Protocol Stack 2 Application: supporting network applications - FTP, SMTP, HTTP Transport: data transfer between processes - TCP, UDP

More information

An Approach to Efficient and Reliable design in Hierarchical Mobile IPv6

An Approach to Efficient and Reliable design in Hierarchical Mobile IPv6 An Approach to Efficient and Reliable design in Hierarchical Mobile IPv6 Taewan You 1, Seungyun Lee 1, Sangheon Pack 2, and Yanghee Choi 2 1 Protocol Engineering Center, ETRI, 161 Gajoung-dong, Yusong-gu,

More information

Vertical and Horizontal Handover in Heterogeneous Wireless Networks using OPNET

Vertical and Horizontal Handover in Heterogeneous Wireless Networks using OPNET Vertical and Horizontal Handover in Heterogeneous Wireless Networks using OPNET Abhishek Dhiman M.E, E.C.E Department, Thapar University, Patiala Karamjit Singh Sandha Asst. Professor, E.C.E Department

More information

Performance Comparison and Analysis on MIPv6, Fast MIPv6 Bi-casting and Eurecom IPv6 Soft Handover over IEEE802.11b WLANs

Performance Comparison and Analysis on MIPv6, Fast MIPv6 Bi-casting and Eurecom IPv6 Soft Handover over IEEE802.11b WLANs Performance Comparison and Analysis on MIPv6, Fast MIPv6 Bi-casting and Eurecom IPv6 Soft Handover over IEEE802.11b WLANs Farouk Belghoul, Yan Moret, Christian Bonnet Department of Mobile Communications,

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

Network Mobility Across Private Domains

Network Mobility Across Private Domains Network Mobility Across Private Domains Harish Viswanathan, Sampath Rangarajan, Suman Das April, 2007 Mobile Broadband new usage scenarios Mobile broadband is evolving to provide high data rates New services

More information

Vertical Handover in Vehicular Ad-hoc Networks A Survey

Vertical Handover in Vehicular Ad-hoc Networks A Survey Vertical Handover in Vehicular Ad-hoc Networks A Survey U. Kumaran Department of computer Applications Noorul Islam Center for Higher Education, Kumaracoil,Tamilnadu, India. Abstract- Vehicular Ad-hoc

More information

Issues in Mobile Node Controlled Handovers

Issues in Mobile Node Controlled Handovers Issues in 802.21 Mobile Node Controlled Handovers Rehan Qureshi, Arek Dadej and Qiang Fu Institute for Telecommunications Research University of South Australia Mawson Lakes, SA 5095, Australia Email:

More information

Performance Evaluation of NEMO Basic Support Implementations

Performance Evaluation of NEMO Basic Support Implementations Performance Evaluation of NEMO Basic Support Implementations Romain Kuntz, Koshiro Mitsuya, Ryuji Wakikawa Keio University, Japan E-mail: {kuntz,mitsuya,ryuji}@sfc.wide.ad.jp Abstract. The NEMO Basic Support

More information

IP Mobility vs. Session Mobility

IP Mobility vs. Session Mobility IP Mobility vs. Session Mobility Securing wireless communication is a formidable task, something that many companies are rapidly learning the hard way. IP level solutions become extremely cumbersome when

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

Mobile IP, its extensions and practical use cases. Nordunet 2002 Tom Weckström Lifix Systems Oy

Mobile IP, its extensions and practical use cases. Nordunet 2002 Tom Weckström Lifix Systems Oy Mobile IP, its extensions and practical use cases Nordunet 2002 Lifix Systems Oy Contents Speaker s introduction Mobile IP introduction Mobile IP s benefits Mobile IP penetration Extensions of the base

More information

IPv6-based Beyond-3G Networking

IPv6-based Beyond-3G Networking IPv6-based Beyond-3G Networking Motorola Labs Abstract This paper highlights the technical issues in IPv6-based Beyond-3G networking as a means to enable a seamless mobile Internet beyond simply wireless

More information

Integration of and Third-Generation Wireless Data Networks

Integration of and Third-Generation Wireless Data Networks Integration of 802.11 and Third-Generation Wireless Data Networks Milind M. Buddhikot mbuddhikot@bell-labs.com Center for Networking Research Lucent Bell Labs Research Outline Current Trends and Rationale

More information

Recognizing Handover Situation for Vertical Handovers using Mobile IPv6 Signaling

Recognizing Handover Situation for Vertical Handovers using Mobile IPv6 Signaling IJCSNS International Journal of Computer Science and Network Security, VOL.7 No.4, April 2007 173 Recognizing Handover Situation for Vertical Handovers using Mobile IPv6 Signaling Pyung-Soo Kim 1 and Yong-Jin

More information

University of Würzburg Institute of Computer Science Research Report Series. Performance Comparison of Handover Mechanisms in Wireless LAN Networks

University of Würzburg Institute of Computer Science Research Report Series. Performance Comparison of Handover Mechanisms in Wireless LAN Networks University of Würzburg Institute of Computer Science Research Report Series Performance Comparison of Handover Mechanisms in Wireless LAN Networks Rastin Pries and Klaus Heck Report No. 339 September 2004

More information

MobileNAT: A New Technique for Mobility across Heterogeneous Address Spaces

MobileNAT: A New Technique for Mobility across Heterogeneous Address Spaces MobileAT: A ew Technique for Mobility across Heterogeneous Address Spaces Milind M. Buddhikot mbuddhikot@bell-labs.com (Lucent Bell Labs) Joint work with Adiseshu Hari, Kundan Singh, Scott Miller Agenda

More information

IEEE C /26. IEEE Working Group on Mobile Broadband Wireless Access <http://grouper.ieee.org/groups/802/20/>

IEEE C /26. IEEE Working Group on Mobile Broadband Wireless Access <http://grouper.ieee.org/groups/802/20/> 2003-03-09 IEEE C802.20-03/26 Project Title Date Submitted IEEE 802.20 Working Group on Mobile Broadband Wireless Access Architectural Attributes of an IP-based

More information

Fast Handover for Multiple-interface Mobile Devices Connecting to a Single Foreign Agent in MIPv4 with MIH Support

Fast Handover for Multiple-interface Mobile Devices Connecting to a Single Foreign Agent in MIPv4 with MIH Support Fast Handover for Multiple-interface Mobile Devices Connecting to a Single Foreign Agent in MIPv4 with MIH Support Beizhong Chen Ivan Marsic David Faucher Cezar Purzynski Ray Miller Sharma Sameer Rutgers

More information

Wireless Challenges : Computer Networking. Overview. Routing to Mobile Nodes. Lecture 25: Wireless Networking

Wireless Challenges : Computer Networking. Overview. Routing to Mobile Nodes. Lecture 25: Wireless Networking Wireless Challenges 15-441: Computer Networking Lecture 25: Wireless Networking Force us to rethink many assumptions Need to share airwaves rather than wire Don t know what hosts are involved Host may

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

Implementation and Analysis of a Testbed for IP-Based Heterogeneous Wireless Networks

Implementation and Analysis of a Testbed for IP-Based Heterogeneous Wireless Networks Implementation and Analysis of a Testbed for IP-Based Heterogeneous Wireless Networks JYH-CHENG CHEN, CHING-YANG HUANG, SHUN-CHAO HUANG, MING-CHIA JIANG, CHIA-FENG KANG, HONG-WEI LIN, LIAN-DONG LIU,YI-WEN

More information

QoS based vertical handoff method between UMTS systems and wireless LAN networks

QoS based vertical handoff method between UMTS systems and wireless LAN networks QoS based vertical handoff method between UMTS systems and wireless LAN networks Sungkwan Jung and Dong-ho Cho Div. of EE, Dept. of EECS Korea Advanced Institute of Science and Technology Daejeon, Rep.

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

Fast Location Opposite Update Scheme for Minimizing Handover Latency over Wireless/Mobile Networks

Fast Location Opposite Update Scheme for Minimizing Handover Latency over Wireless/Mobile Networks Fast Location Opposite Update Scheme for Minimizing Handover Latency over Wireless/Mobile Networks Sunguk Lee Research Institute of Industrial Science and Technology Pohang, Gyeongbuk, 790-330, S.KOREA

More information

Performance Evaluation of UMTS-WLAN interworking Anita Nanda 1, S.P.Panigrahi 2, R.R.Mohanty 2, N.Panda 2, M.Singh 2, S.M.Rout 2

Performance Evaluation of UMTS-WLAN interworking Anita Nanda 1, S.P.Panigrahi 2, R.R.Mohanty 2, N.Panda 2, M.Singh 2, S.M.Rout 2 Performance Evaluation of UMTS-WLAN interworking Anita Nanda 1, S.P.Panigrahi 2, R.R.Mohanty 2, N.Panda 2, M.Singh 2, S.M.Rout 2 1 Comp. Sc., MITS, Rayagada, 2 Electrical Engg., KIST Jatani, Bhubaneswar,

More information

IP Mobility Support for QoS over Heterogeneous Networks

IP Mobility Support for QoS over Heterogeneous Networks IP Mobility Support for QoS over Heterogeneous Networks Eun Kyoung PAIK Feb. 7-9, 2007 Future Technology Lab. KT Contents Introduction Network Topology Perspective Multihoming Network Layer Perspective

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

Seamless Handover Scheme for Proxy Mobile IPv6

Seamless Handover Scheme for Proxy Mobile IPv6 IEEE International Conference on Wireless & Mobile Computing, Networking & Communication Seamless Handover Scheme for Proxy Mobile IPv6 Ju-Eun Kang 1, Dong-Won Kum 2, Yang Li 2, and You-Ze Cho 2 1 LGDACOM

More information

Mobile IP and Mobile Transport Protocols

Mobile IP and Mobile Transport Protocols Mobile IP and Mobile Transport Protocols 1 IP routing Preliminaries Works on a hop-by-hop basis using a routing table 32 bits: 129.97.92.42 Address = subnet + host (Mobility No packet for you) Two parts»

More information

Proactive Context Transfer in WLAN-based Access Networks

Proactive Context Transfer in WLAN-based Access Networks Proactive Context Transfer in WLAN-based Access Networks Ha Duong, Arek Dadej and Steven Gordon Institute for Telecommunications Research, University of South Australia Mawson Lakes, SA 5095, Australia.

More information

Implementation of a Multihoming Agent for Mobile On-board Communication

Implementation of a Multihoming Agent for Mobile On-board Communication Implementation of a Multihoming Agent for Mobile On-board Communication Jun Yao, Yi Duan, Jianyu Pan School of Computer Science and Engineering University of New South Wales Sydney, NSW 2052, Australia

More information

A Hybrid Load Balance Mechanism for Distributed Home Agents in Mobile IPv6

A Hybrid Load Balance Mechanism for Distributed Home Agents in Mobile IPv6 A Hybrid Load Balance Mechanism for Distributed Home Agents in Mobile IPv6 1 Hui Deng 2Xiaolong Huang 3Kai Zhang 3 Zhisheng Niu 1Masahiro Ojima 1R&D Center Hitachi (China) Ltd. Beijing 100004, China 2Dept.

More information

CS5984 Mobile Computing

CS5984 Mobile Computing CS5984 Mobile Computing Dr. Ayman Abdel-Hamid Computer Science Department Virginia Tech Mobile IPv4 Micro-mobility 1 Outline solutions 2 Local-area Mobility Solutions Within the Mobile IP framework Regional

More information

Comparision study of MobileIPv4 and MobileIPv6

Comparision study of MobileIPv4 and MobileIPv6 Comparision study of MobileIPv4 and MobileIPv6 Dr. Sridevi Assistant Professor, Dept. of Computer Science, Karnatak University,Dharwad Abstract: IPv4 is being replaced by IPv6 due to the increased demand

More information

QoS-Conditionalized Handoff for Mobile IPv6

QoS-Conditionalized Handoff for Mobile IPv6 QoS-Conditionalized Handoff for Mobile IPv6 Xiaoming Fu 1, Holger Karl 1, and Cornelia Kappler 2 1 Telecommunication Networks Group, Technical University Berlin 2 Information Communication Mobile, Siemens

More information

Mobile IPv6 performance in networks: handover optimizations on the link and network layer

Mobile IPv6 performance in networks: handover optimizations on the link and network layer Mobile IPv6 performance in 802.11 networks: handover optimizations on the link and network layer LaTe project, Networking laboratory, TKK Mikko Hautala mhautala@cc.hut.fi 16.03.2006 Supervisor: Instructor:

More information

FAST INTER-AP HANDOFF USING PREDICTIVE AUTHENTICATION SCHEME IN A PUBLIC WIRELESS LAN

FAST INTER-AP HANDOFF USING PREDICTIVE AUTHENTICATION SCHEME IN A PUBLIC WIRELESS LAN FAST INTER-AP HANDOFF USING PREDICTIVE AUTHENTICATION SCHEME IN A PUBLIC WIRELESS LAN SANGHEON PACK AND YANGHEE CHOI School of Computer Science and Engineering, Seoul National University, Seoul, Korea

More information

On the use of SHIM6 for Mobility Support in IMS Networks

On the use of SHIM6 for Mobility Support in IMS Networks On the use of SHIM6 for Mobility Support in IMS Networks John Ronan, Sasitharan Balasubramaniam Telecommunications Software and Systems Group Waterford Instiute of Technology, Carriganore Waterford, Ireland

More information

A Fast Handoff Scheme Between PDSNs in 3G Network

A Fast Handoff Scheme Between PDSNs in 3G Network A Fast Handoff Scheme Between PDSNs in 3G Network Jae-hong Ryu 1 and Dong-Won Kim 2, 1 Electronics and Telecommunications Research Institute (ETRI) 161 Gajeong-dong, Yuseong-gu, Daejeon, 305-350, Korea

More information

Computer Networks. Wireless and Mobile Networks. László Böszörményi Computer Networks Mobile - 1

Computer Networks. Wireless and Mobile Networks. László Böszörményi Computer Networks Mobile - 1 Computer Networks Wireless and Mobile Networks László Böszörményi Computer Networks Mobile - 1 Background Number of wireless (mobile) phone subscribers now exceeds number of wired phone subscribers! Computer

More information

End-User Controlled Vertical Handover Procedure for 4G Wireless Access Networks

End-User Controlled Vertical Handover Procedure for 4G Wireless Access Networks End-User Controlled Vertical Handover Procedure for 4G Wireless Access Networks M. Gopu, Dr. Ritesh Khanna Abstract This paper proposes a user terminal-controlled mobility management across heterogeneous

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

Use of SCTP for IP Handover Support

Use of SCTP for IP Handover Support 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, sainpaul1978}@cs.knu.ac.kr Abstract

More information

Operational Experiment of Seamless Handover of a Mobile Router using Multiple Care-of Address Registration

Operational Experiment of Seamless Handover of a Mobile Router using Multiple Care-of Address Registration Operational Experiment of Seamless Handover of a Mobile Router using Multiple Care-of Address Registration Keiichi Shima, Yojiro Uo Internet Initiative Japan Inc., Tokyo, Japan Email: keiichi@iijlab.net,

More information

The effect of Mobile IP handoffs on the performance of TCP

The effect of Mobile IP handoffs on the performance of TCP Mobile Networks and Applications 4 (1999) 131 135 131 The effect of Mobile IP handoffs on the performance of TCP Anne Fladenmuller a and Ranil De Silva b a Alcatel CIT, Software Department, Route de Nozay,

More information

Hierarchical Mobile IPv6 Implementation Experiences

Hierarchical Mobile IPv6 Implementation Experiences neumann@ft.ee.tu-berlin.de Hierarchical Mobile IPv6 Implementation Experiences Axel Neumann Andreas Festag TKN, TU-Berlin festag@ee.tu-berlin.de Siemens IPv6 Workshop, June 3, 2002 1 Overview SeQoMo Project

More information

Eliminating Handoff latencies in WLANs using Multiple Radios: Applications, Experience, and Evaluation

Eliminating Handoff latencies in WLANs using Multiple Radios: Applications, Experience, and Evaluation Eliminating Handoff latencies in 802.11 WLANs using Multiple Radios: Applications, Experience, and Evaluation Vladimir Brik, Arunesh Mishra, Suman Banerjee Presented by: Ibrahim Ben Mustafa For Wireless

More information

A Service Management Architecture for NEMO in IPv4 and IPv6 Networks

A Service Management Architecture for NEMO in IPv4 and IPv6 Networks A Service Management Architecture for NEMO in IPv4 and IPv6 Networks JinHoKim,ChoongSeonHong, Dae Sun Kim Department of Computer Engineering, Kyung Hee University, Seocheon, Giheung, Yongin, Gyeonggi,

More information

Optimized Paging Cache Mappings for efficient location management Hyun Jun Lee, Myoung Chul Jung, and Jai Yong Lee

Optimized Paging Cache Mappings for efficient location management Hyun Jun Lee, Myoung Chul Jung, and Jai Yong Lee Optimized Paging Cache Mappings for efficient location management Hyun Jun Lee, Myoung Chul Jung, and Jai Yong Lee Abstract Cellular IP maintains distributed cache for location management and routing purposes.

More information

PMIPv6 PROXY MOBILE IPV6 OVERVIEW OF PMIPV6, A PROXY-BASED MOBILITY PROTOCOL FOR IPV6 HOSTS. Proxy Mobile IPv6. Peter R. Egli INDIGOO.COM. indigoo.

PMIPv6 PROXY MOBILE IPV6 OVERVIEW OF PMIPV6, A PROXY-BASED MOBILITY PROTOCOL FOR IPV6 HOSTS. Proxy Mobile IPv6. Peter R. Egli INDIGOO.COM. indigoo. PMIPv6 PMIPv6 Proxy Mobile IPv6 PROXY MOBILE IPV6 OVERVIEW OF PMIPV6, A PROXY-BASED MOBILITY PROTOCOL FOR IPV6 HOSTS Peter R. Egli INDIGOO.COM 1/25 Contents 1. Why PMIPv6 when we have MIP? 2. PMIPv6 terminology

More information

An approach for seamless handoff among mobile WLAN/GPRS integrated networks *

An approach for seamless handoff among mobile WLAN/GPRS integrated networks * Computer Communications 29 (25) 32 41 www.elsevier.com/locate/comcom An approach for seamless among mobile WLAN/GPRS integrated networks * Rong-Hong Jan*, Wen-Yueh Chiu Department of Computer and Information

More information

IEEE C /08

IEEE C /08 2003-01-10 IEEE C802.20-03/08 Project Title IEEE 802.20 Working Group on Mobile Broadband Wireless Access A Vision of an IP-based Cellular Network Date Submitted

More information

Overview of Mobile Networking Initiatives at WINLAB

Overview of Mobile Networking Initiatives at WINLAB Overview of Mobile Networking Initiatives at WINLAB Introduction: The Next Generation MSC Custom Mobile Infrastructure (e.g. GSM, 3G) BTS Public Switched Network (PSTN) BSC GGSN, etc. WLAN Access Point

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

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

휴대인터넷. 2.3GHz Portable Internet - WiBro - Changhoi Koo Samsung Electronics. Co. November, 5, 2004

휴대인터넷. 2.3GHz Portable Internet - WiBro - Changhoi Koo Samsung Electronics. Co. November, 5, 2004 휴대인터넷 2.3GHz Portable Internet - WiBro - November, 5, 2004 Changhoi Koo (chkoo@samsung.com) Samsung Electronics. Co. Contents Introduction to WiBro Systems Definition Positioning System Specification Protocol

More information

TCP Multi-homing Support in Heterogeneous Networks

TCP Multi-homing Support in Heterogeneous Networks , March 13-15, 2013, Hong Kong TCP Multi-homing Support in Heterogeneous Networks Dang Duc Nguyen, Yang Xia, Chai Kiat Yeo, Bu Sung Lee Abstract Mobile technology provides users with ubiquitous connectivity

More information

CSC 4900 Computer Networks: Mobility

CSC 4900 Computer Networks: Mobility CSC 4900 Computer Networks: Mobility Professor Henry Carter Fall 2017 Last Time What is the hidden terminal problem? How do CDMA networks use spectrum differently than TDMA systems? What is a chipping

More information

Cross-layer Optimized Vertical Handover Schemes between Mobile WiMAX and 3G Networks

Cross-layer Optimized Vertical Handover Schemes between Mobile WiMAX and 3G Networks KSII TRANSACTIONS ON INTERNET AND INFORMATION SYSTEMS VOL. 2, NO. 4, AUGUST 2008 171 Copyright c 2008 KSII Cross-layer Optimized Vertical Handover Schemes between Mobile WiMAX and 3G Networks Jaeho Jo

More information

On the Performance Characteristics of WLANs: Revisited

On the Performance Characteristics of WLANs: Revisited On the Performance Characteristics of WLANs: Revisited S. Choi,, K. Park and C.K. Kim Sigmetrics 2005 Banff, Canada Presenter - Bob Kinicki Advanced Computer Networks Fall 2007 Outline Introduction System

More information

ID/LOC Separation Network Architecture for Mobility Support in Future Internet

ID/LOC Separation Network Architecture for Mobility Support in Future Internet ID/LOC Separation Network Architecture for Mobility Support in Future Internet Nakjung Choi, Taewan You, Jungsoo Park, Taekyoung Kwon and Yanghee Choi School of Computer Science and Engineering, Seoul

More information

The Y-Comm Framework. A new way

The Y-Comm Framework. A new way The Y-Comm Framework A new way Mobility within Domains Mobile IP is good for moving between large defined domains But we also have to consider mobility issues within a domain which may have a number of

More information

2013 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media,

2013 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media, 2013 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media, including reprinting/republishing this material for advertising

More information

Mobile IP. Mobile IP 1

Mobile IP. Mobile IP 1 Mobile IP Mobile IP 1 Motivation for Mobile IP Routing based on IP destination address, network prefix (e.g. 129.13.42) determines physical subnet change of physical subnet implies change of IP address

More information

Mobility Management for VoIP on Heterogeneous Networks: Evaluation of Adaptive Schemes

Mobility Management for VoIP on Heterogeneous Networks: Evaluation of Adaptive Schemes Mobility Management for VoIP on Heterogeneous Networks: Evaluation of Adaptive Schemes Authors:Massimo Bernaschi, Filippo Cacace, Giulio Lannello Presented by:rukmini Sarvamangala OBJECTIVE OF THE PAPER

More information

Mobile Communications Chapter 8: Network Protocols/Mobile IP

Mobile Communications Chapter 8: Network Protocols/Mobile IP Mobile Communications Chapter 8: Network Protocols/Mobile IP Motivation Data transfer, Encapsulation Security, IPv6, Problems Micro mobility support DHCP Ad-hoc networks, Routing protocols Prof. Jó Ueyama

More information

Fast Handover Techniques for ESS-Subnet Topology Mismatch in IEEE

Fast Handover Techniques for ESS-Subnet Topology Mismatch in IEEE Fast Handover Techniques for ESS-Subnet Topology Mismatch in IEEE 802.11 Chien-Chao Tseng *, Chia-Liang Lin *, Yu-Jen Chang * and Li-Hsing Yen * Department of Computer Science, National Chiao Tung University,

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

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

Introduction to Wireless Networks. Chapter 7: Introduction to Heterogeneous Networks and

Introduction to Wireless Networks. Chapter 7: Introduction to Heterogeneous Networks and Introduction to Wireless Networks Chapter 7: Introduction to Heterogeneous Networks and ALL-IP Networks Prof. Yuh-Shyan Chen Department t of CSIE National Taipei University Outline Trend on Wireless/Cellular

More information

Daedalus/GloMop Architectural Walkthrough

Daedalus/GloMop Architectural Walkthrough Daedalus/ Architectural Walkthrough Daedalus Retreat, Lake Tahoe June 18-20th, 1996 Steve Gribble and Todd Hodes {gribble,hodes}@cs.berkeley.edu Outline Motivation and overview Core architecture components

More information

Y-Comm An architecture for. Heterogeneous Networking. Part 1 The Peripheral Framework

Y-Comm An architecture for. Heterogeneous Networking. Part 1 The Peripheral Framework Y-Comm A New Architecture for Heterogeneous Networking Part 1 The Peripheral Framework Middlesex/Cambridge Jon Crowcroft- Cambridge David Cottingham- Cambridge Fatema Shaikh-Middlesex Motivation A major

More information

WISNETWORKS. WisOS 11ac V /3/21. Software version WisOS 11ac

WISNETWORKS. WisOS 11ac V /3/21. Software version WisOS 11ac WISNETWORKS User Manual V1.1 2016/3/21 Software version 1.0.0021 Table of contents 1. Setup& WMI... 3 1.1 Hardware Setup... 3 1.2 Web Management Interface... 3 2. Status... 4 2.1 Overview... 4 2.1.1 System...

More information

Advanced Computer Networks. IP Mobility

Advanced Computer Networks. IP Mobility Advanced Computer Networks 263 3501 00 IP Mobility Patrick Stuedi Spring Semester 2014 1 Oriana Riva, Department of Computer Science ETH Zürich Tuesday 1 April 2014 Outline Last week: Today: Cellular Networks

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

Last time. BGP policy. Broadcast / multicast routing. Link virtualization. Spanning trees. Reverse path forwarding, pruning Tunneling

Last time. BGP policy. Broadcast / multicast routing. Link virtualization. Spanning trees. Reverse path forwarding, pruning Tunneling Last time BGP policy Broadcast / multicast routing Spanning trees Source-based, group-shared, center-based Reverse path forwarding, pruning Tunneling Link virtualization Whole networks can act as an Internet

More information

Efficient Vertical Handoff in Heterogeneous Wireless Network

Efficient Vertical Handoff in Heterogeneous Wireless Network Efficient Vertical Handoff in Heterogeneous Wireless Network Ashwin Kamble 1, Smith Khare 1, Shubhrant Jibhkate 1, Amutha Jeyakumar 2 M.Tech Student, Department of Electrical Engineering, VJTI, Mumbai,

More information

An Analysis of the Flow-Based Fast Handover Method for Mobile IPv6 Network. Jani Puttonen, Ari Viinikainen, Miska Sulander and Timo Hämäläinen

An Analysis of the Flow-Based Fast Handover Method for Mobile IPv6 Network. Jani Puttonen, Ari Viinikainen, Miska Sulander and Timo Hämäläinen An Analysis of the Flow-Based Fast Handover Method for Mobile IPv6 Network Jani Puttonen, Ari Viinikainen, Miska Sulander and Timo Hämäläinen Emails: janput@cc.jyu.fi, arjuvi@mit.jyu.fi, sulander@cc.jyu.fi,

More information

Performance Analysis of Hierarchical Mobile IPv6 in IP-based Cellular Networks

Performance Analysis of Hierarchical Mobile IPv6 in IP-based Cellular Networks Performance Analysis of Hierarchical Mobile IPv6 in IP-based Cellular Networks Sangheon Pack and Yanghee Choi School of Computer Science & Engineering Seoul National University Seoul, Korea Abstract Next-generation

More information

Mobile IPv6 Operations Explored

Mobile IPv6 Operations Explored Mobile IPv6 Operations Explored U.S. IPv6 Summit 2003 December 8-118 2003 Carl Williams NAv6TF Steering Committee and IPv6 Forum Technical Directorate carlw@mcsr-labs.org labs.org IPv6 Mobility/wireless

More information

Vertical Handover Support for Multimode Mobile Terminal using Multi- Homed MIPv4

Vertical Handover Support for Multimode Mobile Terminal using Multi- Homed MIPv4 Vertical Handover Support for Multimode Mobile Terminal using Multi- Homed MIPv4 Tansir Ahmed, Kyandoghere Kyamakya *, Markus Ludwig, Kalenga Wa Ngoy Cyrille **, and Kalombo Masimango Monique S. BenQ Mobile,

More information

SEMO6 - A MULTIHOMING-BASED SEAMLESS MOBILITY MANAGEMENT FRAMEWORK

SEMO6 - A MULTIHOMING-BASED SEAMLESS MOBILITY MANAGEMENT FRAMEWORK SEMO6 - A MULTIHOMING-BASED SEAMLESS MOBILITY MANAGEMENT FRAMEWORK Md. Sazzadur Rahman, Mohammed Atiquzzaman Telecommunications and Networks Research Lab School of Computer Science, University of Oklahoma,

More information

Overview of the Cisco Mobile Wireless Home Agent

Overview of the Cisco Mobile Wireless Home Agent 1 CHAPTER Overview of the Cisco Mobile Wireless Home Agent This chapter illustrates the functional elements in a typical Mobile IP packet data system, the Cisco products that are currently available to

More information

Mobility: vocabulary

Mobility: vocabulary What is mobility? spectrum of mobility, from the perspective: no mobility high mobility mobile wireless user, using same access point mobile user, connecting/ disconnecting from using DHCP. mobile user,

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

Mobile IP QoS Using Flow in BcN. Contents

Mobile IP QoS Using Flow in BcN. Contents Mobile IP Using Flow in BcN 2007. 2. 8 MC CTO 최준환 Cjw8724@mobilecvg.com Contents 1 Mobile IP Requirements 2 xgmip 3 Mobile solution 2 Conclusion 1/ 전체페이지번호 1 Mobile IP Requirements 2 xgmip 3 Mobile solution

More information

Cisco ASR 5000 Series Small Cell Gateway

Cisco ASR 5000 Series Small Cell Gateway Data Sheet Cisco ASR 5000 Series Small Cell Gateway Mobile subscribers want access to the network at home, work, hotspots, and everywhere in between. This requires mobile operators to expand their service

More information