+ All Categories
Home > Documents > Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is...

Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is...

Date post: 03-Aug-2020
Category:
Upload: others
View: 0 times
Download: 0 times
Share this document with a friend
45
1 Netprog 2002 TCP/IP Netprog 2002 TCP/IP IP IP Internet Protocol Internet Protocol Based on notes from D. Hollinger
Transcript
Page 1: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

1Netprog 2002 TCP/IPNetprog 2002 TCP/IP

IPIPInternet ProtocolInternet Protocol

Based on notes from D. Hollinger

Page 2: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

2Netprog 2002 TCP/IPNetprog 2002 TCP/IP

Recall the OSI Model:Recall the OSI Model:

7 Application6 Presentation5 Session4 Transport3 Network2 Data-Link1 Physical

High level protocols

Low level protocols

Page 3: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

3Netprog 2002 TCP/IPNetprog 2002 TCP/IP

TCPTCP UDPUDP

IPIP

802.3802.3

Process Layer

Transport Layer

Network Layer

Data-Link Layer

ProcessProcess ProcessProcess

ICMP, ARP &

RARP

Page 4: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

4Netprog 2002 TCP/IPNetprog 2002 TCP/IP

IP & OSIIP & OSI

• In OSI reference model terminology -the IP protocol covers the network layer.

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

Page 5: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

5Netprog 2002 TCP/IPNetprog 2002 TCP/IP

But First ...But First ...

Page 6: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

6Netprog 2002 TCP/IPNetprog 2002 TCP/IP

Ethernet Ethernet -- A Real DataA Real Data--Link LayerLink 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 7: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

7Netprog 2002 TCP/IPNetprog 2002 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 8: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

8Netprog 2002 TCP/IPNetprog 2002 TCP/IP

CSMA/CDCSMA/CDCarrier 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 9: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

9Netprog 2002 TCP/IPNetprog 2002 TCP/IP

An Ethernet FrameAn Ethernet Frame

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

• CRC is Cyclic Redundancy Check

8 bytes 6 6 2 0-1500 4

Preamble DestinationAddress

SourceAddress Len CRCDATA

Page 10: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

10Netprog 2002 TCP/IPNetprog 2002 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 11: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

11Netprog 2002 TCP/IPNetprog 2002 TCP/IP

Back to Back to IPIP

Page 12: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

12Netprog 2002 TCP/IPNetprog 2002 TCP/IP

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

• IP is the network layer• packet delivery service (host-to-host).• translation between different data-link

protocols.

Page 13: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

13Netprog 2002 TCP/IPNetprog 2002 TCP/IP

IPIP DatagramsDatagrams

• 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 at all.

Page 14: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

14Netprog 2002 TCP/IPNetprog 2002 TCP/IP

IP AddressesIP Addresses

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

Why ?Why ?

Rens

sela

er

Page 15: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

15Netprog 2002 TCP/IPNetprog 2002 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 makes routing feasible.

Page 16: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

16Netprog 2002 TCP/IPNetprog 2002 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 (Internet Corporation for Assigned Names and Numbers -- ICANN)

Page 17: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

17Netprog 2002 TCP/IPNetprog 2002 TCP/IP

The The fourfour forformats of IP Addressesmats of IP Addresses

00 NetIDNetID

1010

110110 NetIDNetID

1110 Multicast Group ID

HostIDHostID

NetIDNetID HostIDHostID

HostIDHostID

ClassClassAA

BB

CC

DD8 bits 8 bits 8 bits8 bits

Page 18: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

18Netprog 2002 TCP/IPNetprog 2002 TCP/IP

Class Al128 possible network IDslover 4 million host IDs per network ID

Class AClass Al128 possible network IDslover 4 million host IDs per network ID

Class Bl 16K possible network IDsl 64K host IDs per network ID

Class BClass Bl 16K possible network IDsl 64K host IDs per network ID

Class Cl over 2 million possible network IDsl about 256 host IDs per network ID

Class CClass Cl over 2 million possible network IDsl about 256 host IDs per network ID

Page 19: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

19Netprog 2002 TCP/IPNetprog 2002 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 20: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

20Netprog 2002 TCP/IPNetprog 2002 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.1

