55
Netprog: TCP/IP TCP/IP TCP/IP Transmission Control Protocol / Internet Transmission Control Protocol / Internet Protocol Protocol

1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

Embed Size (px)

Citation preview

Page 1: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

1Netprog: TCP/IP

TCP/IPTCP/IPTransmission Control Protocol / Internet Transmission Control Protocol / Internet ProtocolProtocol

Page 2: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

2Netprog: TCP/IP

TCP/IP & OSITCP/IP & OSI

• In OSI reference model terminology -the TCP/IP protocol suite covers the network and transport layers.

• TCP/IP can be used on many data-link layers (can support many network hardware implementations).

Page 3: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

3Netprog: TCP/IP

But First ...But First ...

Page 4: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

4Netprog: TCP/IP

Ethernet - A Real Data-Link LayerEthernet - A Real Data-Link Layer

• It will be useful to discuss a real data-link layer.

• Ethernet (really IEEE 802.3) is widely used.

• Supported by a variety of physical layer implementations.

Page 5: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

5Netprog: TCP/IP

EthernetEthernet

• Multi-access (shared medium).

• Every Ethernet interface has a unique 48 bit address (a.k.a. hardware address).

• Example: C0:B3:44:17:21:17

• The broadcast address is all 1’s.

• Addresses are assigned to vendors by a central authority.

Page 6: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

6Netprog: TCP/IP

CSMA/CDCSMA/CD Carrier Sense Multiple Access

withCollision Detection

• Carrier Sense: can tell when another host is transmitting

• Multiple Access: many hosts on 1 wire

• Collision Detection: can tell when another host transmits at the same time.

Page 7: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

7Netprog: TCP/IP

An Ethernet FrameAn Ethernet Frame

• The preamble is a sequence of alternating 1s and 0s used for synchronization.

• CRC is Cyclic Redundency Check

8 bytes 6 6 2 0-1500 4

PreambleDestination

AddressSourceAddress

Len CRCDATA

Page 8: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

8Netprog: TCP/IP

Ethernet AddressingEthernet Addressing

• Each interface looks at every frame and inspects the destination address. If the address does not match the hardware address of the interface (or the broadcast address), the frame is discarded.

• Some interfaces can also be programmed to recognize multicast addresses.

Page 9: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

9Netprog: TCP/IP

Back to Back to TCP/IPTCP/IP

Page 10: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

10Netprog: TCP/IP

Internet ProtocolInternet ProtocolThe IP in TCP/IPThe IP in TCP/IP

• IP is the network layer

• packet delivery service (host-to-host).

• translation between different data-link protocols.

Page 11: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

11Netprog: TCP/IP

IP DatagramsIP Datagrams

• IP provides connectionless, unreliable delivery of IP datagrams.

• Connectionless: each datagram is independent of all others.

• Unreliable: there is no guarantee that datagrams are delivered correctly or even delivered at all.

An IP packet is called a datagram

Page 12: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

12Netprog: TCP/IP

IP AddressesIP Addresses

• IP addresses are not the same as the underlying data-link (MAC) addresses.

Why ?Why ?

Rensselaer

Page 13: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

13Netprog: TCP/IP

IP AddressesIP Addresses

• IP is a network layer - it must be capable of providing communication between hosts on different kinds of networks (different data-link implementations).

• The address must include information about what network the receiving host is on. This is what makes routing feasible.

Page 14: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

14Netprog: TCP/IP

IP AddressesIP Addresses

• IP addresses are logical addresses (not physical)

• 32 bits.

• Includes a network ID and a host ID.

• Every host must have a unique IP address.

• IP addresses are assigned by a central authority (American Registry for Internet Numbers for North America).

IPv4 (version 4)

Page 15: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

15Netprog: TCP/IP

The The fourfour forformats of IP Addressesmats of IP Addresses

0 NetID

10

110 NetID

1110 Multicast Address

HostID

NetID HostID

HostID

