Tcp tutorial part 2

TCP Segment format:

The figure below show the TCP segment format. It show the different
field within the TCP header.

bit 0 bit 16 bit 32
------------------------------------------------------------------
Source port (16) Destination port (16)
________________________________________________________________

Sequence number (32)
_________________________________________________________________

Acknowledgement number (32)
_________________________________________________________________

Header Reserved Code Bits Window (16)
Length (6) (6)
(4)
______________________________________________________________

Checksum (16) Urgent (16)
________________________________________________________________

Options (0 or 32 if any)
_________________________________________________________________

Data (varies)

Related Posts:

  • Linux Commands How to search files for specific terms: grep -r [search term] . How to add items such as svn, mvn, java, etc. to your PATH and set environment variables for all users: Edit the /etc/profile file and then run .[space]/etc/p… Read More
  • Share an Internet Connection With Multiple Computers Share an Internet Connection With Multiple Computers Linux offers the ability to act as both firewall and router for multiple computers. You can easily set this up using iptables. Execute the following commands o… Read More
  • How to "Delete administrator Password" without any software Boot up with DOS and delete the sam.exe and sam.log files from Windows\system32\config in your hard drive. Now when you boot up in NT the password on your built-in administrator account which will be blank (i.e No password).… Read More
  • Linux Mounted Driver cannot remove directory error message When running rm -rf [directory name] the following error message occurs:rm: cannot remove directory '[directory name]': File existsIf this occurs when trying to remove a file from a mounted drive, try unmounting the drive an… Read More
  • Tcp tutorial part 1 TRANSMISSION CONTROL PROTOCOL (TCP):TCP takes large blocks of information from an application andbreaks them into segments. It numbers and sequences eachsegment so that the destinations TCP protocol can put thesegments back … Read More

0 comments: