SlideShare a Scribd company logo
 Motivation
 TCP-mechanisms
 Classical approaches
 Indirect TCP
 Snooping TCP
 Mobile TCP
 PEPs in general
Mobile Transport Layer
 Additional optimizations
 Fast retransmit/recovery
 Transmission freezing
 Selective retransmission
 Transaction oriented TCP
Motivation
 Transport layer responsible for
 Fixed end-end systems
 Fixed, wired networks
 Error recovery
 Flow control
 Congestion control
 Ensuring complete data transfer in TCP
 Efficient retransmissions
 TCP congestion control
 packet loss in fixed networks typically due to
(temporary) overload situations
 router have to discard packets as soon as the
buffers are full
 TCP recognizes congestion only indirect via
missing acknowledgements, retransmissions
unwise, they would only contribute to the
congestion and make it even worse
 slow-start algorithm as reaction
 TCP slow-start algorithm
 sender calculates a congestion window for a
receiver
 start with a congestion window size equal to one
segment
 exponential increase of the congestion window up
to the congestion threshold, then linear increase
 Linear increase Continues until a time-out at The
sender occurs due to a missing
acknowledgement, or until the sender detects a
gap in transmitted Data because of Continuous
acknowledgements for The same packet.
 missing acknowledgement causes the reduction of
the congestion threshold to one half of the current
congestion window
 congestion window starts again with one segment
Mobile Transport layer
 TCP fast retransmit/fast recovery
 If a sender receives several acknowledgements for the
same packet, this is due to a gap in received packets
at the receiver or missing acknowledgements
 The sender can now retransmit the missing packet(s)
before the timer expires. This behavior is called fast
retransmit.
 It is an early enhancement for preventing slow-start to
trigger on losses not caused by congestion.
 The receipt of acknowledgements shows that there is
no congestion to justify a slow start.
 The sender can continue with the current congestion
window. The sender performs a fast recovery from
the packet loss.
 therefore, packet loss is not due to congestion,
continue with current congestion window (do not use
slow-start)
Influences of mobility on TCP-mechanisms
 Slow Start mechanism in fixed networks decreases the
efficiency of TCP if used with mobile receivers or
senders.
 Error rates on wireless links are orders of magnitude
higher compared to fixed fiber or copper links. This
makes compensation for packet loss by TCP quite
difficult.
 Mobility itself can cause packet loss. There are many
situations where a soft handover from one access point
to another is not possible for a mobile end-system.
 Standard TCP reacts with slow start if
acknowledgements are missing, which does not help in
the case of transmission errors over wireless links and
Mobile Transport layer
Early approach: Indirect TCP
 Indirect TCP or I-TCP segments the connection
 no changes to the TCP protocol for hosts connected to the wired
Internet, millions of computers use (variants of) this protocol
 optimized TCP protocol for mobile hosts
 splitting of the TCP connection at, e.g., the foreign agent into 2
TCP connections, no real end-to-end connection any longer
 hosts in the fixed part of the net do not notice the characteristics
of the wireless part
mobile host
access point
(foreign agent) „wired“ Internet
„wireless“ TCP standard TCP
Mobile Transport layer
Indirect TCP
 Advantages
 no changes in the fixed network necessary, no changes
for the hosts (TCP protocol) necessary, all current
optimizations to TCP still work
 transmission errors on the wireless link do not propagate
into the fixed network
 simple to control, mobile TCP is used only for one hop
between, e.g., a foreign agent and mobile host
 therefore, a very fast retransmission of packets is
possible, the short delay on the mobile hop is known
 Disadvantages
 loss of end-to-end semantics, an acknowledgement to a
sender does now not any longer mean that a receiver
really got a packet, foreign agents might crash
 higher latency possible due to buffering of data within the
foreign agent and forwarding to a new foreign agent
Mobile Transport layer
Snooping TCP
 „Transparent“ extension of TCP within the foreign agent
 buffering of packets sent to the mobile host
 lost packets on the wireless link (both directions!) will be retransmitted
immediately by the mobile host or foreign agent, respectively (so called
“local” retransmission)
 the foreign agent therefore “snoops” the packet flow and recognizes
acknowledgements in both directions, it also filters ACKs
 changes of TCP only within the foreign agent
„wired“ Internet
buffering of data
end-to-end TCP connection
local retransmission correspondent
hostforeign
agent
mobile
host
snooping of ACKs
Mobile Transport layer
Snooping TCP
 Data transfer to the mobile host
 FA buffers data until it receives ACK of the MH, FA detects