ClassClassAA

BB

CC

DD

8 bits 8 bits 8 bits8 bits

Page 16: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

16Netprog: TCP/IP

Class AClass A

128 possible network IDs

over 4 million host IDs per network ID

Class AClass A

128 possible network IDs

over 4 million host IDs per network ID

Class BClass B16K possible network IDs64K host IDs per network ID

Class CClass Cover 2 million possible network IDsabout 256 host IDs per network ID

Page 17: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

17Netprog: TCP/IP

Network and Host IDsNetwork and Host IDs

• A Network ID is assigned to an organization by a global authority.

• Host IDs are assigned locally by a system administrator.

• Both the Network ID and the Host ID are used for routing.

Page 18: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

18Netprog: TCP/IP

IP AddressesIP Addresses

• IP Addresses are usually shown in dotted decimal notation:

1.2.3.4 00000001 00000010 00000011 00000100

• cs.rpi.edu is 128.213.1.110000000 11010101 00000001 00000001

CS has a class B networkCS has a class B network

Page 19: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

19Netprog: TCP/IP

Host and Network Host and Network AddressesAddresses• A single network interface is

assigned a single IP address called the host address.

• A host may have multiple interfaces, and therefore multiple host addresses.

• Hosts that share a network all have the same IP network address (the network ID).

Page 20: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

20Netprog: TCP/IP

IP Broadcast and Network IP Broadcast and Network AddressesAddresses• An IP broadcast addresses has a

host ID of all 1s.

• IP broadcasting is not necessarily a true broadcast, it relies on the underlying hardware technology.

• An IP address that has a host ID of all 0s is called a network address and refers to an entire network.

Page 21: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

21Netprog: TCP/IP

Subnet AddressesSubnet Addresses

• An organization can subdivide it’s host address space into groups called subnets.

• The subnet ID is generally used to group hosts based on the physical network topology.

10 NetID SubnetID HostID

Page 22: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

22Netprog: TCP/IP

SubnettingSubnettingrouter

Subnet 1128.213.1.x

Subnet 2128.213.2.x

Subnet 3128.213.3.x

Page 23: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

23Netprog: TCP/IP

SubnettingSubnetting

• Subnets can simplify routing.

• IP subnet broadcasts have a hostID of all 1s.

• It is possible to have a single wire network with multiple subnets.

Page 24: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

24Netprog: TCP/IP

Mapping IP Addresses to Mapping IP Addresses to Hardware AddressesHardware Addresses• IP Addresses are not recognized

by hardware.

• If we know the IP address of a host, how do we find out the hardware address ?

• The process of finding the hardware address of a host given the IP address is called

Address ResolutionAddress Resolution

Page 25: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

25Netprog: TCP/IP

Reverse Address ResolutionReverse Address Resolution

• The process of finding out the IP address of a host given a hardware address is called

Reverse Address ResolutionReverse Address Resolution

• Reverse address resolution is needed by diskless workstations when booting (which used to be quite common).

Page 26: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

26Netprog: TCP/IP

ARPARP

• The Address Resolution Protocol is used by a sending host when it knows the IP address of the destination but needs the Ethernet (or whatever) address.

• ARP is a broadcast protocol - every host on the network receives the request.

• Each host checks the request against it’s IP address - the right one responds.

Arp Arp!

Page 27: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

27Netprog: TCP/IP

ARP (cont.)ARP (cont.)

• ARP does not need to be done every time an IP datagram is sent - hosts remember the hardware addresses of each other.

• Part of the ARP protocol specifies that the receiving host should also remember the IP and hardware addresses of the sending host.

Page 28: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

28Netprog: TCP/IP

ARP conversationARP conversation

HEY - Everyone please listen! Will 128.213.1.5 please send me his/her Ethernet address?

not me

Hi Green! I’m 128.213.1.5, and my Ethernet address is 87:A2:15:35:02:C3

Page 29: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

29Netprog: TCP/IP

RARP conversationRARP conversationHEY - Everyone please listen! My Ethernet address is 22:BC:66:17:01:75.Does anyone know my IP address ?

Hi Green! Your IP address is 128.213.1.17.

not me

Page 30: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

30Netprog: TCP/IP

Services provided by IPServices provided by IP

• Connectionless Delivery (each datagram is treated individually).

• Unreliable (delivery is not guaranteed).

• Fragmentation / Reassembly (based on hardware MTU).

• Routing.

• Error detection.

Page 31: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

31Netprog: TCP/IP

IP DatagramIP Datagram

VERS HL

Fragment Offset

Fragment LengthService

Datagram ID FLAG

TTL Protocol Header Checksum

Source Address

Destination Address

Options (if any)

Data

1 byte1 byte 1 byte 1 byte

Page 32: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

32Netprog: TCP/IP

IP Datagram FragmentationIP Datagram Fragmentation

• Each fragment (packet) has the same structure as the IP datagram.

• IP specifies that datagram reassembly is done only at the destination (not on a hop-by-hop basis).

• If any of the fragments are lost - the entire datagram is discarded (and an ICMP message is sent to the sender).

Page 33: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

33Netprog: TCP/IP

IP Flow Control & Error IP Flow Control & Error DetectionDetection• If packets arrive too fast - the

receiver discards excessive packets and sends an ICMP message to the sender (SOURCE QUENCH).

• If an error is found (header checksum problem) the packet is discarded and an ICMP message is sent to the sender.

Page 34: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

34Netprog: TCP/IP

ICMPICMPInternet Control Message ProtocolInternet Control Message Protocol

• ICMP is a protocol used for exchanging control messages.

• ICMP uses IP to deliver messages.

• ICMP messages are usually generated and processed by the IP software, not the user process.

Page 35: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

35Netprog: TCP/IP

ICMP Message TypesICMP Message Types

• Echo Request

• Echo Response

• Destination Unreachable

• Redirect

• Time Exceeded

• Redirect (route change)

• there are more ...

Page 36: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

36Netprog: TCP/IP

IP/BYE-BYEIP/BYE-BYE

• IP/BYE-BYE is a lecture protocol used to signal the class that we have just finished our discussion of IP - the network layer of TCP/IP.

• The appropriate response to an IP/BYE-BYE request is immediate applause, although simply opening your eyes is enough (known as a WAKEUP response).

Page 37: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

37Netprog: TCP/IP

Transport Layer & TCP/IPTransport Layer & TCP/IP

Q: We know that IP is the network layer - so TCP must be the transport layer, right ?

A: No… well, almost.

TCP is only part of the TCP/IP transport layer - the other part is UDP (User Datagram Protocol).

Page 38: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

38Netprog: TCP/IP

TCP UDP

IP

802.3

Process Layer

Transport Layer

Network Layer

Data-Link Layer

Process Process

ICMP, ARP &

RARP

Page 39: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

39Netprog: TCP/IP

UDP User Datagram ProtocolUDP User Datagram Protocol

• UDP is a transport protocol

• communication between processes

• UDP uses IP to deliver datagrams to the right host.

• UDP uses ports to provide communication services to individual processes.

Page 40: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

40Netprog: TCP/IP

PortsPorts

• TCP/IP uses an abstract destination point called a protocol port.

• Ports are identified by a positive integer.

• Operating systems provide some mechanism that processes use to specify a port.

Ports spelled backwards is strop ...Coincidence? (I think not!)

Page 41: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

41Netprog: TCP/IP

PortsPortsHost AHost A Host BHost B

Process

Process

Process

Process

Process

Process

Page 42: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

42Netprog: TCP/IP

UDPUDP

• Datagram Delivery

• Connectionless

• Unreliable

• MinimalSource Port Destination Port

Length Checksum

Data

UDP Datagram FormatUDP Datagram Format

The term datagram is also used to describe the unit of transfer of UDP!

Page 43: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

