RED Tuning for TCP Performance on the Mobile Ad Hoc Networks

Size: px
Start display at page:

Download "RED Tuning for TCP Performance on the Mobile Ad Hoc Networks"

Transcription

1 RED Tuning for TCP Performance on the Mobile Ad Hoc Networks Shin-Jer Yang and Yung-Chieh Lin Dept. of Computer and Information Science, Soochow University, Taipei, Taiwan Abstract Mobile Ad Hoc NETworks (MANET) does not need the fixed base station to process the link operation. In the past several years, many researchers have focused on studies of Routing Protocol over the MANET. Currently, the pervasion of Internet causes TCP as the standard transmission protocol for most of the networking applications. The RED is one of congestion avoidance methods in TCP. Due to the unconstrained movement of the mobile nodes, TCP is unable to notice network congestion or link down to activate related controls on the MANET. The network will search and establish a new transmission path, when an unwarned link down occurs on the MANET. The average queue length of RED will be longer than MinThreshold, if the link re-establishment costs too much of time. Then, it will invoke the sender to perform relative congestion control. Hence, it may degrade the TCP performance before the link reestablish completely. The main purpose of this paper is to adjust related RED parameters for evaluating the performance through the simulation on the MANET. Consequently, we did propose the tuning strategies in RED to improve the TCP performance based on final simulation results. Keywords: Tuning 1. Introduction MANET, TCP, RED, Static/Dynamic MANET (Mobile Ad Hoc NETworks) is a wireless communication network environment, which consists of a group of autonomous mobile nodes. The property of this configuration is fast to implement, because it not requires a fixed wireless base station or access point to control the transmission of packets. Each mobile node has dual roles that act both a host and a router simultaneously. When a mobile node acts as a router, it needs to take care of the tasks for searching, establishing and maintaining the routing between source and destination nodes. Moreover, the arbitrary movement for each mobile node without any constraint causes the network topology constantly changing, and then hard to expect. The main purposes of this paper are to adjust related RED parameters in which affect the TCP performance, and to propose a novel method of dynamic tuning to apply on the MANET. Actually, the TCP protocol is originally designed for the wired network. But, the TCP congestion controls that are affected by the mobility of MANET is very difficult to determine whether the disconnection is caused by the network congestion or the unwarned wireless link down, while the TCP is applied to a wireless network. Therefore, the TCP performance will be degraded under that situation. On the other hand, the wireless network is sometimes required to connect Internet, which employs the TCP as transmission protocol for most of the existing network applications. The remainder of this paper is organized as follows. In Section 2, we describe the background and examine the problems of TCP on the MANET. In Section 3, we illustrate how to adjust RED parameters and propose the dynamic tuning approach of RED, which can be applied on the MANET. In Section 4, we analyze the result of the simulated experiment and then propose tuning guideline. Finally, Section draws the conclusion and indicates the future works. 2. Preliminaries and Related Studies In a wireless network, the movement of the mobile node leads to the link be disconnected and the ACK signal cannot be received by the sender. The mobile node that can move free and arbitrarily around the MANET will cause the unwarned link down of original transmission path. This situation produces that the congestion control of TCP misjudges the occurrence of network congestion and activates its control procedure to affect the transmission performance []. Many researchers have proposed some solutions for this misjudging issue of TCP

2 routing on the MANET. But, most of these solutions are trying to insert a feedback message in the routing protocol to notify sender about the link down of current transmission path [2, 4]. Although this approach can solve the problem of link down that cannot be detected by TCP, it is necessary to modify the existing TCP and routing protocol. Figure 1. RED Packet Drop Probability RED (Random Early Detection) is primarily running on a router and each router calculates their current occupied Average Queue Length (AvgLen) [3,11]. If the AvgLen is smaller than MinThreshold, the packet will be kept and sent to the queue waiting for the transmission; if the AvgLen is longer than MaxThreshold, all of packets will be dropped; if the AvgLen is between MinThreshold and MaxThreshold, the drop probability of the packet will be a linear function of a number between and MaxP (Max. Probability) as shown in Figure 1. The network will search and establish a new transmission path, when an unwarned link down occurs on the MANET. If the link re-establishment costs too much of time, the AvgLen will be longer than MinThreshold and causes the sender to perform relative congestion control mechanism. Hence, it may reduce the transmission speed in advance and then degrade the TCP performance before the link reestablish completely. 3. RED Tuning Approach for TCP Performance As stated in Section 2, we know that the TCP performance is affected by TCP congestion control. Actually, there are some influence parameters of TCP performance, including RTO (Retransmission TimeOut), Congestion Window, and related RED (Random Early Detection) parameters of congestion control. The parameters in RED have no standard value to conform and adjust resiliently. In this section, we introduce how to tune the value of RED parameters and to explain the static tuning approach. Also, we propose a novel method of dynamic tuning to apply on the MANET. All of these RED parameters settings for TCP performance can be tuned according to the simulation results listed in Section 4. The network congestion can be avoided by randomly dropping a few packets on a router with RED to notify the TCP sender for early detecting the congestion status. However, the unwarned link down occurs when the MANET employs RED, and the AvgLen increases rapidly and even exceeds than MinThreshold during the link reestablishment in routing. The subsequent arriving packets will be discarded when the AvgLen is over MaxThreshold, therefore it degrades the TCP performance. Hence, the related parameters of RED such as AvgLen, MinThreshold, and MaxThreshold can affect the overall performance. In this paper, we adjust these RED parameters as mentioned above and simulate these parameters with different mobility rate models to find out the static parameter combinations on the MANET. In addition, we propose a dynamic Self- Configuration method for tuning these parameters to tolerate the amount of packets increased by the link reestablishment. The similar methods of the RED dynamic tuning on the wired network have proposed by many researchers [7]. First, we briefly describe the content of RED parameters, which adjusted in this paper. The combination setting for the MinThreshold and MaxThreshold parameter is: MaxThreshold = MinThreshold * X (1) We take the suggestion of RED parameters, which discussed in the paper of Tao Ye and Shivkumar Kalyanaraman, and set the value of X to 3 [7]. The Equation 2 to calculating the AvgLen is as follow [3]: AvgLen = (1 Weight) * AvgLen + Weight * SampleLen (2) Equation 2 is a formula for computing low-pass filter, which avoids the abruptly increment for AvgLen that caused by a transient congestion in the network. In this equation, the value of Weight is between the range of and 1. If Weight is too large, the transient congestion cannot be filtered out. On the contrary, if Weight is too small, it cannot reflect the current real queue length instantly. Therefore, we need to set a proper Weight value according to the different network environments. In addition to adjusting MinThreshold and MaxThreshold parameters, we refine the proper weight value. The static parameter combinations of RED will be described in Section 4, and the TCP performance can be assessed with these parameters combinations for different mobility rate models. In addition to the static parameters setting, we also propose the dynamic tuning method on selfconfiguration parameters. As depicted in Figure 2, the