packet loss via duplicated ACKs or time-out
 fast retransmission possible, transparent for the fixed network
 Data transfer from the mobile host
 FA detects packet loss on the wireless link via sequence
numbers, FA answers directly with a NACK to the MH
 MH can now retransmit data with only a very short delay
 Integration of the MAC layer
 MAC layer often has similar mechanisms to those of TCP
 thus, the MAC layer can already detect duplicated packets
due to retransmissions and discard them
 Problems
 snooping TCP does not isolate the wireless link as good as I-
TCP
 snooping might be useless depending on encryption schemes
Advantages
 The end-to-end TCP semantic is preserved.
 Most of the enhancements are done in the foreign
agent itself which keeps correspondent host
unchanged.
 Handover of state is not required as soon as the
mobile host moves to another foreign agent. Even
though packets are present in the buffer, time out
at the CH occurs and the packets are transmitted
to the new COA.
 No problem arises if the new foreign agent uses
the enhancement or not. If not, the approach
automatically falls back to the standard solution.
Disadvantages
 Snooping TCP does not isolate the behavior of the
wireless link as well as I-TCP.
 Transmission errors may propagate till CH.
 Using negative acknowledgements between the
foreign agent and the mobile host assumes additional
mechanisms on the mobile host. This approach is no
longer transparent for arbitrary mobile hosts.
 Snooping and buffering data may be useless if certain
encryption schemes are applied end-to-end between
the correspondent host and mobile host. If encryption
is used above the transport layer, (eg. SSL/TLS),
snooping TCP can be used.
MOBILE TCP
Mobile TCP - Motivation
 Dropping packets due to a handover or higher bit
error rates is not the only phenomenon of wireless
links and mobility – the occurrence of lengthy and/or
frequent disconnections is another problem.
 A TCP sender tries to retransmit data controlled by a
retransmission timer that doubles with each
unsuccessful retransmission attempt, up to a
maximum of one minute
 What happens in the case of I-TCP if the mobile is
disconnected? The proxy has to buffer more and
more data, so the longer the period of disconnection,
the more buffer is needed.
 The snooping approach also suffers from being
disconnected. The mobile will not be able to send
ACKs so, snooping cannot help in this situation.
Objective – M-TCP
 To prevent the sender window from shrinking if
bit errors or disconnection but not congestion
cause current problems.
 To improve overall throughput, to lower the delay,
to maintain end-to-end semantics of TCP, and to
provide a more efficient handover.
 Adapted to the problems arising from lengthy or
frequent disconnections
Mobile TCP
 The M-TCP splits up the connection into two parts:
 An unmodified TCP is used on the Standard host-
Supervisory Host section
 An optimized TCP is used on the Supervisory Host-
Mobile Host section.
 The Supervisory Host (SH) adorns the same role as
the proxy (Foreign Agent) in I-TCP.
 The SH is responsible for exchanging data to both the
Standard host and the Mobile host.
 Here in this approach, we assume that the error bit
rate is less as compared to other wireless links.
 So if any packet is lost, the retransmission has to
occur from the original sender and not by the SH.
(This also maintains the end-to-end TCP semantic)
Mobile TCP
 The SH monitors the ACKs (ACK means
acknowledgement) being sent by the MH. If for a long
period ACKs have not been received, then the SH
assumes that the MH has been disconnected (maybe
due to failure or moved out of range, etc...).
 If so the SH chokes the sender by setting its window
size to 0.
 Because of this the sender goes into persistent mode
i.e. the sender’s state will not change no matter how
long the receiver is disconnected.
 This means that the sender will not try to retransmit
the data.
 Now when the SH detects a connectivity established
again with the MH (the old SH or new SH if
handover), the window of the sender is restored to
Advantages:
 Maintains the TCP end-to-end semantics. (No
failed packet retransmission is done by the SH
.All job handled by original sender)
 Does not require the change in the sender’s TCP.
 If MH disconnected, it doesn’t waste time in
useless transmissions and shrinks the window
size to 0.
 No need to send old buffer data to new SH in
case of handover (as in I-TCP).
Disadvantages:
 M-TCP assumes low bit error which is not always
true. So, any packet loss due to bit-errors
occurring, then its propagated to the sender.
 Modifications are required for the MH protocol
software.
Fast retransmit/fast recovery
 Change of foreign agent often results in packet loss
 TCP reacts with slow-start although there is no
congestion
 Forced fast retransmit
 as soon as the mobile host has registered with a new
foreign agent, the MH sends duplicated
acknowledgements on purpose
 this forces the fast retransmit mode at the
communication partners
 additionally, the TCP on the MH is forced to continue
sending with the actual window size and not to go into
slow-start after registration
 Advantage
 simple changes result in significant higher performance
 Disadvantage
 further mix of IP and TCP, no transparent approach
Transmission/time-out freezing
 Mobile hosts can be disconnected for a longer time
 no packet exchange possible, e.g., in a tunnel, disconnection due to
overloaded cells or mux. with higher priority traffic
 TCP disconnects after time-out completely
 TCP freezing
 MAC layer is often able to detect interruption in advance
 MAC can inform TCP layer of upcoming loss of connection
 TCP stops sending, but does now not assume a congested link
 MAC layer signals again if reconnected
Advantage
 scheme is independent of data
 It offers a way to resume TCP connections even after long
interruptions of the connection.
 It can be used together with encrypted data as it is independent of
other TCP mechanisms such as sequence no or acknowledgements
Disadvantage
 Lots of changes have to be made in software of MH, CH and FA.
Selective retransmission
 TCP acknowledgements are often cumulative
 ACK n acknowledges correct and in-sequence
receipt of packets up to n
 if single packets are missing quite often a whole
packet sequence beginning at the gap has to be
retransmitted (go-back-n), thus wasting bandwidth
 Selective retransmission as one solution
 RFC2018 allows for acknowledgements of single
packets, not only acknowledgements of in-
sequence packet streams without gaps
 sender can now retransmit only the missing
packets
Transaction oriented TCP
 TCP phases
 connection setup, data transmission, connection
release
 using 3-way-handshake needs 3 packets for setup
and release, respectively
 thus, even short messages need a minimum of 7
packets!
 Transaction oriented TCP
 RFC1644, T-TCP, describes a TCP version to avoid
this overhead
 connection setup, data transfer and connection
release can be combined
 thus, only 2 or 3 packets are needed
 Advantage
 efficiency
 Disadvantage
 requires changed TCP
 mobility not longer transparent
Comparison of different approaches for a “mobile” TCP
Approach Mechanism Advantages Disadvantages
Indirect TCP splits TCP connection
into two connections
isolation of wireless
link, simple
loss of TCP semantics,
higher latency at
handover
Snooping TCP “snoops” data and
acknowledgements, local
retransmission
transparent for end-to-
end connection, MAC
integration possible
problematic with
encryption, bad isolation
of wireless link
M-TCP splits TCP connection,
chokes sender via
window size
Maintains end-to-end
semantics, handles
long term and frequent
disconnections
Bad isolation of wireless
link, processing
overhead due to
bandwidth management
Fast retransmit/
fast recovery
avoids slow-start after
roaming
simple and efficient mixed layers, not
transparent
Transmission/
time-out freezing
freezes TCP state at
disconnect, resumes
after reconnection
independent of content
or encryption, works for
longer interrupts
changes in TCP
required, MAC
dependant
Selective
retransmission
retransmit only lost data very efficient slightly more complex
receiver software, more
buffer needed
Transaction
oriented TCP
combine connection
setup/release and data
transmission
Efficient for certain
applications
changes in TCP
required, not transparent

More Related Content

DOCX
Biomass conversion technologies
Pakistan Ordnance Factories
 
PPTX
UNIT 2 8086 System Bus Structure.pptx
Gowrishankar C
 
PDF
Disk Drill Pro 5.5.900.0 Crack 2025 With Activation Code
farooq060kp
 
PPTX
Internship presentation for E-Commerce Website
Arvind Singh Rawat
 
PPTX
Gsm architecture
Naveen Sihag
 
PPTX
Uav presentation
Meshut
 
PPTX
Advertisement for Natural Skin Care
LearningTeamEUop
 
Biomass conversion technologies
Pakistan Ordnance Factories
 
UNIT 2 8086 System Bus Structure.pptx
Gowrishankar C
 
Disk Drill Pro 5.5.900.0 Crack 2025 With Activation Code
farooq060kp
 
Internship presentation for E-Commerce Website
Arvind Singh Rawat
 
Gsm architecture
Naveen Sihag
 
Uav presentation
Meshut
 
Advertisement for Natural Skin Care
LearningTeamEUop
 

What's hot (20)

PDF
Mobile Network Layer
Rahul Hada
 
PDF
Circuit Switching, Packet Switching, Virtual Circuit Networks and Datagram Ne...
Kaushik Panta
 
PPTX
Transport layer
Mukesh Chinta
 
PDF
Issues in routing protocol
Pradeep Kumar TS
 
PPTX
MEDIUM ACCESS CONTROL
junnubabu
 
PPTX
WIRELESS TRANSMISSION
junnubabu
 
PPTX
Multiplexing in mobile computing
ZituSahu
 
PPTX
Transmission Control Protocol (TCP)
k33a
 
PDF
IT6601 MOBILE COMPUTING
Kathirvel Ayyaswamy
 
PPSX
Features of mobile ip
priya Nithya
 
PPTX
Mobile transport layer - traditional TCP
Vishal Tandel
 
PPTX
Ad-Hoc Networks
Mshari Alabdulkarim
 
PPTX
Destination Sequenced Distance Vector Routing (DSDV)
ArunChokkalingam
 
PPTX
Handover in Mobile Computing
KABILESH RAMAR
 
PPSX
Mac protocols of adhoc network
shashi712
 
PDF
Mobile computing (Wireless) Medium Access Control (MAC)
Jyothishmathi Institute of Technology and Science Karimnagar
 
PPTX
MANET in Mobile Computing
KABILESH RAMAR
 
PPTX
Routing protocols for ad hoc wireless networks
Divya Tiwari
 
PPTX
Network Layer design Issues.pptx
Acad
 
PPTX
Routing Protocols in WSN
Darpan Dekivadiya
 
Mobile Network Layer
Rahul Hada
 
Circuit Switching, Packet Switching, Virtual Circuit Networks and Datagram Ne...
Kaushik Panta
 
Transport layer
Mukesh Chinta
 
Issues in routing protocol
Pradeep Kumar TS
 
MEDIUM ACCESS CONTROL
junnubabu
 
WIRELESS TRANSMISSION
junnubabu
 
Multiplexing in mobile computing
ZituSahu
 
Transmission Control Protocol (TCP)
k33a
 
IT6601 MOBILE COMPUTING
Kathirvel Ayyaswamy
 
Features of mobile ip
priya Nithya
 
Mobile transport layer - traditional TCP
Vishal Tandel
 
Ad-Hoc Networks
Mshari Alabdulkarim
 
Destination Sequenced Distance Vector Routing (DSDV)
ArunChokkalingam
 
Handover in Mobile Computing
KABILESH RAMAR
 
Mac protocols of adhoc network
shashi712
 
Mobile computing (Wireless) Medium Access Control (MAC)
Jyothishmathi Institute of Technology and Science Karimnagar
 
MANET in Mobile Computing
KABILESH RAMAR
 
Routing protocols for ad hoc wireless networks
Divya Tiwari
 
Network Layer design Issues.pptx
Acad
 
Routing Protocols in WSN
Darpan Dekivadiya
 
Ad

Similar to Mobile Transport layer (20)

PPTX
Mobile transport layer .
junnubabu
 
PDF
Unit 4
SwamiKankipati
 
PPTX
mobile_transport_layer (1).pptx
singhram281982
 
PPT
Wireless Networks: Transport Protocols Lecture
DrAdeelAkram2
 
PDF
Mc unit 4-jwfiles
bhupathiraju durga adithya varma
 
PPT
dawdw dwadawdwa dawrf af ae faef efae fae
UnduhUnggah1
 
PDF
EC 6802 WIRELESS NETWORK_ BABU M_ unit 3 ,4 & 5 PPT
babuece
 
PPTX
Mcseminar
Ankit Anand
 
PPT
Ch7-Transport_Protocols.ppt
RituParna42
 
PPT
C10 transport protocols
Rio Nguyen
 
PPT
transport protocols
Dr.K.Sreenivas Rao
 
PPTX
Mobile Transpot Layer
Maulik Patel
 
PDF
Cs8601 4
Kathirvel Ayyaswamy
 
PDF
Mobile transport layer
Vikram Nandini
 
PDF
Transport protocols
trupti patil
 
PPT
Mobile transport layer
SonaliAjankar
 
PDF
A throughput analysis of tcp in adhoc networks
csandit
 
PDF
A THROUGHPUT ANALYSIS OF TCP IN ADHOC NETWORKS
csandit
 
DOCX
Tcp
Anitha Ramar
 
PDF
NetWork Design Question2.) How does TCP prevent Congestion Dicuss.pdf
optokunal1
 
Mobile transport layer .
junnubabu
 
mobile_transport_layer (1).pptx
singhram281982
 
Wireless Networks: Transport Protocols Lecture
DrAdeelAkram2
 
dawdw dwadawdwa dawrf af ae faef efae fae
UnduhUnggah1
 
EC 6802 WIRELESS NETWORK_ BABU M_ unit 3 ,4 & 5 PPT
babuece
 
Mcseminar
Ankit Anand
 
Ch7-Transport_Protocols.ppt
RituParna42
 
C10 transport protocols
Rio Nguyen
 
transport protocols
Dr.K.Sreenivas Rao
 