43Netprog: TCP/IP

TCPTCPTransmission Control ProtocolTransmission Control Protocol

• TCP is an alternative transport layer protocol supported by TCP/IP.

• TCP provides:

•Connection-oriented

•Reliable

•Full-duplex

•Byte-Stream

Page 44: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

44Netprog: TCP/IP

Connection-OrientedConnection-Oriented

• Connection oriented means that a virtual connection is established before any user data is transferred.

• If the connection cannot be established - the user program is notified (finds out).

• If the connection is ever interrupted - the user program(s) is finds out there is a problem.

Page 45: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

45Netprog: TCP/IP

ReliableReliable

• Reliable means that every transmission of data is acknowledged by the receiver.

• If the sender does not receive acknowledgement within a specified amount of time, the sender retransmits the data.

Reliable does not mean that things don't go wrong, it means that we find out when things go wrong.

Page 46: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

46Netprog: TCP/IP

Byte StreamByte Stream

• Stream means that the connection is treated as a stream of bytes.

• The user application does not need to package data in individual datagrams (as with UDP).Somebody needs to do this since IP is delivering

all the data, it's just that the application layer doesn't need to do this!

Page 47: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

47Netprog: TCP/IP

BufferingBuffering

• TCP is responsible for buffering data and determining when it is time to send a datagram.

• It is possible for an application to tell TCP to send the data it has buffered without waiting for a buffer to fill up.

Page 48: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

48Netprog: TCP/IP

Full DuplexFull Duplex

• TCP provides transfer in both directions (over a single virtual connection).

• To the application program these appear as 2 unrelated data streams, although TCP can piggyback control and data communication by providing control information (such as an ACK) along with user data.

Page 49: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

49Netprog: TCP/IP

TCP PortsTCP Ports

• Interprocess communication via TCP is achieved with the use of ports (just like UDP).

• UDP ports have no relation to TCP ports (different name spaces).

Page 50: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

50Netprog: TCP/IP

TCP SegmentsTCP Segments

• The chunk of data that TCP asks IP to deliver is called a TCP segment.

• Each segment contains:

• data bytes from the byte stream

• control information that identifies the data bytes

Page 51: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

51Netprog: TCP/IP

TCP Segment Format TCP Segment Format

Destination Port

Options (if any)

Data

1 byte 1 byte

Source Port

Sequence Number

Request Number

1 byte 1 byte

offset Reser. Control Window

Checksum Urgent Pointer

Page 52: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

52Netprog: TCP/IP

Addressing in TCP/IPAddressing in TCP/IP

• Each TCP/IP address includes:

• Internet Address

• Protocol (UDP or TCP)

• Port Number

NOTE: TCP/IP is a protocol suite that includes IP, TCP and UDP.

Page 53: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

53Netprog: TCP/IP

TCP vs. UDPTCP vs. UDPQ: Which protocol is better ?Q: Which protocol is better ?

A: It depends on the application.A: It depends on the application.

TCP provides a connection-oriented, reliable, TCP provides a connection-oriented, reliable, byte stream service (lots of overhead).byte stream service (lots of overhead).

UDP offers minimal datagram delivery service UDP offers minimal datagram delivery service (as little overhead as possible).(as little overhead as possible).

Page 54: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

54Netprog: TCP/IP

TCP/IP SummaryTCP/IP Summary

• IP: network layer protocol• unreliable datagram delivery between

hosts.

• UDP: transport layer protocol• unreliable datagram delivery between

processes.

• TCP: transport layer protocol• reliable, byte-stream delivery

between processes.

Page 55: 1 Netprog: TCP/IP TCP/IP Transmission Control Protocol / Internet Protocol

55Netprog: TCP/IP

Hmmmmm. TCP or UDP ?Hmmmmm. TCP or UDP ?

• Electronic commerce?

• Video server?

• File transfer?

• Email ?

• Chat groups?

• Robotic surgery controlled remotely over a network?