Typical Features of OSI Layer 4 The transport layer Layer 4 defines several functions, the most important of which are error recovery and flow control.. However, if error recovery or flo
Trang 1Fundamentals of TCP and UDP
The Transmission Control Protocol (TCP) and User Datagram Protocol (UDP) are the two most popular TCP/IP transport layer protocols These TCP/IP protocols define a variety of functions considered to be OSI transport layer, or Layer 4, features Some of the functions relate to things you see every day—for instance, when you open multiple web browsers on your PC, how does your PC know which browser to put the next web page in? When a web server sends you 500 IP packets containing the various parts of a web page, and 1 packet has errors, how does your PC recover the lost data? This chapter covers how TCP and UDP perform these two functions, along with the other functions performed by the transport layer
“Do I Know This Already?” Quiz
The purpose of the “Do I Know This Already?” quiz is to help you decide whether you really need to read the entire chapter If you already intend to read the entire chapter, you
do not necessarily need to answer these questions now
The ten-question quiz, derived from the major sections in “Foundation Topics” portion
of the chapter, helps you determine how to spend your limited study time
Table 6-1 outlines the major topics discussed in this chapter and the “Do I Know This Already?” quiz questions that correspond to those topics
Table 6-1 “Do I Know This Already?” Foundation Topics Section-to-Question Mapping
Foundations Topics Section Questions Covered in This Section
Typical Features of OSI Layer 4 4 The Transmission Control Protocol 1–3, 5–8, 10
CAUTION The goal of self-assessment is to gauge your mastery of the topics in this chapter If you do not know the answer to a question or are only partially sure of the answer, you should mark this question wrong for purposes of the self-assessment Giving yourself credit for an answer that you correctly guess skews your self-assessment results and might provide you with a false sense of security
Trang 21. Which of the following protocols are connection-oriented?
3. PC1 is using TCP, has a window of 4, and sends four segments numbered 2, 3, 4, and 5
to PC2 PC2 replies with an acknowledgment number 5 What should PC1 do next?
a. Increase its window to five segments
b. Increase its window by five more segments, for a total of nine
c. Send segment 6
d. Resend segment 5
e. Resend segments 2 through 5
4. Which of the following are not features of a protocol that is considered to match OSI Layer 4?
a. Error recovery
b. Flow control
c. Segmenting of application data
d. Conversion from binary to ASCII
5. Which of the following flow-control methods let the receiver tell the sender how much data the sender is allowed to send before the sender must wait for an acknowledgment?
Trang 36. Which of the following header fields identifies which TCP/IP application gets data received by the computer?
f. Ordered data transfer
9. Which of the following functions is performed by TCP and UDP?
Trang 410. Data that includes the Layer 4 protocol header, and data given to Layer 4 by the upper layers, not including any headers and trailers from Layers 1 to 3, is called what?
■ 8 or less overall score—Read the entire chapter This includes the “Foundation Topics”
and “Foundation Summary” sections and the Q&A section
■ 9 or 10 overall score—If you want more review on these topics, skip to the “Foundation
Summary” section and then go to the Q&A section Otherwise, move to the next chapter
Trang 5Foundation Topics
As in the last two chapters, this chapter starts with a general discussion of the functions of
an OSI layer—in this case, Layer 4, the transport layer Two specific transport layer protocols—the Transmission Control Protocol (TCP) and the User Datagram Protocol (UDP) are covered later in the chapter This chapter covers OSI Layer 4 concepts, but mostly through an examination of the TCP and UDP protocols So, this chapter briefly introduces OSI transport layer details and then dives right into how TCP works
Typical Features of OSI Layer 4
The transport layer (Layer 4) defines several functions, the most important of which are error recovery and flow control Routers discard packets for many reasons, including bit errors, congestion and instances in which no correct routes are known As you have read already, most data-link protocols notice errors but then discard frames that have errors The OSI transport layer might provide for retransmission (error recovery) and help to avoid congestion (flow control)—or it might not It really just depends on the particular protocol However, if error recovery or flow control is performed with the more modern protocol suites, the functions typically are performed with a Layer 4 protocol
OSI Layer 4 includes some other features as well Table 6-2 summarizes the main features of the OSI transport layer You will read about the specific implementation of these protocols
in the sections about TCP and UDP
Table 6-2 OSI Transport Layer Features
Error recovery The process of noticing errored or lost segments and causing them to
be resent.
Reliability Another term for error recovery.
Flow control Processes that control the rates at which data is transferred between
two endpoints.
Segmenting application data
Application layer protocols may need to send large chunks of data— much larger than can fit inside one IP packet The transport layer is responsible for segmenting the larger data into pieces, called segments, that can fit inside a packet.
Trang 6The Transmission Control Protocol
Each TCP/IP application typically chooses to use either TCP or UDP based on the
application’s requirements For instance, TCP provides error recovery, but to do so, it consumes more bandwidth and uses more processing cycles UDP does not do error recovery, but it takes less bandwidth and uses fewer processing cycles Regardless of which of the two TCP/IP transport layer protocols the application chooses to use, you should understand the basics of how each of the protocols works
TCP provides a variety of useful features, including error recovery In fact, TCP is best known for its error-recovery feature—but it does more TCP, defined in RFC 793, performs the following functions:
■ Multiplexing using port numbers
■ Error recovery (reliability)
■ Flow control using windowing
■ Connection establishment and termination
■ End-to-end ordered data transfer
■ Segmentation
TCP accomplishes these functions through mechanisms at the endpoint computers TCP relies on IP for end-to-end delivery of the data, including routing issues In other words, TCP performs only part of the functions necessary to deliver the data between applications, and the role that it plays is directed toward providing services for the applications that sit at the endpoint computers Regardless of whether two computers are on the same Ethernet, or are separated by the entire Internet, TCP performs its functions the same way
Figure 6-1 shows the fields in the TCP header Not all the fields are described in this text, but
several fields are referred to in this section The Cisco Press book, Internetworking
Technologies Handbook, Fourth Edition, lists the fields along with brief explanations.
Trang 7Figure 6-1 TCP Header Fields
Multiplexing Using TCP Port Numbers
TCP provides a lot of features to applications, at the expense of requiring slightly more processing and overhead, as compared to UDP However, TCP and UDP both use a concept
called multiplexing So, this section begins with an explanation of multiplexing with TCP
and UDP Afterward, the unique features of TCP and UDP are explored
Multiplexing by TCP and UDP involves the process of how a computer thinks when receiving data The computer might be running many applications, such as a web browser, an e-mail package, or an FTP client TCP and UDP multiplexing enables the receiving computer to know which application to give the data to
Some examples will help make the need for multiplexing obvious The sample network consists of two PCs, labeled Hannah and Jessie Hannah uses an application that she wrote
to send advertisements that display on Jessie’s screen The application sends a new ad to Jessie every 10 seconds Hannah uses a second application, a wire-transfer application, to send Jessie some money Finally, Hannah uses a web browser to access the web server that runs on Jessie’s PC The ad application and wire-transfer application are imaginary, just for this example The web application works just like it would in real life
Bit 0
Header Length (4)
Sequence Number (32)
Destination Port (16)Source Port (16)
Bit 31Bit 16
Bit 15
Reserved (6) Code Bits (6) Window (16)Checksum (16) Urgent (16)
Options (0 or 32 If Any)Data (Varies)Acknowledgement Number (32) 20
Bytes
Trang 8Figure 6-2 shows a figure of the example network, with Jessie running three applications:
■ A UDP-based ad application
■ A TCP-based wire-transfer application
■ A TCP web server application
Figure 6-2 Hannah Sending Packets to Jessie, with Three Applications
Jessie needs to know which application to give the data to, but all three packets are from the same Ethernet and IP address You might think that Jessie could look at whether the packet contains a UDP or a TCP header, but, as you see in the figure, two applications (wire transfer and web) both are using TCP
TCP and UDP solve this problem by using a port number field in the TCP or UDP header, respectively Each of Hannah’s TCP and UDP segments uses a different destination port number so that Jessie knows which application to give the data to Figure 6-3 shows an example
Multiplexing relies on the use of a concept called a socket A socket consists of three things:
an IP address, a transport protocol, and a port number So, for a web server application on Jessie, the socket would be (10.1.1.2, TCP, port 80) because, by default, web servers use the well-known port 80 When Hannah’s web browser connected to the web server, Hannah used a socket as well—possibly one like this: (10.1.1.1, TCP, 1030) Why 1030? Well, Hannah just needs a port number that is unique on Hannah, so Hannah saw that port 1030 was available and used it In fact, hosts typically allocate dynamic port numbers starting at
1024 because the ports below 1024 are reserved for well-known applications, such as web services
I Received Three Packets, Each from the Same MAC and
IP Address What Application Should Get the Data in Each Packet?
Ad Data
Wire Transfer Data
Data
Trang 9Figure 6-3 Hannah Sending Packets to Jessie, with Three Applications Using Port Numbers to Multiplex
In Figure 6-3, Hannah and Jessie used three applications at the same time—hence, there were three socket connections open Because a socket on a single computer should be unique, a connection between two sockets should identify a unique connection between two computers The fact that each connection between two sockets is unique means that you can use multiple applications at the same time, talking to applications running on the same or different computers; multiplexing, based on sockets, ensures that the data is delivered to the correct applications Figure 6-4 shows the three socket connections between Hannah and Jessie
Figure 6-4 Connections Between Sockets
Ad Data
Wire Transfer Data
Eth IP TCP Web PageData Eth
Port 80 Web Server Port 800 Ad Server Port 20,100 Wire Application
Wire Application Port 1028
Web Browser Port 1030
IP Address 10.1.1.1
Ad Application Port 800
Wire Application Port 20,100
Web Server Port 80
IP Address 10.1.1.2
(10.1.1.1, TCP, 1030) (10.1.1.2, TCP, 80) (10.1.1.1, TCP, 1028) (10.1.1.2, TCP, 20100)
Trang 10Port numbers are a vital part of the socket concept Well-known port numbers are used by servers; other port numbers are used by clients Applications that provide a service, such as FTP, Telnet, and web servers, open a socket using a well-known port and listen for
connection requests Because these connection requests from clients are required to include both the source and the destination port numbers, the port numbers used by the servers must
be well known Therefore, each server has a hard-coded, well-known port number, as defined
in the well-known numbers RFC
On client machines, where the requests originate, any unused port number can be allocated The result is that each client on the same host uses a different port number, but a server uses the same port number for all connections For example, 100 Telnet clients on the same host computer would each use a different port number, but the Telnet server with 100 clients connected to it would have only 1 socket and, therefore, only 1 port number The
combination of source and destination sockets allows all participating hosts to distinguish between the source and destination of the data (Look to www.rfc-editor.org to find RFCs such as the well-known numbers RFC 1700.)
Popular TCP/IP Applications
Throughout your preparation for the CCNA INTRO and ICND exams, you will come across a variety of TCP/IP applications You should at least be aware of some of the applications that can be used to help manage and control a network
The World Wide Web (WWW) application exists through web browsers accessing the content available on web servers, as mentioned earlier While often thought of as an end-user application, you can actually use WWW to manage a router or switch by enabling a web server function in the router or switch, and using a browser to access the router or switch.The Domain Name System (DNS) allows users to use names to refer to computers, with DNS being used to find the corresponding IP addresses DNS also uses a client/server model, with DNS servers being controlled by networking personnel, and DNS client functions being part
of most any device that uses TCP/IP today The client simply asks the DNS server to supply the IP address that corresponds to a given name
Simple Network Management Protocol (SNMP) is an application layer protocol used specifically for network device management For instance, the Cisco Works network management software product can be used to query, compile, store, and display information about the operation of a network In order to query the network devices, Cisco Works uses SNMP protocols
NOTE You can find all RFCs online at www.isi.edu/in-notes/rfcxxxx.txt, where xxxx is
the number of the RFC If you do not know the number of the RFC, you can try searching
by topic at www.rfc-editor.org/cgi-bin/rfcsearch.html
Trang 11Traditionally, in order to move files to and from a router or switch, Cisco used Trivial File Transfer Protocol (TFTP) TFTP defines a protocol for basic file transfer – hence the word
“trivial” to start the name of the application Alternately, routers and switches can use File Transfer Protocol (FTP), which is a much more functional protocol, for transferring files Both work well for moving files into and out of Cisco devices FTP allows many more features, making it a good choice for the general end-user population, whereas TFTP client and server applications are very simple, making them good tools as imbedded parts of networking devices
Some of these applications use TCP, and some use UDP As you will read later, TCP performs error recovery, whereas UDP does not For instance, Simple Mail Transport Protocol (SMTP) and Post Office Protocol version 3 (POP3), both used for transferring mail, require
guaranteed delivery, so they use TCP Regardless of which transport layer protocol is used, applications use a well-known port number, so that clients know to which port to attempt to connect Table 6-3 lists several popular applications and their well-known port numbers
Error Recovery (Reliability)
TCP provides for reliable data transfer, which is also called reliability or error recovery,
depending on what document you read To accomplish reliability, TCP numbers data bytes using the Sequence and Acknowledgment fields in the TCP header TCP achieves reliability
in both directions, using the Sequence Number field of one direction combined with the Acknowledgment field in the opposite direction Figure 6-5 shows the basic operation
In Figure 6-5, the Acknowledgment field in the TCP header sent by the web client (4000)
implies the next byte to be received; this is called forward acknowledgment The sequence
number reflects the number of the first byte in the segment In this case, each TCP segment
is 1000 bytes in length; the Sequence and Acknowledgment fields count the number of bytes
Table 6-3 Popular Applications and Their Well-Known Port Numbers
Trang 12Figure 6-5 TCP Acknowledgment Without Errors
Figure 6-6 depicts the same scenario, but the second TCP segment was lost or was in error The web client’s reply has an ACK field equal to 2000, implying that the web client is expecting byte number 2000 next The TCP function at the web server then could recover lost data by resending the second TCP segment The TCP protocol allows for resending just that segment and then waiting, hoping that the web client will reply with an acknowledgment that equals 4000
Figure 6-6 TCP Acknowledgment with Errors
(Although not shown, the sender also sets a re-transmission timer, awaiting
acknowledgment, just in case the acknowledgment is lost, or in case all transmitted segments are lost If that timer expires, the TCP sender sends all segments again.)
Flow Control Using Windowing
TCP implements flow control by taking advantage of the Sequence and Acknowledgment fields in the TCP header, along with another field called the Window field This Window field implies the maximum number of unacknowledged bytes allowed outstanding at any instant
Web Browser Web
Server
1000 Bytes of Data, Sequence = 1000
1000 Bytes of Data, Sequence = 2000
1000 Bytes of Data, Sequence = 3000
No Data, Acknowledgment = 4000
I Got All 3000 Bytes.
Send ACK!
Web Browser Web
Server
1000 Bytes of Data, Sequence = 1000
1000 Bytes of Data, Sequence = 2000
1000 Bytes of Data, Sequence = 3000
No Data, Acknowledgment = 4000
No Data, Acknowledgment = 2000
1000 Bytes of Data, Sequence = 2000
I Probably Lost One.
ACK What I Got in
Order!
I Just Got 2000-2999, and I Already Had 3000-3999 Ask for
4000 Next.
He Lost the Segment
with Sequence =
2000 Resend It!
Trang 13in time The window starts small and then grows until errors occur The window then
“slides” up and down based on network performance, so it is sometimes called a sliding window When the window is full, the sender will not send, which controls the flow of data
Figure 6-7 shows windowing with a current window size of 3000 Each TCP segment has
1000 bytes of data
Figure 6-7 TCP Windowing
Notice that the web server must wait after sending the third segment because the window is exhausted When the acknowledgment has been received, another window can be sent Because there have been no errors, the web client grants a larger window to the server, so now 4000 bytes can be sent before an acknowledgment is received by the server In other words, the Window field is used by the receiver to tell the sender how much data it can send before it must stop and wait for the next acknowledgment As with other TCP features, windowing is symmetrical—both sides send and receive, and, in each case, the receiver grants
a window to the sender using the Window field
Windowing does not require that the sender stop sending in all cases If an acknowledgment
is received before the window is exhausted, a new window begins and the sender continues
to send data until the current window is exhausted (The term, Positive Acknowledgement and Retransmission [PAR], is sometimes used to describe the error recovery and windowing
processes used by TCP.)
SEQ=1000 SEQ=2000 SEQ=3000
SEQ=4000 SEQ=5000 SEQ=6000
ACK=4000 Window=4000
ACK=1000 Window=3000
SEQ=7000
Web Server
Web Browser