Mobile Transpot Layer
Maulik Patel
 
Mobile transport layer
Vikram Nandini
 
Transport protocols
trupti patil
 
Mobile transport layer
SonaliAjankar
 
A throughput analysis of tcp in adhoc networks
csandit
 
A THROUGHPUT ANALYSIS OF TCP IN ADHOC NETWORKS
csandit
 
NetWork Design Question2.) How does TCP prevent Congestion Dicuss.pdf
optokunal1
 
Ad

More from Pallepati Vasavi (9)

PPTX
MOBILE COMPUTING MANETS,ROUTING ALGORITHMS
Pallepati Vasavi
 
PPTX
MOBILE COMPUTING Unit-3,Mobile IP
Pallepati Vasavi
 
PPT
Mobile computing unit2,SDMA,FDMA,CDMA,TDMA Space Division Multi Access,Frequ...
Pallepati Vasavi
 
PPTX
Mobile computing-Unit 1,GSM
Pallepati Vasavi
 
PPT
Mobile Application Devlopement-Database connections-UNIT-5
Pallepati Vasavi
 
PPT
JDBC,Types of JDBC,Resultset, statements,PreparedStatement,CallableStatements...
Pallepati Vasavi
 
PPT
Mobile Application Development,J2ME,UNIT-4-JNTU
Pallepati Vasavi
 
PPT
Mobile Application Development MAD J2ME UNIT 2
Pallepati Vasavi
 
PPT
Mobile Application Development MAD J2ME
Pallepati Vasavi
 
MOBILE COMPUTING MANETS,ROUTING ALGORITHMS
Pallepati Vasavi
 
MOBILE COMPUTING Unit-3,Mobile IP
Pallepati Vasavi
 
Mobile computing unit2,SDMA,FDMA,CDMA,TDMA Space Division Multi Access,Frequ...
Pallepati Vasavi
 
Mobile computing-Unit 1,GSM
Pallepati Vasavi
 
Mobile Application Devlopement-Database connections-UNIT-5
Pallepati Vasavi
 
JDBC,Types of JDBC,Resultset, statements,PreparedStatement,CallableStatements...
Pallepati Vasavi
 
Mobile Application Development,J2ME,UNIT-4-JNTU
Pallepati Vasavi
 
Mobile Application Development MAD J2ME UNIT 2
Pallepati Vasavi
 
Mobile Application Development MAD J2ME
Pallepati Vasavi
 

Recently uploaded (20)

PPTX
How to Track Skills & Contracts Using Odoo 18 Employee
Celine George
 
PPTX
INTESTINALPARASITES OR WORM INFESTATIONS.pptx
PRADEEP ABOTHU
 
PPTX
HEALTH CARE DELIVERY SYSTEM - UNIT 2 - GNM 3RD YEAR.pptx
Priyanshu Anand
 
PPTX
CARE OF UNCONSCIOUS PATIENTS .pptx
AneetaSharma15
 
DOCX
Modul Ajar Deep Learning Bahasa Inggris Kelas 11 Terbaru 2025
wahyurestu63
 
PDF
BÀI TẬP TEST BỔ TRỢ THEO TỪNG CHỦ ĐỀ CỦA TỪNG UNIT KÈM BÀI TẬP NGHE - TIẾNG A...
Nguyen Thanh Tu Collection
 
PDF
Health-The-Ultimate-Treasure (1).pdf/8th class science curiosity /samyans edu...
Sandeep Swamy
 
PPTX
An introduction to Prepositions for beginners.pptx
drsiddhantnagine
 
DOCX
pgdei-UNIT -V Neurological Disorders & developmental disabilities
JELLA VISHNU DURGA PRASAD
 
PPTX
Python-Application-in-Drug-Design by R D Jawarkar.pptx
Rahul Jawarkar
 
PPTX
CONCEPT OF CHILD CARE. pptx
AneetaSharma15
 
PPTX
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
PPTX
Measures_of_location_-_Averages_and__percentiles_by_DR SURYA K.pptx
Surya Ganesh
 
PPTX
How to Apply for a Job From Odoo 18 Website
Celine George
 
PPTX
HISTORY COLLECTION FOR PSYCHIATRIC PATIENTS.pptx
PoojaSen20
 
PPTX
Five Point Someone – Chetan Bhagat | Book Summary & Analysis by Bhupesh Kushwaha
Bhupesh Kushwaha
 
PPTX
A Smarter Way to Think About Choosing a College
Cyndy McDonald
 
DOCX
Action Plan_ARAL PROGRAM_ STAND ALONE SHS.docx
Levenmartlacuna1
 