10000000 11010101 00000001 00000001

CS has a class B networkCS has a class B network

Page 21: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

21Netprog 2002 TCP/IPNetprog 2002 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 hostaddresses.

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

Page 22: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

22Netprog 2002 TCP/IPNetprog 2002 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 23: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

23Netprog 2002 TCP/IPNetprog 2002 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.

1010 NetIDNetID SubnetIDSubnetID HostIDHostID

Page 24: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

24Netprog 2002 TCP/IPNetprog 2002 TCP/IP

SubnettingSubnettingrouter

Subnet 1128.213.1.x

Subnet 2128.213.2.x

Subnet 3128.213.3.x

Page 25: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

25Netprog 2002 TCP/IPNetprog 2002 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 26: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

26Netprog 2002 TCP/IPNetprog 2002 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 27: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

27Netprog 2002 TCP/IPNetprog 2002 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.

Page 28: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

28Netprog 2002 TCP/IPNetprog 2002 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 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 29: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

29Netprog 2002 TCP/IPNetprog 2002 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 30: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

30Netprog 2002 TCP/IPNetprog 2002 TCP/IP

ARP conversationARP conversationHEY - 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 31: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

31Netprog 2002 TCP/IPNetprog 2002 TCP/IP

RARP conversationRARP conversation

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

not me

Hi Green! Your IP address is 128.213.1.17.

Page 32: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

32Netprog 2002 TCP/IPNetprog 2002 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 33: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

33Netprog 2002 TCP/IPNetprog 2002 TCP/IP

IPIP DatagramDatagram

VERS HLFragment Offset

Fragment LengthServiceDatagram ID FLAG

TTL Protocol Header ChecksumSource Address

Destination AddressOptions (if any)

Data

1 byte1 byte 1 byte 1 byte

Page 34: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

34Netprog 2002 TCP/IPNetprog 2002 TCP/IP

IPIP DatagramDatagram FragmentationFragmentation• 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 35: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

35Netprog 2002 TCP/IPNetprog 2002 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 36: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

36Netprog 2002 TCP/IPNetprog 2002 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 37: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

37Netprog 2002 TCP/IPNetprog 2002 TCP/IP

ICMP Message TypesICMP Message Types• Echo Request• Echo Response• Destination Unreachable• Redirect• Time Exceeded• Redirect (route change)• there are more ...

Page 38: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

38Netprog 2002 TCP/IPNetprog 2002 TCP/IP

IP/BYEIP/BYE--BYEBYE

• 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 UDP/IP and 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 39: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

39Netprog 2002 TCP/IPNetprog 2002 TCP/IP

UDP User UDP User Datagram Datagram ProtocolProtocol

• UDP is a transport-layer protocol• communication between processes

• UDP uses IP to deliver datagramsto the right host.

Page 40: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

40Netprog 2002 TCP/IPNetprog 2002 TCP/IP

PortsPorts

• UDP/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.

Page 41: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

41Netprog 2002 TCP/IPNetprog 2002 TCP/IP

PortsPortsHost AHost A Host BHost B

Process

Process

Process

Process

Process

Process

Page 42: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

42Netprog 2002 TCP/IPNetprog 2002 TCP/IP

UDPUDP• Datagram Delivery• Connectionless• Unreliable• Minimal

Source Port Destination Port

Length Checksum

Data

UDPUDP DatagramDatagram FormatFormat

Page 43: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

43Netprog 2002 TCP/IPNetprog 2002 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: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

44Netprog 2002 TCP/IPNetprog 2002 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 connectionTCP provides a connection--oriented, reliable oriented, reliable byte stream service (lots of overhead).byte stream service (lots of overhead).

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

Page 45: Internet Protocol Based on notes from D. Hollinger · Internet Control Message Protocol • ICMP is a protocol used for exchanging control messages. • ICMP uses IP to deliver messages.

45Netprog 2002 TCP/IPNetprog 2002 TCP/IP

HmmmmmHmmmmm. TCP or UDP ?. TCP or UDP ?

• Internet commerce ?• Video server?• File transfer?• Email ?• Chat groups?• Robotic surgery controlled remotely

over a network?


Recommended