3 average queue length of f1 is rapidly increasing and exceeding the MinThreshold, when the movement of f2 causes the link down between f1 and f2. But, this situation will be eliminated after a new link rebuilt. If we adjust the value of MinThreshold properly and let it temporarily tolerate the abrupt packet increment, the discarding of all of subsequent packets can be avoided. If ( MinThreshold < minu ) MinThreshold + = *(min U min L ) ; Else { If ( Counter > ) { Counter - -; If ( MinThreshold > minl ) MinThreshold - = *(min U min L ) ; LastTId = CurTId ; END Figure 2. The Link Down in the MANET The operation flow of dynamic tuning for MinThreshold as depicted in Figure 3, the rationale describe as follows. When the packet on the top of queue keeps retained and do not deliver it out, the value of Counter increase 1. If this situation still exists and when Counter is larger than A (where A is a value of threshold), we can determine that the link is already downed and need to set the higher value of MinThreshold to temporarily accommodate the additional packets. If this situation not exists, the value of MinThreshold is gradually adjusted to its original value. In our procedure, MinThreshold can be adjusted in the range of min L ~ min U, where min L means the initial value of MinThreshold and min U means MaxThreshold. The number of packets to increase or to decrease on each time is * (min U - min L ), where the range of is ~ 1. In addition, CurTId represents the next packet to be transmitted and LastTId means to record the previous packet to be transmitted. As described above, the execution logic of this procedure is illustrated as follows: // Set initial value for the variables InitialValue( Counter, A, CurTId, LastTId, maxl, maxu, ) ; // When a new packet arrive, execute the procedure below Procedure DynamicAdjRED() BEGIN { // The next packet to be transmitted CurTId = PacketQueue.head ; If ( CurTId = = LastTId ) { Counter + + ; If ( Counter > A ) Figure 3. The Operation Flow of RED Dynamic Tuning 4. Simulation Design and Results Analysis In this section, we describe the simulation environment of MANET and then analyze and tune the performance of RED parameter on various mobility rates based on simulation results. 4.1 Simulation Environment and Design Issues Currently, ns-2 simulator already included many objects in which developed by Josh Broch et al. for MANET environment [1]. In this subsection, we illustrate the settings for each primitive parameter in ns-2 simulator used in this paper is listed in Table 1. We refer to the method proposed by Josh Broch and set the six different pause time. The simulation time of each run is seconds and each pause time generates 1 different movement models, so there are 6 different movement models in total. The second of pause time means constantly moving for any a node and seconds of pause time means existing in the standstill status for another a node.

4 Table 1. The Parameters of ns-2 Simulator # of Node 3 Active range 1m 1m Movement Model Random-walk Pause Time (sec.),, 1, 2, 3, Topology Flat Application Layer FTP Transport Layer TCP Packet Size 12 Bytes Max. TCP window 32 packets Routing Protocol DSDV Data Link Layer protocol RED queue, BSD ARP, MAC Antenna Omnidirectional, 4.2 Results Analysis and Tuning Guideline In this paper, we take Packet Delivery Ratio, Throughput, and Transmission Time as the metrics of the performance assessment. We describe the computation of Packet Delivery Ratio first, the equation is: Preceived PDi, Hop h (3) Psend PD i means the Packet Delivery Ratio of the i-th transmission pair when Hop equals h, P send means the number of packets delivered by the sender, and P received means the number of packets received by the receiver. The equation of Throughput is: Pj j TPi, Hop h (4) Tj j TP i means the Throughput of the i-th transmission pair when Hop equals h, T j means the required time to transmit the j-th packet (Pj). In order to evaluate the performance of RED effectively, we select the transmission pair whose Hop is larger than 2 for computing. The Average Throughput (ATP p ) of certain movement model is the average of TP i, the equation is: ATP p = Average ( TP i ) i = 1 ~ n () Furthermore, the equation of total transmission time for each transmission pair to transfer n packets when Hop equals h as follow: TTi n Tj j 1, Hop h (6) The equations of Average Transmission Time for each packet and a certain movement model are as follows: TTi TTpi, Hop h (7) Ptotal ATT p = Average( TTp i ) i = 1 ~ n (8) Owing to the mobile node can free moving without any constraint, its transmission link varies often. To assess the influence made by link change, we use 6 different mobility rates to generate the movement model for the simulation of each parameter setting, and then compare the Packet Delivery Ratio, Throughput, and Average Transmission Time of each parameter combinations to find out the better combination for improving TCP performance on the MANET. Next, we will analyze the simulation results for static tuning of RED parameters, as well as the RED dynamic tuning. As described in Section 3, the RED static parameter settings listed in Table 2. R11 means Weight =.2, MinThreshold = 1, MaxThreshold = 3 and so on. The Weight value is definitely related to the average queue length in RED, so we justify the suitable Weight value that it can respond actual queue length as average queue length. In [3], they proposed that the value of Weight set to.2. However, this value is appropriate usage in a general wired network. In order to observe TCP performances of different movement models clearly, we set Weight to.2,.2,.2, and 1 based on the characteristics of MANET. Table 2. RED Static Parameter Combinations Weight Min = 1 Min = Min = 1 Min = Max = 3 Max = Max = 3 Max = 4.2 R11 R12 R13 R14.2 R21 R22 R23 R24.2 R31 R32 R33 R34 1 R41 R42 R43 R44 In this simulation experiment, each Weight of the Packet Delivery Ratios has their different parameter combinations defined in Table 2 are presented in Figure 4 and Figure. When Wight equals.2 or.2, the difference between Packet Delivery Ratios of each parameter combinations is small. When Weight equals.2 or 1, the intense changing of average queue length and higher probability of exceeding MinThreshold enlarge the difference between Packet Delivery Ratios of each parameter combinations. At first, the Throughput for different parameter combinations is shown in Figure 6 and Figure 7. Since the traffic congestion or route bottleneck is not often occurred in the MANET, the queue length cannot feedback in time to cause a poor throughput when the value of Weight gets small. Moreover, the Average Transmission Time for different parameter combinations is shown in Figure 8 and Figure 9. The unstable of transmission route produces the longer transmission time when Hop is 3. Especially in the frequent movement environment, the Average Transmission Time will have up to ten times the value of the situation when Hop is equal to 2.

5 W Figure 4. The Packet Delivery Ratio when Weight =.2 &.2 Packet Delivery Ratio W Figure. The Packet Delivery Ratio when Weight =.2 & W Figure 6. Throughput when Weight =.2 & W Figure 7. Throughput when Weight =.2 & 1 Average Transmission Time (s) W Figure 8. The Average Transmission Time when Weight =.2 &.2 Average Transmission Time (s) 2 1 W Figure 9. The Average Transmission Time when Weight =.2 & 1 Table 3. The Assessment Grades of each Performance Metric Performance Metric Good Medium Poor Packet Delivery Ratio > 97% 97%~ 9% < 9% Throughput (Kbps) > ~ 22 < 22 Average Transmission Time (Sec.) < ~. >. According to the experiment s results, we set the assessment grade for each performance metric as listed in Table 3. Based on the grades defined in Table 3, we list the tuning rules of each performance metric for every RED parameter combinations in both frequent movement and less movement environments, as shown from Table 4 to Table 6. Also, all the Pause Time of Frequent movement and Less movement in Tables 4, and 6 are the ranges of to 1 seconds and 2 to seconds, respectively. Due to the dynamic properties of MANET different from a general wired network, static parameter combinations of each RED will have different TCP performances under different movement. Hence, we can select proper parameters in which depend on the constraints and applications of their real environments. For instance, in the application of meeting room, since the mobile nodes are standstill in most of time, we can choose R31 or R41 parameter settings according to our tuning rules.

6 Table 4. RED Static Parameter Tuning Rule the Packet Delivery Ratio Parameter combinations Frequent Movement Less Movement R11 Medium Medium R12 Good Medium R13 Medium Medium R14 Medium Good R21 Medium Medium R22 Good Good R23 Medium Good R24 Good Good R31 Poor Poor R32 Medium Good R33 Good Good R34 Good Good R41 Poor Poor R42 Medium Poor R43 Good Good R44 Poor Good Table. RED Static Parameter Tuning Rule Throughput Parameter combinations Frequent Movement Less Movement R11 Poor Medium R12 Poor Good R13 Medium Medium R14 Poor Medium R21 Good Medium R22 Good Poor R23 Medium Poor R24 Poor Poor R31 Good Good R32 Medium Medium R33 Medium Good R34 Medium Poor R41 Good Good R42 Good Medium R43 Poor Medium R44 Good Medium Table 6. RED Static Parameter Tuning Rule the Average Transmission Time Parameter combinations Frequent Movement Less Movement R11 Medium Medium R12 Good Good R13 Medium Medium R14 Medium Medium R21 Poor Good R22 Medium Poor R23 Medium Poor R24 Medium Poor R31 Poor Good R32 Medium Poor R33 Poor Medium R34 Medium Medium R41 Medium Good R42 Good Medium R43 Medium Medium R44 Poor Medium Figure 1. The Packet Delivery Ratio of RED Dynamic Tuning Throughput (Kbps) Figure 11. Throughput of RED Dynamic Tuning Average Transmission Time (s Figure 12. The Average Transmission Time of RED Dynamic Tuning Finally, according to the RED dynamic tuning stated in Section 3, we set the following parameters for this method: min L =, min U =, A =, and =.1. The performance metrics of Packet Delivery Ratio, Throughput, and Average Transmission Time generated by RED dynamic tuning and static parameter setting are shown from Figure 1 to Figure 12. Therefore, we can identify that the Packet Delivery Ratio, Throughput, or Average Transmission Time can get better performance under frequent movement environment. Hence, RED dynamic tuning can really improve the TCP performance on the MANET. However, according to the experiment s results, RED dynamic tuning method seems to only improve the TCP performance under frequent movement environment. Since dynamic tuning only performs on the Internet layer, we did not verify whether physical

7 layer is link down or network congestion. When the probability of link down is larger than the probability of network congestion, the dynamic parameter tuning of RED is only better for improving the performance under frequent movement and not for all environments on the MANET.. Conclusions and Future Works In this paper, we discussed some issues of TCP on the MANET environment, and refined some related parameters that influence the TCP performance. Based on the principle of standard TCP protocol, we can adjust some related parameters of RED in the congestion avoidance. Then, we proposed tuning strategies for RED static parameters under different TCP metrics. We can select the proper parameters of RED based on the constraints and applications of their real environments. Furthermore, we proposed a novel method of RED dynamic tuning that it is more appropriate for MANET. Through the simulation, the result indicates that RED dynamic tuning method can enhance the TCP performance, especially in the frequent movement on the MANET. In summary, static and dynamic tuning strategies in RED can improve the TCP performance and avoid the network congestion on the MANET based on final simulation results. In the future, we will assess different parameter values and tune other TCP parameters that affect the TCP performance on the MANET. The dynamic tuning of RED parameters can improve TCP performance for frequent movement on the MANET, but we did not verify whether the physical layer is link down or network congestion. However, we will further study on this issue and also propose a better tuning rule to improve the TCP performance for different mobility rate on the MANET environments Consequently, the proposed RED tuning approach can be the reference for further studies in QoS features and other applications on the MANET. 6. References [1] J. Broch, D. A. Maltz, D. B. Johnson, Y.Hu, and J. Jetcheva, A Performance Comparison of Multihop Wireless Ad Hoc Network Routing Protocols, In Proceedings of ACM/IEEE Int. Conf. OnMobile Computing and Networking, Oct. 1998, pp [2] K. Chandarn, S. Raghunathan, S. Venkatesan, and R. Prakash, A Feedback Based Scheme for Improving TCP Performance in Ad-Hoc Wireless Networks, In Proceedings of International Conference on Distributed Computing Systems, Amsterdam, 1998, pp [3] S. Floyd and V. Jacobson, Random Early Detection Gateway for Congestion Avoidance, IEEE/ACM Trans. on Networking, Vol. 1, No. 4, Aug. 1993, pp [4] G. Holland and N. H. Vaidya. Analysis of TCP Performance over Mobile Ad Hoc Networks, In Proceedings of th Annual International Conference on Mobile Computing and Networking MOBICOM, August [] Ruy de Oliveira and Torsten Braun, TCP in Wireless Mobile Ad Hoc Networks, Technical Report, IAM-2-3, July 22. [6] Larry L. Perterson and Bruce S. Davie, Computer Networks: A System Approach, 2nd Edition, Morgan Kaufmann Inc., 22. [7] Tad Ye and Shivkumar Kalyanaraman, Adaptive Tuning of RED Using On-line Simulation, In Proceedings of IEEE GLOBECOM, 22, Vol. 3, pp

Dynamic Deferred Acknowledgment Mechanism for Improving the Performance of TCP in Multi-Hop Wireless Networks

Dynamic Deferred Acknowledgment Mechanism for Improving the Performance of TCP in Multi-Hop Wireless Networks Dynamic Deferred Acknowledgment Mechanism for Improving the Performance of TCP in Multi-Hop Wireless Networks Dodda Sunitha Dr.A.Nagaraju Dr. G.Narsimha Assistant Professor of IT Dept. Central University

More information

Chapter 6 Congestion Control and Resource Allocation

Chapter 6 Congestion Control and Resource Allocation Chapter 6 Congestion Control and Resource Allocation Congestion-Avoidance Mechanisms Congestion avoidance is to predict when congestion is about to happen and then to reduce sending rate of source host

More information

The Comparative Analysis of RED, GF-RED and MGF-RED for Congestion Avoidance in MANETs

The Comparative Analysis of RED, GF-RED and MGF-RED for Congestion Avoidance in MANETs I J C T A, 9(41), 2016, pp. 157-164 International Science Press ISSN: 0974-5572 The Comparative Analysis of RED, GF-RED and MGF-RED for Congestion Avoidance in MANETs Makul Mahajan 1 and Mritunjay Kumar

More information

Chapter 6 Congestion Avoidance. Networking CS 3470, Section 1

Chapter 6 Congestion Avoidance. Networking CS 3470, Section 1 Chapter 6 Congestion Avoidance Networking CS 3470, Section 1 Congestion Avoidance TCP s strategy control congestion once it happens repeatedly increase load in an effort to find the point at which congestion

More information

A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols

A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols By Josh Broch, David A. Maltz, David B. Johnson, Yih- Chun Hu, Jorjeta Jetcheva Presentation by: Michael Molignano Jacob

More information

The CMU Monarch Project s Wireless and Mobility Extensions to ns

The CMU Monarch Project s Wireless and Mobility Extensions to ns The CMU Monarch Project s Wireless and Mobility Extensions to ns David B. Johnson Josh Broch Yih-Chun Hu Jorjeta Jetcheva David A. Maltz The Monarch Project Carnegie Mellon University http://www.monarch.cs.cmu.edu/

More information

Analyzing the Receiver Window Modification Scheme of TCP Queues

Analyzing the Receiver Window Modification Scheme of TCP Queues Analyzing the Receiver Window Modification Scheme of TCP Queues Visvasuresh Victor Govindaswamy University of Texas at Arlington Texas, USA victor@uta.edu Gergely Záruba University of Texas at Arlington

More information

Performance of Ad-Hoc Network Routing Protocols in Different Network Sizes

Performance of Ad-Hoc Network Routing Protocols in Different Network Sizes Performance of Ad-Hoc Network Routing Protocols in Different Network Sizes Sudheer Kumar 1, Akhilesh Yadav 2 Department of Computer Science and Engineering Kanpur Institute of Technology, Kanpur sudheerkr21@gmail.co

More information

Throughput Analysis of Congestion Control Protocols (TCP, XCP, RCP) in Multi-Hop Wireless Network.

Throughput Analysis of Congestion Control Protocols (TCP, XCP, RCP) in Multi-Hop Wireless Network. Analysis of Congestion Control Protocols (TCP, XCP, RCP) in Multi-Hop Wireless Network. Dr. Atul M Gosai 1, Udit Narayan Kar 2 and Bhargavi H Goswami 3, Assistant Professor 1 Research Fellow 2, Research

More information

Transport layer issues

Transport layer issues Transport layer issues Dmitrij Lagutin, dlagutin@cc.hut.fi T-79.5401 Special Course in Mobility Management: Ad hoc networks, 28.3.2007 Contents Issues in designing a transport layer protocol for ad hoc

More information

Routing Protocols in MANETs

Routing Protocols in MANETs Chapter 4 Routing Protocols in MANETs 4.1 Introduction The main aim of any Ad Hoc network routing protocol is to meet the challenges of the dynamically changing topology and establish a correct and an

More information

Performance Evaluation of MANET through NS2 Simulation

Performance Evaluation of MANET through NS2 Simulation International Journal of Electronic and Electrical Engineering. ISSN 0974-2174, Volume 7, Number 1 (2014), pp. 25-30 International Research Publication House http://www.irphouse.com Performance Evaluation

More information

Implementation of Hybrid Modified RED Algorithm for Congestion Avoidance in MANETS

Implementation of Hybrid Modified RED Algorithm for Congestion Avoidance in MANETS Implementation of Hybrid Modified RED Algorithm for Congestion Avoidance in MANETS Akshatha R 1, Vedananda D. E 2 1 Lecturer, SRNMN College of Applied Sciences, Shivamogga 2 Assistant professor, JNN College

More information

QoS Routing By Ad-Hoc on Demand Vector Routing Protocol for MANET

QoS Routing By Ad-Hoc on Demand Vector Routing Protocol for MANET 2011 International Conference on Information and Network Technology IPCSIT vol.4 (2011) (2011) IACSIT Press, Singapore QoS Routing By Ad-Hoc on Demand Vector Routing Protocol for MANET Ashwini V. Biradar

More information

The Modified Gaussian Function based RED (MGF-RED) Algorithm for Congestion Avoidance in Mobile Ad Hoc Networks

The Modified Gaussian Function based RED (MGF-RED) Algorithm for Congestion Avoidance in Mobile Ad Hoc Networks The Modified Gaussian Function based RED (MGF-RED) Algorithm for Congestion Avoidance in Mobile Ad Hoc Networks Makul Mahajan Student, Dept. of CSE Amritsar College of Engineering & Technology PTU, Jalandhar,

More information

PERFORMANCE BASED EVALUATION OF DSDV, AODV AND DSR ROUTING PROTOCOLS IN MANET

PERFORMANCE BASED EVALUATION OF DSDV, AODV AND DSR ROUTING PROTOCOLS IN MANET Volume 1, Issue 4, 215 PERFORMANCE BASED EVALUATION OF, AND ROUTING PROTOCOLS IN MANET Ms Anuradha M.Tech, Suresh Gyan Vihar University Ms Savita Shivani Suresh Gyan Vihar University Abstract:A Mobile

More information

ISSN: Index Terms Wireless networks, non - congestion events, packet reordering, spurious timeouts, reduce retransmissions.

ISSN: Index Terms Wireless networks, non - congestion events, packet reordering, spurious timeouts, reduce retransmissions. ISSN:2320-0790 A New TCP Algorithm to reduce the number of retransmissions in Wireless Networks A Beulah, R Nita Marie Ann Assistant Professsor, SSN College of Engineering, Chennai PG Scholar, SSN College

More information

Analysis QoS Parameters for Mobile Ad-Hoc Network Routing Protocols: Under Group Mobility Model

Analysis QoS Parameters for Mobile Ad-Hoc Network Routing Protocols: Under Group Mobility Model 2009 International Conference on Computer Engineering and Applications IPCSIT vol.2 (2011) (2011) IACSIT Press, Singapore Analysis QoS Parameters for Mobile Ad-Hoc Network Routing Protocols: Under Group

More information

CHAPTER 3 EFFECTIVE ADMISSION CONTROL MECHANISM IN WIRELESS MESH NETWORKS

CHAPTER 3 EFFECTIVE ADMISSION CONTROL MECHANISM IN WIRELESS MESH NETWORKS 28 CHAPTER 3 EFFECTIVE ADMISSION CONTROL MECHANISM IN WIRELESS MESH NETWORKS Introduction Measurement-based scheme, that constantly monitors the network, will incorporate the current network state in the

More information

RED behavior with different packet sizes

RED behavior with different packet sizes RED behavior with different packet sizes Stefaan De Cnodder, Omar Elloumi *, Kenny Pauwels Traffic and Routing Technologies project Alcatel Corporate Research Center, Francis Wellesplein, 1-18 Antwerp,

More information

PERFORMANCE BASED EVALUATION OF DSDV, AODV AND DSR ROUTING PROTOCOLS IN MANET

PERFORMANCE BASED EVALUATION OF DSDV, AODV AND DSR ROUTING PROTOCOLS IN MANET Suresh Gyan Vihar University, Jaipur Volume 2, Issue 2, 216 PERFORMANCE BASED EVALUATION OF, AODV AND ROUTING PROTOCOLS IN MANET Ms Anuradha M.Tech, Suresh Gyan Vihar University Ms Savita Shivani Suresh

More information

Study on Indoor and Outdoor environment for Mobile Ad Hoc Network: Random Way point Mobility Model and Manhattan Mobility Model

Study on Indoor and Outdoor environment for Mobile Ad Hoc Network: Random Way point Mobility Model and Manhattan Mobility Model Study on and Outdoor for Mobile Ad Hoc Network: Random Way point Mobility Model and Manhattan Mobility Model Ibrahim khider,prof.wangfurong.prof.yinweihua,sacko Ibrahim khider, Communication Software and

More information

Performance Analysis of Three Routing Protocols for Varying MANET Size

Performance Analysis of Three Routing Protocols for Varying MANET Size Proceedings of the International MultiConference of Engineers and Computer Scientists 8 Vol II IMECS 8, 9- March, 8, Hong Kong Performance Analysis of Three Routing Protocols for Varying MANET Size N Vetrivelan,

More information

PERFORMANCE EVALUATION OF TCP OVER ROUTING PROTOCOLS FOR MOBILE AD HOC NETWORKS

PERFORMANCE EVALUATION OF TCP OVER ROUTING PROTOCOLS FOR MOBILE AD HOC NETWORKS PERFORMANCE EVALUATION OF TCP OVER ROUTING PROTOCOLS FOR MOBILE AD HOC NETWORKS Md. Abdullah-Al-Mamun, M. Mahbubur Rahman Department of Information and Communication Engineering Islamic University Kushtia

More information

AODV-PA: AODV with Path Accumulation

AODV-PA: AODV with Path Accumulation -PA: with Path Accumulation Sumit Gwalani Elizabeth M. Belding-Royer Department of Computer Science University of California, Santa Barbara fsumitg, ebeldingg@cs.ucsb.edu Charles E. Perkins Communications

More information

Poonam kori et al. / International Journal on Computer Science and Engineering (IJCSE)

Poonam kori et al. / International Journal on Computer Science and Engineering (IJCSE) An Effect of Route Caching Scheme in DSR for Vehicular Adhoc Networks Poonam kori, Dr. Sanjeev Sharma School Of Information Technology, RGPV BHOPAL, INDIA E-mail: Poonam.kori@gmail.com Abstract - Routing

More information

The Impact of Transmission Power on the Performance of MANET Routing Protocols

The Impact of Transmission Power on the Performance of MANET Routing Protocols IOSR Journal of Engineering (IOSRJEN) e-issn: 2250-3021, p-issn: 2278-8719 Vol. 3, Issue 2 (Feb. 2013), V3 PP 34-41 The Impact of Transmission Power on the Performance of MANET Routing Protocols V.Lalitha

More information

ROUTE STABILITY MODEL FOR DSR IN WIRELESS ADHOC NETWORKS

ROUTE STABILITY MODEL FOR DSR IN WIRELESS ADHOC NETWORKS ROUTE STABILITY MODEL FOR DSR IN WIRELESS ADHOC NETWORKS Ganga S 1, Binu Chandran R 2 1, 2 Mohandas College Of Engineering And Technology Abstract: Wireless Ad-Hoc Network is a collection of wireless mobile

More information

Anil Saini Ph.D. Research Scholar Department of Comp. Sci. & Applns, India. Keywords AODV, CBR, DSDV, DSR, MANETs, PDF, Pause Time, Speed, Throughput.

Anil Saini Ph.D. Research Scholar Department of Comp. Sci. & Applns, India. Keywords AODV, CBR, DSDV, DSR, MANETs, PDF, Pause Time, Speed, Throughput. Volume 6, Issue 7, July 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Performance Analysis

More information

PERFORMANCE EVALUATION OF DSR USING A NOVEL APPROACH

PERFORMANCE EVALUATION OF DSR USING A NOVEL APPROACH PERFORMANCE EVALUATION OF DSR USING A NOVEL APPROACH 1. Prof.S.P. Setti 2. Narasimha Raju K 3. Naresh Kumar K CS&SE Dept., CS&SE Dept., CS&SE Dept., AU College of Engineering, AU College of Engineering,

More information

An Investigation of Improving the Traditional TCP over MANETs

An Investigation of Improving the Traditional TCP over MANETs An Investigation of Improving the Traditional TCP over MANETs by Ping-Huan Ho A thesis submitted to Auckland University of Technology in partial fulfillment of the requirements for the degree of Master

More information

A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols. Broch et al Presented by Brian Card

A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols. Broch et al Presented by Brian Card A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols Broch et al Presented by Brian Card 1 Outline Introduction NS enhancements Protocols: DSDV TORA DRS AODV Evaluation Conclusions

More information

SUMMERY, CONCLUSIONS AND FUTURE WORK

SUMMERY, CONCLUSIONS AND FUTURE WORK Chapter - 6 SUMMERY, CONCLUSIONS AND FUTURE WORK The entire Research Work on On-Demand Routing in Multi-Hop Wireless Mobile Ad hoc Networks has been presented in simplified and easy-to-read form in six

More information

TCP Congestion Control. Housekeeping. Additive Increase/Multiplicative Decrease. AIMD (cont) Pick up folders for exam study Exam next Friday, Nov.

TCP Congestion Control. Housekeeping. Additive Increase/Multiplicative Decrease. AIMD (cont) Pick up folders for exam study Exam next Friday, Nov. Fall 01 CptS/EE 555 3 Fall 01 CptS/EE 555 4 TCP Congestion Control Idea assumes best-effort network (FIFO or FQ routers)each source determines network capacity for itself uses implicit feedback ACKs pace

More information

Analysis of Black-Hole Attack in MANET using AODV Routing Protocol

Analysis of Black-Hole Attack in MANET using AODV Routing Protocol Analysis of Black-Hole Attack in MANET using Routing Protocol Ms Neha Choudhary Electronics and Communication Truba College of Engineering, Indore India Dr Sudhir Agrawal Electronics and Communication

More information

An Extensive Simulation Analysis of AODV Protocol with IEEE MAC for Chain Topology in MANET

An Extensive Simulation Analysis of AODV Protocol with IEEE MAC for Chain Topology in MANET An Extensive Simulation Analysis of AODV Protocol with IEEE 802.11 MAC for Chain Topology in MANET V.K.Taksande 1, Dr.K.D.Kulat 2 1 Department of Electronics & Communication, Nagpur University Priyadarshini

More information

Review: Performance Evaluation of TCP Congestion Control Mechanisms Using Random-Way-Point Mobility Model

Review: Performance Evaluation of TCP Congestion Control Mechanisms Using Random-Way-Point Mobility Model Review: Performance Evaluation of TCP Congestion Control Mechanisms Using Random-Way-Point Mobility Model Rakesh K Scholar (M.Tech) The Oxford College of Engineering Bangalore Mrs. Kalaiselvi Asst. Prof,

More information

Impact of End-to-end QoS Connectivity on the Performance of Remote Wireless Local Networks

Impact of End-to-end QoS Connectivity on the Performance of Remote Wireless Local Networks Impact of End-to-end QoS Connectivity on the Performance of Remote Wireless Local Networks Veselin Rakocevic School of Engineering and Mathematical Sciences City University London EC1V HB, UK V.Rakocevic@city.ac.uk

More information

ADVANCED COMPUTER NETWORKS

ADVANCED COMPUTER NETWORKS ADVANCED COMPUTER NETWORKS Congestion Control and Avoidance 1 Lecture-6 Instructor : Mazhar Hussain CONGESTION CONTROL When one part of the subnet (e.g. one or more routers in an area) becomes overloaded,

More information

Congestion. Can t sustain input rate > output rate Issues: - Avoid congestion - Control congestion - Prioritize who gets limited resources

Congestion. Can t sustain input rate > output rate Issues: - Avoid congestion - Control congestion - Prioritize who gets limited resources Congestion Source 1 Source 2 10-Mbps Ethernet 100-Mbps FDDI Router 1.5-Mbps T1 link Destination Can t sustain input rate > output rate Issues: - Avoid congestion - Control congestion - Prioritize who gets

More information

A Study on the Behaviour of SAODV with TCP and SCTP Protocols in Mobile Adhoc Networks

A Study on the Behaviour of SAODV with TCP and SCTP Protocols in Mobile Adhoc Networks International Journal of Research in Advent Technology, Vol.6, No.8, August 218 A Study on the Behaviour of SAODV with TCP and SCTP Protocols in Mobile Adhoc Networks S. Mahalakshmi 1, Dr. K. Geetha 2

More information

Behaviour of Routing Protocols of Mobile Adhoc Netwok with Increasing Number of Groups using Group Mobility Model

Behaviour of Routing Protocols of Mobile Adhoc Netwok with Increasing Number of Groups using Group Mobility Model Behaviour of Routing Protocols of Mobile Adhoc Netwok with Increasing Number of Groups using Group Mobility Model Deepak Agrawal, Brajesh Patel Department of CSE Shri Ram Institute of Technology Jabalpur,

More information

TCP Congestion Control in Wired and Wireless networks

TCP Congestion Control in Wired and Wireless networks TCP Congestion Control in Wired and Wireless networks Mohamadreza Najiminaini (mna28@cs.sfu.ca) Term Project ENSC 835 Spring 2008 Supervised by Dr. Ljiljana Trajkovic School of Engineering and Science

More information

Examining Mobile-IP Performance in Rapidly Mobile Environments: The Case of a Commuter Train.

Examining Mobile-IP Performance in Rapidly Mobile Environments: The Case of a Commuter Train. Examining Mobile-IP Performance in Rapidly Mobile Environments: The Case of a Commuter Train. Edwin Hernandez and Abdelsalam (Sumi) Helal Department of Computer and Information Science and Engineering

More information

CIS 632 / EEC 687 Mobile Computing

CIS 632 / EEC 687 Mobile Computing CIS 632 / EEC 687 Mobile Computing TCP in Mobile Networks Prof. Chansu Yu Contents Physical layer issues Communication frequency Signal propagation Modulation and Demodulation Channel access issues Multiple

More information

Figure 1: Ad-Hoc routing protocols.

Figure 1: Ad-Hoc routing protocols. Performance Analysis of Routing Protocols for Wireless Ad-Hoc Networks Sukhchandan Lally and Ljiljana Trajković Simon Fraser University Vancouver, British Columbia Canada E-mail: {lally, ljilja}@sfu.ca

More information

Wireless TCP Performance Issues

Wireless TCP Performance Issues Wireless TCP Performance Issues Issues, transport layer protocols Set up and maintain end-to-end connections Reliable end-to-end delivery of data Flow control Congestion control Udp? Assume TCP for the

More information

Delayed ACK Approach for TCP Performance Improvement for Ad Hoc Networks Using Chain Topology

Delayed ACK Approach for TCP Performance Improvement for Ad Hoc Networks Using Chain Topology Delayed ACK Approach for TCP Performance Improvement for Ad Hoc Networks Using Chain Topology Prashant Kumar Gupta M.Tech. Scholar, Computer Networks, Bhilai Institute of Technology, Durg (C.G.), India

More information

An Implementation of Cross Layer Approach to Improve TCP Performance in MANET

An Implementation of Cross Layer Approach to Improve TCP Performance in MANET An Implementation of Cross Layer Approach to Improve TCP Performance in MANET 1 Rajat Sharma Pursuing M.tech(CSE) final year from USIT(GGSIPU), Dwarka, New Delhi E-mail address: rajatfit4it@gmail.com 2

More information

Simulation & Performance Analysis of Mobile Ad-Hoc Network Routing Protocol

Simulation & Performance Analysis of Mobile Ad-Hoc Network Routing Protocol Simulation & Performance Analysis of Mobile Ad-Hoc Network Routing Protocol V.S.Chaudhari 1, Prof.P.N.Matte 2, Prof. V.P.Bhope 3 Department of E&TC, Raisoni College of Engineering, Ahmednagar Abstract:-

More information

Simulation and Performance Analysis of Throughput and Delay on Varying Time and Number of Nodes in MANET

Simulation and Performance Analysis of Throughput and Delay on Varying Time and Number of Nodes in MANET International Journal of Recent Research and Review, Vol. VII, Issue 2, June 2014 ISSN 2277 8322 Simulation and Performance Analysis of and on Varying and Number of Nodes in MANET Arun Jain 1, Ramesh Bharti

More information

Cross-layer TCP Performance Analysis in IEEE Vehicular Environments

Cross-layer TCP Performance Analysis in IEEE Vehicular Environments 24 Telfor Journal, Vol. 6, No. 1, 214. Cross-layer TCP Performance Analysis in IEEE 82.11 Vehicular Environments Toni Janevski, Senior Member, IEEE, and Ivan Petrov 1 Abstract In this paper we provide

More information

Performance Evaluation of AODV and DSDV Routing Protocol in wireless sensor network Environment

Performance Evaluation of AODV and DSDV Routing Protocol in wireless sensor network Environment 2012 International Conference on Computer Networks and Communication Systems (CNCS 2012) IPCSIT vol.35(2012) (2012) IACSIT Press, Singapore Performance Evaluation of AODV and DSDV Routing Protocol in wireless

More information

CTCP: A CROSS-LAYER INFORMATION BASED TCP FOR MANET

CTCP: A CROSS-LAYER INFORMATION BASED TCP FOR MANET CTCP: A CROSS-LAYER INFORMATION BASED TCP FOR MANET Gaurav Bhatia 1 and Vivek Kumar 2 1 Department of Information Technology, Ibri College of Technology, Wilayat Ibri,Sultanate of Oman. 2 Department of

More information

Congestion Control. Queuing Discipline Reacting to Congestion Avoiding Congestion. Issues

Congestion Control. Queuing Discipline Reacting to Congestion Avoiding Congestion. Issues Congestion Control Outline Queuing Discipline Reacting to Congestion Avoiding Congestion Issues Two sides of the same coin pre-allocate resources to avoid congestion (e.g. telephone networks) control congestion

More information

COMPARATIVE ANALYSIS AND STUDY OF DIFFERENT QOS PARAMETERS OF WIRELESS AD-HOC NETWORK

COMPARATIVE ANALYSIS AND STUDY OF DIFFERENT QOS PARAMETERS OF WIRELESS AD-HOC NETWORK COMPARATIVE ANALYSIS AND STUDY OF DIFFERENT QOS PARAMETERS OF WIRELESS AD-HOC NETWORK Nalin Gahlaut 1, Jaya sharma 2, Pankaj Kumar 3, Kaushal Kumar 4 1 Doctoral Candidate, Uttarakhand Technical University,

More information

Mitigating Malicious Activities by Providing New Acknowledgment Approach

Mitigating Malicious Activities by Providing New Acknowledgment Approach Mitigating Malicious Activities by Providing New Acknowledgment Approach G. S. Devi Lakshmi, J. Rajasekaran 2 PG Student, Sri Subramanya College of Engineering and Technology, Palani, Tamilnadu, India

More information

Congestion Avoidance Overview

Congestion Avoidance Overview Congestion avoidance techniques monitor network traffic loads in an effort to anticipate and avoid congestion at common network bottlenecks. Congestion avoidance is achieved through packet dropping. Among

More information

Selfish Scheduler for Packet Scheduling Based on Packet Weighted Energy Drain Rate in Manets

Selfish Scheduler for Packet Scheduling Based on Packet Weighted Energy Drain Rate in Manets Journal of Computer Science, 9 (1): 37-42, 2013 ISSN 1549-3636 2013 Lakshmi and Radha, This open access article is distributed under a Creative Commons Attribution (CC-BY) 3.0 license doi:10.3844/jcssp.2013.37.42

More information

Performance Evaluation of Mesh - Based Multicast Routing Protocols in MANET s

Performance Evaluation of Mesh - Based Multicast Routing Protocols in MANET s Performance Evaluation of Mesh - Based Multicast Routing Protocols in MANET s M. Nagaratna Assistant Professor Dept. of CSE JNTUH, Hyderabad, India V. Kamakshi Prasad Prof & Additional Cont. of. Examinations

More information

Performance Comparison of AODV, DSR, DSDV and OLSR MANET Routing Protocols

Performance Comparison of AODV, DSR, DSDV and OLSR MANET Routing Protocols Performance Comparison of AODV, DSR, DSDV and OLSR MANET Routing Protocols Akshay Shankar, Lavanya Chelle Information Science Engineering RNS Institute of Technology Bangalore, India Abstract- A Mobile

More information

CS CS COMPUTER NETWORKS CS CS CHAPTER 6. CHAPTER 6 Congestion Control

CS CS COMPUTER NETWORKS CS CS CHAPTER 6. CHAPTER 6 Congestion Control COMPUTER NETWORKS CS 45201 CS 55201 CHAPTER 6 Congestion Control COMPUTER NETWORKS CS 45201 CS 55201 CHAPTER 6 Congestion Control P. Farrell and H. Peyravi Department of Computer Science Kent State University

More information

Chapter 7 CONCLUSION

Chapter 7 CONCLUSION 97 Chapter 7 CONCLUSION 7.1. Introduction A Mobile Ad-hoc Network (MANET) could be considered as network of mobile nodes which communicate with each other without any fixed infrastructure. The nodes in

More information

Performance Enhancement of AOMDV with Energy Efficient Routing Based On Random Way Point Mobility Model

Performance Enhancement of AOMDV with Energy Efficient Routing Based On Random Way Point Mobility Model Performance Enhancement of AOMDV with Energy Efficient Routing Based On Random Way Point Mobility Model Geetha.S, Dr.G.Geetharamani Asst.Prof, Department of MCA, BIT Campus Tiruchirappalli, Anna University,

More information

SIMPLE MODEL FOR TRANSMISSION CONTROL PROTOCOL (TCP) Irma Aslanishvili, Tariel Khvedelidze

SIMPLE MODEL FOR TRANSMISSION CONTROL PROTOCOL (TCP) Irma Aslanishvili, Tariel Khvedelidze 80 SIMPLE MODEL FOR TRANSMISSION CONTROL PROTOCOL (TCP) Irma Aslanishvili, Tariel Khvedelidze Abstract: Ad hoc Networks are complex distributed systems that consist of wireless mobile or static nodes that

More information

Rate Based Pacing with Various TCP Variants

Rate Based Pacing with Various TCP Variants International OPEN ACCESS Journal ISSN: 2249-6645 Of Modern Engineering Research (IJMER) Rate Based Pacing with Various TCP Variants Mr. Sreekanth Bandi 1, Mr.K.M.Rayudu 2 1 Asst.Professor, Dept of CSE,

More information

DYNAMIC SEARCH TECHNIQUE USED FOR IMPROVING PASSIVE SOURCE ROUTING PROTOCOL IN MANET

DYNAMIC SEARCH TECHNIQUE USED FOR IMPROVING PASSIVE SOURCE ROUTING PROTOCOL IN MANET DYNAMIC SEARCH TECHNIQUE USED FOR IMPROVING PASSIVE SOURCE ROUTING PROTOCOL IN MANET S. J. Sultanuddin 1 and Mohammed Ali Hussain 2 1 Department of Computer Science Engineering, Sathyabama University,

More information

3. Evaluation of Selected Tree and Mesh based Routing Protocols

3. Evaluation of Selected Tree and Mesh based Routing Protocols 33 3. Evaluation of Selected Tree and Mesh based Routing Protocols 3.1 Introduction Construction of best possible multicast trees and maintaining the group connections in sequence is challenging even in

More information

Key-Words: Ad hoc network, multimedia, QoS, routing protocol.

Key-Words: Ad hoc network, multimedia, QoS, routing protocol. Proceedings of the 5th WSEAS International Conference on Applications of Electrical Engineering, Prague, Czech Republic, March 12-14, 26 (pp117-122) Hidden Route Aware QoS Routing Protocol for Mobile Multimedia

More information

Energy-Aware Routing in Wireless Ad-hoc Networks

Energy-Aware Routing in Wireless Ad-hoc Networks Energy-Aware Routing in Wireless Ad-hoc Networks Panagiotis C. Kokkinos Christos A. Papageorgiou Emmanouel A. Varvarigos Abstract In this work we study energy efficient routing strategies for wireless

More information

Improving TCP Performance over Mobile Ad Hoc Networks by Exploiting Cross-Layer Information Awareness

Improving TCP Performance over Mobile Ad Hoc Networks by Exploiting Cross-Layer Information Awareness Improving TCP Performance over Mobile Ad Hoc Networks by Exploiting Cross-Layer Information Awareness Xin Yu Department of Computer Science Courant Institute of Mathematical Sciences New York University,

More information

PERFORMANCE ANALYSIS OF AF IN CONSIDERING LINK

PERFORMANCE ANALYSIS OF AF IN CONSIDERING LINK I.J.E.M.S., VOL.2 (3) 211: 163-171 ISSN 2229-6X PERFORMANCE ANALYSIS OF AF IN CONSIDERING LINK UTILISATION BY SIMULATION Jai Kumar and U.C. Jaiswal Department of Computer Science and Engineering, Madan

More information

Performance Analysis Of Qos For Different MANET Routing Protocols (Reactive, Proactive And Hybrid) Based On Type Of Data

Performance Analysis Of Qos For Different MANET Routing Protocols (Reactive, Proactive And Hybrid) Based On Type Of Data ISSN (e): 2250 3005 Volume, 08 Issue, 4 April 2018 International Journal of Computational Engineering Research (IJCER) Performance Analysis Of Qos For Different MANET Routing Protocols (Reactive, Proactive

More information

TCP PERFORMANCE FOR FUTURE IP-BASED WIRELESS NETWORKS

TCP PERFORMANCE FOR FUTURE IP-BASED WIRELESS NETWORKS TCP PERFORMANCE FOR FUTURE IP-BASED WIRELESS NETWORKS Deddy Chandra and Richard J. Harris School of Electrical and Computer System Engineering Royal Melbourne Institute of Technology Melbourne, Australia

More information

Mobile Routing : Computer Networking. Overview. How to Handle Mobile Nodes? Mobile IP Ad-hoc network routing Assigned reading

Mobile Routing : Computer Networking. Overview. How to Handle Mobile Nodes? Mobile IP Ad-hoc network routing Assigned reading Mobile Routing 15-744: Computer Networking L-10 Ad Hoc Networks Mobile IP Ad-hoc network routing Assigned reading Performance Comparison of Multi-Hop Wireless Ad Hoc Routing Protocols A High Throughput

More information

Measure of Impact of Node Misbehavior in Ad Hoc Routing: A Comparative Approach

Measure of Impact of Node Misbehavior in Ad Hoc Routing: A Comparative Approach ISSN (Print): 1694 0814 10 Measure of Impact of Node Misbehavior in Ad Hoc Routing: A Comparative Approach Manoj Kumar Mishra 1, Binod Kumar Pattanayak 2, Alok Kumar Jagadev 3, Manojranjan Nayak 4 1 Dept.

More information

Routing Protocols in MANET: Comparative Study

Routing Protocols in MANET: Comparative Study Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 7, July 2014, pg.119

More information

On Performance Evaluation of Reliable Topology Control Algorithms in Mobile Ad Hoc Networks (Invited Paper)

On Performance Evaluation of Reliable Topology Control Algorithms in Mobile Ad Hoc Networks (Invited Paper) On Performance Evaluation of Reliable Topology Control Algorithms in Mobile Ad Hoc Networks (Invited Paper) Ngo Duc Thuan 1,, Hiroki Nishiyama 1, Nirwan Ansari 2,andNeiKato 1 1 Graduate School of Information

More information

Exploring the Behavior of Mobile Ad Hoc Network Routing Protocols with Reference to Speed and Terrain Range

Exploring the Behavior of Mobile Ad Hoc Network Routing Protocols with Reference to Speed and Terrain Range Exploring the Behavior of Mobile Ad Hoc Network Routing Protocols with Reference to Speed and Terrain Range Asha Ambhaikar and Lokesh Kumar Sharma Abstract a mobile ad hoc network is a collection of autonomous

More information

DEVELOPMENT FRAMEWORK FOR CONGESTION AVOIDANCE MECHANISMS

DEVELOPMENT FRAMEWORK FOR CONGESTION AVOIDANCE MECHANISMS DEVELOPMENT FRAMEWORK FOR CONGESTION AVOIDANCE MECHANISMS Vasile DADARLAT, Raluca JELER, Adrian PECULEA, Bogdan IANCU, Emil CEBUC, Cosmin ARDELEAN Technical University of Cluj-Napoca, Faculty of Automation

More information

Performance Comparison of Ad Hoc Routing Protocols over IEEE DCF and TDMA MAC Layer Protocols

Performance Comparison of Ad Hoc Routing Protocols over IEEE DCF and TDMA MAC Layer Protocols Performance Comparison of Ad Hoc Routing Protocols over IEEE 82.11 DCF and TDMA MAC Layer Protocols Govind. P. Gupta Computer Science Department R.K.G.I.T, Ghaziabad (India) er_gpgupta@yahoo.com A. K.

More information

Traffic Management using Multilevel Explicit Congestion Notification

Traffic Management using Multilevel Explicit Congestion Notification Traffic Management using Multilevel Explicit Congestion Notification Arjan Durresi, Mukundan Sridharan, Chunlei Liu, Mukul Goyal Department of Computer and Information Science The Ohio State University

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

ANewRoutingProtocolinAdHocNetworks with Unidirectional Links

ANewRoutingProtocolinAdHocNetworks with Unidirectional Links ANewRoutingProtocolinAdHocNetworks with Unidirectional Links Deepesh Man Shrestha and Young-Bae Ko Graduate School of Information & Communication, Ajou University, South Korea {deepesh, youngko}@ajou.ac.kr

More information

CHAPTER 3 ENHANCEMENTS IN DATA LINK LAYER

CHAPTER 3 ENHANCEMENTS IN DATA LINK LAYER 32 CHAPTER 3 ENHANCEMENTS IN DATA LINK LAYER This proposed work describes the techniques used in the data link layer to improve the performance of the TCP in wireless networks and MANETs. In the data link

More information

Effective Utilization of Router Buffer by Threshold Parameter Setting Approach in RED

Effective Utilization of Router Buffer by Threshold Parameter Setting Approach in RED Effective Utilization of Router Buffer by Threshold Parameter Setting Approach in RED Kiran Chhabra Research Scholar Computer Science & Engineering Dr. C. V. Raman University, Bilaspur (C. G.) Manali Kshirsagar

More information

IJESRT. [Dahiya, 2(5): May, 2013] ISSN: Keywords: AODV, DSDV, Wireless network, NS-2.

IJESRT. [Dahiya, 2(5): May, 2013] ISSN: Keywords: AODV, DSDV, Wireless network, NS-2. IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY Performance Comparison of ADSDV and DSDV in MANET Brahm Prakash Dahiya Shaym Lal College,New Delhi, India brahmprakasd@gmail.com

More information

A Scheme of Multi-path Adaptive Load Balancing in MANETs

A Scheme of Multi-path Adaptive Load Balancing in MANETs 4th International Conference on Machinery, Materials and Computing Technology (ICMMCT 2016) A Scheme of Multi-path Adaptive Load Balancing in MANETs Yang Tao1,a, Guochi Lin2,b * 1,2 School of Communication

More information

A Test-Bed for Power Consumption Performance Evaluation of AODV and DSDV Routing Protocols in Mobile Ad-hoc Networks

A Test-Bed for Power Consumption Performance Evaluation of AODV and DSDV Routing Protocols in Mobile Ad-hoc Networks A Test-Bed for Power Consumption Performance Evaluation of AODV and DSDV Routing Protocols in Mobile Ad-hoc Networks Abdulrahman Issa Kh Shybub 1, Tarek Mosbah Abdala 2 1, Computer Department Higher Institute

More information

WITH the evolution and popularity of wireless devices,

WITH the evolution and popularity of wireless devices, Network Coding with Wait Time Insertion and Configuration for TCP Communication in Wireless Multi-hop Networks Eiji Takimoto, Shuhei Aketa, Shoichi Saito, and Koichi Mouri Abstract In TCP communication

More information

Improving Fairness among TCP Flows crossing Wireless Ad Hoc and Wired Networks

Improving Fairness among TCP Flows crossing Wireless Ad Hoc and Wired Networks Improving Fairness among TCP Flows crossing Wireless Ad Hoc and Wired Networks Luqing Yang 1 Winston K.G. Seah 1,2 Qinghe Yin 2 1 Department of Electrical Engineering, National University of Singapore,

More information

Energy Efficient EE-DSR Protocol for MANET

Energy Efficient EE-DSR Protocol for MANET Energy Efficient EE- Protocol for MANET 1 Mr. Prakash Patel, 2 Ms. Tarulata Chauhan 1 Department of Computer engineering, 1 LJ Institute of Technology, Ahmedabad, India 1 prakashpmp1990@gmail.com, 2 taruchauhan114@gmail.com

More information

Performance Analysis of Wireless Mobile ad Hoc Network with Varying Transmission Power

Performance Analysis of Wireless Mobile ad Hoc Network with Varying Transmission Power , pp.1-6 http://dx.doi.org/10.14257/ijsacs.2015.3.1.01 Performance Analysis of Wireless Mobile ad Hoc Network with Varying Transmission Power Surabhi Shrivastava, Laxmi Shrivastava and Sarita Singh Bhadauria

More information

Subject: Adhoc Networks

Subject: Adhoc Networks ISSUES IN AD HOC WIRELESS NETWORKS The major issues that affect the design, deployment, & performance of an ad hoc wireless network system are: Medium Access Scheme. Transport Layer Protocol. Routing.

More information

End-to-End Mechanisms for QoS Support in Wireless Networks

End-to-End Mechanisms for QoS Support in Wireless Networks End-to-End Mechanisms for QoS Support in Wireless Networks R VS Torsten Braun joint work with Matthias Scheidegger, Marco Studer, Ruy de Oliveira Computer Networks and Distributed Systems Institute of

More information

Study of Route Reconstruction Mechanism in DSDV Based Routing Protocols

Study of Route Reconstruction Mechanism in DSDV Based Routing Protocols Study of Route Reconstruction Mechanism in DSDV Based Routing Protocols Sharma Shelja, Kumar Suresh and Rathy R. K. Department of CSE, FET, MRIU, Faridabad, India Email: sharma.shelja@gmail.com, enthusk@yahoo.com,

More information

Performance Analysis of Routing Protocols for Mobile Ad-hoc Networks

Performance Analysis of Routing Protocols for Mobile Ad-hoc Networks Performance Analysis of Routing Protocols for Mobile Ad-hoc Networks Anil Choudhary Department of Electrical and Electronics Engineering Rajiv Gandhi Govt. Polytechnic, Itanagar, Arunachal Pradesh, India

More information

CSE 123: Computer Networks

CSE 123: Computer Networks CSE 123: Computer Networks Homework 4 Out: 11/27, Due: 12/4 Total 48.5 points Question 1 Assume that we have a token bucket shaper that has a replenishment rate r = 10 KBps, an infinite maximum rate R,

More information

Performance Comparison of Two On-demand Routing Protocols for Ad-hoc Networks based on Random Way Point Mobility Model

Performance Comparison of Two On-demand Routing Protocols for Ad-hoc Networks based on Random Way Point Mobility Model American Journal of Applied Sciences 5 (6): 659-664, 2008 ISSN 1546-9239 2008 Science Publications Performance Comparison of Two On-demand Routing Protocols for Ad-hoc Networks based on Random Way Point

More information

Hop-by-Hop TCP for Sensor Networks

Hop-by-Hop TCP for Sensor Networks Hop-by-Hop for Sensor s Yao-Nan Lien and Yu-Chi Ding Computer Science Department, National Chengchi University, Taipei, Taiwan, R.O.C. lien@cs.nccu.edu.tw Abstract Communication links in a sensor network

More information