PPTX
Tips Management in Odoo 18 POS - Odoo Slides
Celine George
 
PPTX
Kanban Cards _ Mass Action in Odoo 18.2 - Odoo Slides
Celine George
 
How to Track Skills & Contracts Using Odoo 18 Employee
Celine George
 
INTESTINALPARASITES OR WORM INFESTATIONS.pptx
PRADEEP ABOTHU
 
HEALTH CARE DELIVERY SYSTEM - UNIT 2 - GNM 3RD YEAR.pptx
Priyanshu Anand
 
CARE OF UNCONSCIOUS PATIENTS .pptx
AneetaSharma15
 
Modul Ajar Deep Learning Bahasa Inggris Kelas 11 Terbaru 2025
wahyurestu63
 
BÀI TẬP TEST BỔ TRỢ THEO TỪNG CHỦ ĐỀ CỦA TỪNG UNIT KÈM BÀI TẬP NGHE - TIẾNG A...
Nguyen Thanh Tu Collection
 
Health-The-Ultimate-Treasure (1).pdf/8th class science curiosity /samyans edu...
Sandeep Swamy
 
An introduction to Prepositions for beginners.pptx
drsiddhantnagine
 
pgdei-UNIT -V Neurological Disorders & developmental disabilities
JELLA VISHNU DURGA PRASAD
 
Python-Application-in-Drug-Design by R D Jawarkar.pptx
Rahul Jawarkar
 
CONCEPT OF CHILD CARE. pptx
AneetaSharma15
 
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
Measures_of_location_-_Averages_and__percentiles_by_DR SURYA K.pptx
Surya Ganesh
 
How to Apply for a Job From Odoo 18 Website
Celine George
 
HISTORY COLLECTION FOR PSYCHIATRIC PATIENTS.pptx
PoojaSen20
 
Five Point Someone – Chetan Bhagat | Book Summary & Analysis by Bhupesh Kushwaha
Bhupesh Kushwaha
 
A Smarter Way to Think About Choosing a College
Cyndy McDonald
 
Action Plan_ARAL PROGRAM_ STAND ALONE SHS.docx
Levenmartlacuna1
 
Tips Management in Odoo 18 POS - Odoo Slides
Celine George
 
Kanban Cards _ Mass Action in Odoo 18.2 - Odoo Slides
Celine George
 

Mobile Transport layer

  • 1.  Motivation  TCP-mechanisms  Classical approaches  Indirect TCP  Snooping TCP  Mobile TCP  PEPs in general Mobile Transport Layer  Additional optimizations  Fast retransmit/recovery  Transmission freezing  Selective retransmission  Transaction oriented TCP
  • 2. Motivation  Transport layer responsible for  Fixed end-end systems  Fixed, wired networks  Error recovery  Flow control  Congestion control  Ensuring complete data transfer in TCP  Efficient retransmissions
  • 3.  TCP congestion control  packet loss in fixed networks typically due to (temporary) overload situations  router have to discard packets as soon as the buffers are full  TCP recognizes congestion only indirect via missing acknowledgements, retransmissions unwise, they would only contribute to the congestion and make it even worse  slow-start algorithm as reaction
  • 4.  TCP slow-start algorithm  sender calculates a congestion window for a receiver  start with a congestion window size equal to one segment  exponential increase of the congestion window up to the congestion threshold, then linear increase  Linear increase Continues until a time-out at The sender occurs due to a missing acknowledgement, or until the sender detects a gap in transmitted Data because of Continuous acknowledgements for The same packet.  missing acknowledgement causes the reduction of the congestion threshold to one half of the current congestion window  congestion window starts again with one segment
  • 6.  TCP fast retransmit/fast recovery  If a sender receives several acknowledgements for the same packet, this is due to a gap in received packets at the receiver or missing acknowledgements  The sender can now retransmit the missing packet(s) before the timer expires. This behavior is called fast retransmit.  It is an early enhancement for preventing slow-start to trigger on losses not caused by congestion.  The receipt of acknowledgements shows that there is no congestion to justify a slow start.  The sender can continue with the current congestion window. The sender performs a fast recovery from the packet loss.  therefore, packet loss is not due to congestion, continue with current congestion window (do not use slow-start)
  • 7. Influences of mobility on TCP-mechanisms  Slow Start mechanism in fixed networks decreases the efficiency of TCP if used with mobile receivers or senders.  Error rates on wireless links are orders of magnitude higher compared to fixed fiber or copper links. This makes compensation for packet loss by TCP quite difficult.  Mobility itself can cause packet loss. There are many situations where a soft handover from one access point to another is not possible for a mobile end-system.  Standard TCP reacts with slow start if acknowledgements are missing, which does not help in the case of transmission errors over wireless links and
  • 9. Early approach: Indirect TCP  Indirect TCP or I-TCP segments the connection  no changes to the TCP protocol for hosts connected to the wired Internet, millions of computers use (variants of) this protocol  optimized TCP protocol for mobile hosts  splitting of the TCP connection at, e.g., the foreign agent into 2 TCP connections, no real end-to-end connection any longer  hosts in the fixed part of the net do not notice the characteristics of the wireless part mobile host access point (foreign agent) „wired“ Internet „wireless“ TCP standard TCP
  • 11. Indirect TCP  Advantages  no changes in the fixed network necessary, no changes for the hosts (TCP protocol) necessary, all current optimizations to TCP still work  transmission errors on the wireless link do not propagate into the fixed network  simple to control, mobile TCP is used only for one hop between, e.g., a foreign agent and mobile host  therefore, a very fast retransmission of packets is possible, the short delay on the mobile hop is known  Disadvantages  loss of end-to-end semantics, an acknowledgement to a sender does now not any longer mean that a receiver really got a packet, foreign agents might crash  higher latency possible due to buffering of data within the foreign agent and forwarding to a new foreign agent
  • 13. Snooping TCP  „Transparent“ extension of TCP within the foreign agent  buffering of packets sent to the mobile host  lost packets on the wireless link (both directions!) will be retransmitted immediately by the mobile host or foreign agent, respectively (so called “local” retransmission)  the foreign agent therefore “snoops” the packet flow and recognizes acknowledgements in both directions, it also filters ACKs  changes of TCP only within the foreign agent „wired“ Internet buffering of data end-to-end TCP connection local retransmission correspondent hostforeign agent mobile host snooping of ACKs
  • 15. Snooping TCP  Data transfer to the mobile host  FA buffers data until it receives ACK of the MH, FA detects packet loss via duplicated ACKs or time-out  fast retransmission possible, transparent for the fixed network  Data transfer from the mobile host  FA detects packet loss on the wireless link via sequence numbers, FA answers directly with a NACK to the MH  MH can now retransmit data with only a very short delay  Integration of the MAC layer  MAC layer often has similar mechanisms to those of TCP  thus, the MAC layer can already detect duplicated packets due to retransmissions and discard them  Problems  snooping TCP does not isolate the wireless link as good as I- TCP  snooping might be useless depending on encryption schemes
  • 16. Advantages  The end-to-end TCP semantic is preserved.  Most of the enhancements are done in the foreign agent itself which keeps correspondent host unchanged.  Handover of state is not required as soon as the mobile host moves to another foreign agent. Even though packets are present in the buffer, time out at the CH occurs and the packets are transmitted to the new COA.  No problem arises if the new foreign agent uses the enhancement or not. If not, the approach automatically falls back to the standard solution.
  • 17. Disadvantages  Snooping TCP does not isolate the behavior of the wireless link as well as I-TCP.  Transmission errors may propagate till CH.  Using negative acknowledgements between the foreign agent and the mobile host assumes additional mechanisms on the mobile host. This approach is no longer transparent for arbitrary mobile hosts.  Snooping and buffering data may be useless if certain encryption schemes are applied end-to-end between the correspondent host and mobile host. If encryption is used above the transport layer, (eg. SSL/TLS), snooping TCP can be used.
  • 19. Mobile TCP - Motivation  Dropping packets due to a handover or higher bit error rates is not the only phenomenon of wireless links and mobility – the occurrence of lengthy and/or frequent disconnections is another problem.  A TCP sender tries to retransmit data controlled by a retransmission timer that doubles with each unsuccessful retransmission attempt, up to a maximum of one minute  What happens in the case of I-TCP if the mobile is disconnected? The proxy has to buffer more and more data, so the longer the period of disconnection, the more buffer is needed.  The snooping approach also suffers from being disconnected. The mobile will not be able to send ACKs so, snooping cannot help in this situation.
  • 20. Objective – M-TCP  To prevent the sender window from shrinking if bit errors or disconnection but not congestion cause current problems.  To improve overall throughput, to lower the delay, to maintain end-to-end semantics of TCP, and to provide a more efficient handover.  Adapted to the problems arising from lengthy or frequent disconnections
  • 21. Mobile TCP  The M-TCP splits up the connection into two parts:  An unmodified TCP is used on the Standard host- Supervisory Host section  An optimized TCP is used on the Supervisory Host- Mobile Host section.  The Supervisory Host (SH) adorns the same role as the proxy (Foreign Agent) in I-TCP.  The SH is responsible for exchanging data to both the Standard host and the Mobile host.  Here in this approach, we assume that the error bit rate is less as compared to other wireless links.  So if any packet is lost, the retransmission has to occur from the original sender and not by the SH. (This also maintains the end-to-end TCP semantic)
  • 22. Mobile TCP  The SH monitors the ACKs (ACK means acknowledgement) being sent by the MH. If for a long period ACKs have not been received, then the SH assumes that the MH has been disconnected (maybe due to failure or moved out of range, etc...).  If so the SH chokes the sender by setting its window size to 0.  Because of this the sender goes into persistent mode i.e. the sender’s state will not change no matter how long the receiver is disconnected.  This means that the sender will not try to retransmit the data.  Now when the SH detects a connectivity established again with the MH (the old SH or new SH if handover), the window of the sender is restored to
  • 23. Advantages:  Maintains the TCP end-to-end semantics. (No failed packet retransmission is done by the SH .All job handled by original sender)  Does not require the change in the sender’s TCP.  If MH disconnected, it doesn’t waste time in useless transmissions and shrinks the window size to 0.  No need to send old buffer data to new SH in case of handover (as in I-TCP).
  • 24. Disadvantages:  M-TCP assumes low bit error which is not always true. So, any packet loss due to bit-errors occurring, then its propagated to the sender.  Modifications are required for the MH protocol software.
  • 25. Fast retransmit/fast recovery  Change of foreign agent often results in packet loss  TCP reacts with slow-start although there is no congestion  Forced fast retransmit  as soon as the mobile host has registered with a new foreign agent, the MH sends duplicated acknowledgements on purpose  this forces the fast retransmit mode at the communication partners  additionally, the TCP on the MH is forced to continue sending with the actual window size and not to go into slow-start after registration  Advantage  simple changes result in significant higher performance  Disadvantage  further mix of IP and TCP, no transparent approach
  • 26. Transmission/time-out freezing  Mobile hosts can be disconnected for a longer time  no packet exchange possible, e.g., in a tunnel, disconnection due to overloaded cells or mux. with higher priority traffic  TCP disconnects after time-out completely  TCP freezing  MAC layer is often able to detect interruption in advance  MAC can inform TCP layer of upcoming loss of connection  TCP stops sending, but does now not assume a congested link  MAC layer signals again if reconnected Advantage  scheme is independent of data  It offers a way to resume TCP connections even after long interruptions of the connection.  It can be used together with encrypted data as it is independent of other TCP mechanisms such as sequence no or acknowledgements Disadvantage  Lots of changes have to be made in software of MH, CH and FA.
  • 27. Selective retransmission  TCP acknowledgements are often cumulative  ACK n acknowledges correct and in-sequence receipt of packets up to n  if single packets are missing quite often a whole packet sequence beginning at the gap has to be retransmitted (go-back-n), thus wasting bandwidth  Selective retransmission as one solution  RFC2018 allows for acknowledgements of single packets, not only acknowledgements of in- sequence packet streams without gaps  sender can now retransmit only the missing packets
  • 28. Transaction oriented TCP  TCP phases  connection setup, data transmission, connection release  using 3-way-handshake needs 3 packets for setup and release, respectively  thus, even short messages need a minimum of 7 packets!
  • 29.  Transaction oriented TCP  RFC1644, T-TCP, describes a TCP version to avoid this overhead  connection setup, data transfer and connection release can be combined  thus, only 2 or 3 packets are needed
  • 30.  Advantage  efficiency  Disadvantage  requires changed TCP  mobility not longer transparent
  • 31. Comparison of different approaches for a “mobile” TCP Approach Mechanism Advantages Disadvantages Indirect TCP splits TCP connection into two connections isolation of wireless link, simple loss of TCP semantics, higher latency at handover Snooping TCP “snoops” data and acknowledgements, local retransmission transparent for end-to- end connection, MAC integration possible problematic with encryption, bad isolation of wireless link M-TCP splits TCP connection, chokes sender via window size Maintains end-to-end semantics, handles long term and frequent disconnections Bad isolation of wireless link, processing overhead due to bandwidth management Fast retransmit/ fast recovery avoids slow-start after roaming simple and efficient mixed layers, not transparent Transmission/ time-out freezing freezes TCP state at disconnect, resumes after reconnection independent of content or encryption, works for longer interrupts changes in TCP required, MAC dependant Selective retransmission retransmit only lost data very efficient slightly more complex receiver software, more buffer needed Transaction oriented TCP combine connection setup/release and data transmission Efficient for certain applications changes in TCP required, not transparent