SlideShare una empresa de Scribd logo
1 de 18
Internet Protocol
Orientation
• IP (Internet Protocol) is a Network Layer
  Protocol.
• IP’s current version is Version 4 (IPv4). It is
  specified in RFC 891.
• IP is the highest layer protocol which is
  implemented at both routers and hosts


                                                    2
IP: The waist of the hourglass

• IP is the waist of the hourglass     Applications

  of the Internet protocol           HTTP FTP SMTP
  architecture                          TCP UDP
• Multiple higher-layer protocols
• Multiple lower-layer protocols            IP

• Only one protocol at the
  network layer.                      Data link layer
                                        protocols

                                      Physical layer
                                        protocols

                                                        3
IP Service
• Delivery service of IP is minimal

• IP provide provides an unreliable connectionless best effort service (also
  called: “datagram service”).
   – Unreliable: IP does not make an attempt to recover lost packets
   – Connectionless: Each packet (“datagram”) is handled independently. IP is
      not aware that packets between hosts may be sent in a logical sequence
   – Best effort: IP does not make guarantees on the service (no throughput
      guarantee, no delay guarantee,…)
• Consequences:

• Higher layer protocols have to deal with losses or with
  duplicate packets

•   Packets may be delivered out-of-sequence
IP Service
•   IP supports the following services:
          • one-to-one                      (unicast)
          • one-to-all                      (broadcast)
          • one-to-several                  (multicast)
•   IP multicast also supports a many-to-many service.
•   IP multicast requires support of other protocols (IGMP, multicast routing)




       unicast
                               broadcast                         multicast
                                                                                 5
IP Datagram Format
     bit # 0                        7 8                  15 16                     23   24            31
                          header
               version                       DS         ECN                 total length (in bytes)
                          length
                                                                  D M
                            Identification                    0                    Fragment offset
                                                                  F F
               time-to-live (TTL)            protocol                        header checksum

                                                    source IP address

                                                  destination IP address

                                                  options (0 to 40 bytes)


                                                         payload


                                                          4 bytes

•   20 bytes ≤ Header Size < 24 x 4 bytes = 60 bytes
•   20 bytes ≤ Total Length < 216 bytes = 65536 bytes
                                                                                                           6
IP Datagram Format
• Question: In which order are the bytes of an IP datagram
  transmitted?
• Answer:
        • Transmission is row by row
        • For each row:
                1. First transmit bits 0-7
                2. Then transmit bits 8-15
                3. Then transmit bits 16-23
                4. Then transmit bits 24-31
• This is called network byte order or big endian byte ordering.
  Note: Many computers (incl. Intel processors) store 32-bit words
  in little endian format. Others (incl. Motorola processors) use big
  endian.
                                                                        7
Big endian vs. small endian
    • Conventions to store a multi-byte work
    • Example: a 4 byte Long Integer       Byte3 Byte2 Byte1 Byte0

                   Little Endian                                  Big Endian
•   Stores the low-order byte at the lowest     •   Stores the high-order byte at the lowest
    address and the highest order byte in the       address, and the low-order byte at the
    highest address.                                highest address.
    Base Address+0 Byte0                            Base Address+0 Byte3
    Base Address+1 Byte1                            Base Address+1 Byte2
    Base Address+2 Byte2                            Base Address+2 Byte1
    Base Address+3 Byte3                            Base Address+3 Byte0

•   Intel processors use this order             Motorola processors use big endian.




                                                                                           8
Fields of the IP Header
• Version (4 bits): current version is 4, next version will be 6.
• Header length (4 bits): length of IP header, in multiples of 4 bytes
• DS/ECN field (1 byte)
   – This field was previously called as Type-of-Service (TOS) field. The role of
     this field has been re-defined, but is “backwards compatible” to TOS
     interpretation
   – Differentiated Service (DS) (6 bits):
       • Used to specify service level (currently not supported in the Internet)
   – Explicit Congestion Notification (ECN) (2 bits):
       • New feedback mechanism used by TCP


                                                                                9
Fields of the IP Header
• Identification (16 bits): Unique identification of a datagram from
  a host. Incremented whenever a datagram is transmitted

• Flags (3 bits):
   – First bit always set to 0
   – DF bit (Do not fragment)
   – MF bit (More fragments)
   Will be explained later Fragmentation



                                                                  10
Fields of the IP Header

• Time To Live (TTL) (1 byte):
   – Specifies longest paths before datagram        is dropped
   – Role of TTL field: Ensure that packet is eventually dropped
     when a routing loop occurs
   Used as follows:
   – Sender sets the value (e.g., 64)
   – Each router decrements the value by 1
   – When the value reaches 0, the datagram is dropped



                                                                   11
Fields of the IP Header
• Protocol (1 byte):
      • Specifies the higher-layer protocol.
      • Used for demultiplexing to higher layers.
• Header checksum (2 bytes): A simple 16-bit long
  checksum which is computed for the header of the
  datagram.



                                                     12
Fields of the IP Header
•   Options:
         • Security restrictions
         • Record Route: each router that processes the packet adds its IP address to
           the header.
         • Timestamp: each router that processes the packet adds its IP address and
           time to the header.
         • (loose) Source Routing: specifies a list of routers that must be traversed.
         • (strict) Source Routing: specifies a list of the only routers that can be
           traversed.
•   Padding: Padding bytes are added to ensure that header ends on a 4-byte
    boundary



                                                                                         13
Maximum Transmission Unit
•   Maximum size of IP datagram is 65535, but the data link layer protocol generally
    imposes a limit that is much smaller
•   Example:
     – Ethernet frames have a maximum payload of 1500 bytes
         IP datagrams encapsulated in Ethernet frame cannot be longer than 1500 bytes
•   The limit on the maximum IP datagram size, imposed by the data link protocol is called
    maximum transmission unit (MTU)



• MTUs for various data link protocols:
  Ethernet:    1500                 FDDI:    4352
  802.3:       1492                 ATM AAL5: 9180
  802.5:       4464                 PPP:     negotiated
                                                                                             14
IP Fragmentation
• What if the size of an IP datagram exceeds the MTU?
  IP datagram is fragmented into smaller units.

• What if the route contains networks with different MTUs?
                                          Ethernet
              FDDI
              Ring
  Host A                   Router                           Host B
MTUs:      FDDI: 4352                Ethernet: 1500

• Fragmentation:
    • IP router splits the datagram into several datagram
    • Fragments are reassembled at receiver                          15
Where is Fragmentation done?

Fragmentation can be done at the sender or at
intermediate routers
The same datagram can be fragmented several
times.
Reassembly of original datagram is only done at
destination hosts !!

IP datagram   H              Fragment 2   H2   Fragment 1   H1




                  Router
                                                                 16
What’s involved in
                        Fragmentation?
  • The following fields in the IP header are involved:




Identification        When a datagram is fragmented, the
                      identification is the same in all fragments
Flags
        DF bit is set: Datagram cannot be fragmented and must
                be discarded if MTU is too small
        MF bit set:     This datagram is part of a fragment and an
                additional fragment follows this one
                                                                     17
What’s involved in
                     Fragmentation?
       • The following fields in the IP header are involved:




Fragment offset    Offset of the payload of the current
                   fragment in the original datagram
Total length       Total length of the current fragment
                                                               18

Más contenido relacionado

La actualidad más candente

Internet protocol concepts and overview
Internet protocol concepts and overviewInternet protocol concepts and overview
Internet protocol concepts and overviewAGhaKhan01
 
Internet protocol (ip)
Internet protocol (ip)Internet protocol (ip)
Internet protocol (ip)junnubabu
 
"Internet Protocol Suite" prepared by Szymon M. from Poland
"Internet Protocol Suite" prepared by Szymon M. from Poland"Internet Protocol Suite" prepared by Szymon M. from Poland
"Internet Protocol Suite" prepared by Szymon M. from Polandirenazd
 
TCP/IP Protocol Architeture
TCP/IP Protocol ArchitetureTCP/IP Protocol Architeture
TCP/IP Protocol ArchitetureManoj Kumar
 
IP ADDRESSING AND SUBNETTING REPORT
IP ADDRESSING AND SUBNETTING  REPORTIP ADDRESSING AND SUBNETTING  REPORT
IP ADDRESSING AND SUBNETTING REPORTRajat Kumar
 
Basic Understanding about TCP/IP Addressing system
Basic Understanding about TCP/IP Addressing systemBasic Understanding about TCP/IP Addressing system
Basic Understanding about TCP/IP Addressing systemBharathKumarRaju DasaraRaju
 
Internet protocols Report Slides
Internet protocols Report SlidesInternet protocols Report Slides
Internet protocols Report SlidesBassam Kanber
 
ip addressing & routing
 ip addressing & routing ip addressing & routing
ip addressing & routingVikas Jagtap
 
Loopback address
Loopback addressLoopback address
Loopback addressCEC Landran
 

La actualidad más candente (20)

Ipv4 and Ipv6
Ipv4 and Ipv6Ipv4 and Ipv6
Ipv4 and Ipv6
 
Internet protocol concepts and overview
Internet protocol concepts and overviewInternet protocol concepts and overview
Internet protocol concepts and overview
 
Internet protocol (ip)
Internet protocol (ip)Internet protocol (ip)
Internet protocol (ip)
 
Tcp
TcpTcp
Tcp
 
"Internet Protocol Suite" prepared by Szymon M. from Poland
"Internet Protocol Suite" prepared by Szymon M. from Poland"Internet Protocol Suite" prepared by Szymon M. from Poland
"Internet Protocol Suite" prepared by Szymon M. from Poland
 
TCP/IP Protocol Architeture
TCP/IP Protocol ArchitetureTCP/IP Protocol Architeture
TCP/IP Protocol Architeture
 
IP ADDRESSING AND SUBNETTING REPORT
IP ADDRESSING AND SUBNETTING  REPORTIP ADDRESSING AND SUBNETTING  REPORT
IP ADDRESSING AND SUBNETTING REPORT
 
Basic Understanding about TCP/IP Addressing system
Basic Understanding about TCP/IP Addressing systemBasic Understanding about TCP/IP Addressing system
Basic Understanding about TCP/IP Addressing system
 
TCP/IP Basics
TCP/IP BasicsTCP/IP Basics
TCP/IP Basics
 
Ipv4 header
Ipv4 headerIpv4 header
Ipv4 header
 
TCP IP Addressing
TCP IP AddressingTCP IP Addressing
TCP IP Addressing
 
TCP/IP Basics
TCP/IP BasicsTCP/IP Basics
TCP/IP Basics
 
Internet protocols Report Slides
Internet protocols Report SlidesInternet protocols Report Slides
Internet protocols Report Slides
 
Internet Protocol
Internet ProtocolInternet Protocol
Internet Protocol
 
More on Tcp/Ip
More on Tcp/IpMore on Tcp/Ip
More on Tcp/Ip
 
ip addressing & routing
 ip addressing & routing ip addressing & routing
ip addressing & routing
 
The Internet Protocol version 4 (IPv4)
The Internet Protocol version 4 (IPv4)The Internet Protocol version 4 (IPv4)
The Internet Protocol version 4 (IPv4)
 
Loopback address
Loopback addressLoopback address
Loopback address
 
IP Address
IP AddressIP Address
IP Address
 
Network layer logical addressing
Network layer logical addressingNetwork layer logical addressing
Network layer logical addressing
 

Destacado

Internet protocol (ip) ppt
Internet protocol (ip) pptInternet protocol (ip) ppt
Internet protocol (ip) pptDulith Kasun
 
NETWORK PROTOCOL
NETWORK PROTOCOLNETWORK PROTOCOL
NETWORK PROTOCOLKak Yong
 
Network protocols
Network protocolsNetwork protocols
Network protocolsHemnath R.
 
TCP/IP Network ppt
TCP/IP Network pptTCP/IP Network ppt
TCP/IP Network pptextraganesh
 
Network protocol
Network protocolNetwork protocol
Network protocolOnline
 
Osi model vs TCP/IP
Osi model vs TCP/IPOsi model vs TCP/IP
Osi model vs TCP/IPMannu Khani
 
Components of computers
Components of computersComponents of computers
Components of computersOnline
 
Types of computers grade1
Types of computers  grade1Types of computers  grade1
Types of computers grade1LinaHamwi93
 
Internet protocol (IP) / Transmission Protocol
Internet protocol (IP) / Transmission ProtocolInternet protocol (IP) / Transmission Protocol
Internet protocol (IP) / Transmission ProtocolVR Talsaniya
 
Physical GEOG: Chapter 9 - Types of Nat Veg
Physical GEOG: Chapter 9 - Types of Nat VegPhysical GEOG: Chapter 9 - Types of Nat Veg
Physical GEOG: Chapter 9 - Types of Nat VegSofian Muhd
 
Types and components of computers
Types and components of computersTypes and components of computers
Types and components of computersCik Na Shohaili
 
Internet Protocols
Internet ProtocolsInternet Protocols
Internet ProtocolsMohamed Daif
 

Destacado (20)

Internet Protocols
Internet ProtocolsInternet Protocols
Internet Protocols
 
Internet protocol (ip) ppt
Internet protocol (ip) pptInternet protocol (ip) ppt
Internet protocol (ip) ppt
 
NETWORK PROTOCOL
NETWORK PROTOCOLNETWORK PROTOCOL
NETWORK PROTOCOL
 
Chapter 20: Internet Protocol
Chapter 20: Internet ProtocolChapter 20: Internet Protocol
Chapter 20: Internet Protocol
 
Ip address
Ip addressIp address
Ip address
 
Network protocols
Network protocolsNetwork protocols
Network protocols
 
TCP/IP Network ppt
TCP/IP Network pptTCP/IP Network ppt
TCP/IP Network ppt
 
Network protocol
Network protocolNetwork protocol
Network protocol
 
Ip address and subnetting
Ip address and subnettingIp address and subnetting
Ip address and subnetting
 
Osi model vs TCP/IP
Osi model vs TCP/IPOsi model vs TCP/IP
Osi model vs TCP/IP
 
Protocols
ProtocolsProtocols
Protocols
 
Components of computers
Components of computersComponents of computers
Components of computers
 
Types of computers grade1
Types of computers  grade1Types of computers  grade1
Types of computers grade1
 
Internet Protocol (IP)
Internet Protocol (IP)Internet Protocol (IP)
Internet Protocol (IP)
 
Internet protocol (IP) / Transmission Protocol
Internet protocol (IP) / Transmission ProtocolInternet protocol (IP) / Transmission Protocol
Internet protocol (IP) / Transmission Protocol
 
Physical GEOG: Chapter 9 - Types of Nat Veg
Physical GEOG: Chapter 9 - Types of Nat VegPhysical GEOG: Chapter 9 - Types of Nat Veg
Physical GEOG: Chapter 9 - Types of Nat Veg
 
IPocalypse
IPocalypseIPocalypse
IPocalypse
 
Types and components of computers
Types and components of computersTypes and components of computers
Types and components of computers
 
Internet Protocols
Internet ProtocolsInternet Protocols
Internet Protocols
 
Types of Computers
Types of ComputersTypes of Computers
Types of Computers
 

Similar a Internet protocol (20)

10 coms 525 tcpip - internet protocol - ip
10   coms 525 tcpip -  internet protocol - ip10   coms 525 tcpip -  internet protocol - ip
10 coms 525 tcpip - internet protocol - ip
 
Tcpip
TcpipTcpip
Tcpip
 
network fundamental
network fundamentalnetwork fundamental
network fundamental
 
Ipspk1
Ipspk1Ipspk1
Ipspk1
 
IP Address
IP AddressIP Address
IP Address
 
Internetworking - IP
Internetworking - IPInternetworking - IP
Internetworking - IP
 
IP Routing.pptx
IP Routing.pptxIP Routing.pptx
IP Routing.pptx
 
Internet Protocol
Internet ProtocolInternet Protocol
Internet Protocol
 
lecture08.ppt
lecture08.pptlecture08.ppt
lecture08.ppt
 
Networking essentials lect2
Networking essentials lect2Networking essentials lect2
Networking essentials lect2
 
Internet Protocol Version 4
Internet Protocol Version 4Internet Protocol Version 4
Internet Protocol Version 4
 
TCP/IP – Transmission Control Protocol/ Internet Protocol
TCP/IP – Transmission Control Protocol/ Internet ProtocolTCP/IP – Transmission Control Protocol/ Internet Protocol
TCP/IP – Transmission Control Protocol/ Internet Protocol
 
Ip address concepts
Ip address conceptsIp address concepts
Ip address concepts
 
ITFT - IP adressing
 ITFT - IP adressing ITFT - IP adressing
ITFT - IP adressing
 
Ip and icmp
Ip and icmpIp and icmp
Ip and icmp
 
I pv4 format
I pv4 formatI pv4 format
I pv4 format
 
Spanning Tree Protocol
Spanning Tree ProtocolSpanning Tree Protocol
Spanning Tree Protocol
 
IPv6 The Big Move
IPv6 The Big MoveIPv6 The Big Move
IPv6 The Big Move
 
Clase 1 Direccionamiento IPv4.pdf
Clase 1 Direccionamiento IPv4.pdfClase 1 Direccionamiento IPv4.pdf
Clase 1 Direccionamiento IPv4.pdf
 
WIFI MODEM Part-22
WIFI MODEM Part-22WIFI MODEM Part-22
WIFI MODEM Part-22
 

Más de Online

Philosophy of early childhood education 3
Philosophy of early childhood education 3Philosophy of early childhood education 3
Philosophy of early childhood education 3Online
 
Philosophy of early childhood education 2
Philosophy of early childhood education 2Philosophy of early childhood education 2
Philosophy of early childhood education 2Online
 
Philosophy of early childhood education 1
Philosophy of early childhood education 1Philosophy of early childhood education 1
Philosophy of early childhood education 1Online
 
Philosophy of early childhood education 4
Philosophy of early childhood education 4Philosophy of early childhood education 4
Philosophy of early childhood education 4Online
 
Operation and expression in c++
Operation and expression in c++Operation and expression in c++
Operation and expression in c++Online
 
Functions
FunctionsFunctions
FunctionsOnline
 
Formatted input and output
Formatted input and outputFormatted input and output
Formatted input and outputOnline
 
Control structures selection
Control structures   selectionControl structures   selection
Control structures selectionOnline
 
Control structures repetition
Control structures   repetitionControl structures   repetition
Control structures repetitionOnline
 
Introduction to problem solving in c++
Introduction to problem solving in c++Introduction to problem solving in c++
Introduction to problem solving in c++Online
 
Optical transmission technique
Optical transmission techniqueOptical transmission technique
Optical transmission techniqueOnline
 
Multi protocol label switching (mpls)
Multi protocol label switching (mpls)Multi protocol label switching (mpls)
Multi protocol label switching (mpls)Online
 
Lan technologies
Lan technologiesLan technologies
Lan technologiesOnline
 
Introduction to internet technology
Introduction to internet technologyIntroduction to internet technology
Introduction to internet technologyOnline
 
Internet standard routing protocols
Internet standard routing protocolsInternet standard routing protocols
Internet standard routing protocolsOnline
 
Application protocols
Application protocolsApplication protocols
Application protocolsOnline
 
Addressing
AddressingAddressing
AddressingOnline
 
Transport protocols
Transport protocolsTransport protocols
Transport protocolsOnline
 
Leadership
LeadershipLeadership
LeadershipOnline
 
Introduction to management
Introduction to managementIntroduction to management
Introduction to managementOnline
 

Más de Online (20)

Philosophy of early childhood education 3
Philosophy of early childhood education 3Philosophy of early childhood education 3
Philosophy of early childhood education 3
 
Philosophy of early childhood education 2
Philosophy of early childhood education 2Philosophy of early childhood education 2
Philosophy of early childhood education 2
 
Philosophy of early childhood education 1
Philosophy of early childhood education 1Philosophy of early childhood education 1
Philosophy of early childhood education 1
 
Philosophy of early childhood education 4
Philosophy of early childhood education 4Philosophy of early childhood education 4
Philosophy of early childhood education 4
 
Operation and expression in c++
Operation and expression in c++Operation and expression in c++
Operation and expression in c++
 
Functions
FunctionsFunctions
Functions
 
Formatted input and output
Formatted input and outputFormatted input and output
Formatted input and output
 
Control structures selection
Control structures   selectionControl structures   selection
Control structures selection
 
Control structures repetition
Control structures   repetitionControl structures   repetition
Control structures repetition
 
Introduction to problem solving in c++
Introduction to problem solving in c++Introduction to problem solving in c++
Introduction to problem solving in c++
 
Optical transmission technique
Optical transmission techniqueOptical transmission technique
Optical transmission technique
 
Multi protocol label switching (mpls)
Multi protocol label switching (mpls)Multi protocol label switching (mpls)
Multi protocol label switching (mpls)
 
Lan technologies
Lan technologiesLan technologies
Lan technologies
 
Introduction to internet technology
Introduction to internet technologyIntroduction to internet technology
Introduction to internet technology
 
Internet standard routing protocols
Internet standard routing protocolsInternet standard routing protocols
Internet standard routing protocols
 
Application protocols
Application protocolsApplication protocols
Application protocols
 
Addressing
AddressingAddressing
Addressing
 
Transport protocols
Transport protocolsTransport protocols
Transport protocols
 
Leadership
LeadershipLeadership
Leadership
 
Introduction to management
Introduction to managementIntroduction to management
Introduction to management
 

Último

Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 

Último (20)

Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 

Internet protocol

  • 2. Orientation • IP (Internet Protocol) is a Network Layer Protocol. • IP’s current version is Version 4 (IPv4). It is specified in RFC 891. • IP is the highest layer protocol which is implemented at both routers and hosts 2
  • 3. IP: The waist of the hourglass • IP is the waist of the hourglass Applications of the Internet protocol HTTP FTP SMTP architecture TCP UDP • Multiple higher-layer protocols • Multiple lower-layer protocols IP • Only one protocol at the network layer. Data link layer protocols Physical layer protocols 3
  • 4. IP Service • Delivery service of IP is minimal • IP provide provides an unreliable connectionless best effort service (also called: “datagram service”). – Unreliable: IP does not make an attempt to recover lost packets – Connectionless: Each packet (“datagram”) is handled independently. IP is not aware that packets between hosts may be sent in a logical sequence – Best effort: IP does not make guarantees on the service (no throughput guarantee, no delay guarantee,…) • Consequences: • Higher layer protocols have to deal with losses or with duplicate packets • Packets may be delivered out-of-sequence
  • 5. IP Service • IP supports the following services: • one-to-one (unicast) • one-to-all (broadcast) • one-to-several (multicast) • IP multicast also supports a many-to-many service. • IP multicast requires support of other protocols (IGMP, multicast routing) unicast broadcast multicast 5
  • 6. IP Datagram Format bit # 0 7 8 15 16 23 24 31 header version DS ECN total length (in bytes) length D M Identification 0 Fragment offset F F time-to-live (TTL) protocol header checksum source IP address destination IP address options (0 to 40 bytes) payload 4 bytes • 20 bytes ≤ Header Size < 24 x 4 bytes = 60 bytes • 20 bytes ≤ Total Length < 216 bytes = 65536 bytes 6
  • 7. IP Datagram Format • Question: In which order are the bytes of an IP datagram transmitted? • Answer: • Transmission is row by row • For each row: 1. First transmit bits 0-7 2. Then transmit bits 8-15 3. Then transmit bits 16-23 4. Then transmit bits 24-31 • This is called network byte order or big endian byte ordering. Note: Many computers (incl. Intel processors) store 32-bit words in little endian format. Others (incl. Motorola processors) use big endian. 7
  • 8. Big endian vs. small endian • Conventions to store a multi-byte work • Example: a 4 byte Long Integer Byte3 Byte2 Byte1 Byte0 Little Endian Big Endian • Stores the low-order byte at the lowest • Stores the high-order byte at the lowest address and the highest order byte in the address, and the low-order byte at the highest address. highest address. Base Address+0 Byte0 Base Address+0 Byte3 Base Address+1 Byte1 Base Address+1 Byte2 Base Address+2 Byte2 Base Address+2 Byte1 Base Address+3 Byte3 Base Address+3 Byte0 • Intel processors use this order Motorola processors use big endian. 8
  • 9. Fields of the IP Header • Version (4 bits): current version is 4, next version will be 6. • Header length (4 bits): length of IP header, in multiples of 4 bytes • DS/ECN field (1 byte) – This field was previously called as Type-of-Service (TOS) field. The role of this field has been re-defined, but is “backwards compatible” to TOS interpretation – Differentiated Service (DS) (6 bits): • Used to specify service level (currently not supported in the Internet) – Explicit Congestion Notification (ECN) (2 bits): • New feedback mechanism used by TCP 9
  • 10. Fields of the IP Header • Identification (16 bits): Unique identification of a datagram from a host. Incremented whenever a datagram is transmitted • Flags (3 bits): – First bit always set to 0 – DF bit (Do not fragment) – MF bit (More fragments) Will be explained later Fragmentation 10
  • 11. Fields of the IP Header • Time To Live (TTL) (1 byte): – Specifies longest paths before datagram is dropped – Role of TTL field: Ensure that packet is eventually dropped when a routing loop occurs Used as follows: – Sender sets the value (e.g., 64) – Each router decrements the value by 1 – When the value reaches 0, the datagram is dropped 11
  • 12. Fields of the IP Header • Protocol (1 byte): • Specifies the higher-layer protocol. • Used for demultiplexing to higher layers. • Header checksum (2 bytes): A simple 16-bit long checksum which is computed for the header of the datagram. 12
  • 13. Fields of the IP Header • Options: • Security restrictions • Record Route: each router that processes the packet adds its IP address to the header. • Timestamp: each router that processes the packet adds its IP address and time to the header. • (loose) Source Routing: specifies a list of routers that must be traversed. • (strict) Source Routing: specifies a list of the only routers that can be traversed. • Padding: Padding bytes are added to ensure that header ends on a 4-byte boundary 13
  • 14. Maximum Transmission Unit • Maximum size of IP datagram is 65535, but the data link layer protocol generally imposes a limit that is much smaller • Example: – Ethernet frames have a maximum payload of 1500 bytes  IP datagrams encapsulated in Ethernet frame cannot be longer than 1500 bytes • The limit on the maximum IP datagram size, imposed by the data link protocol is called maximum transmission unit (MTU) • MTUs for various data link protocols: Ethernet: 1500 FDDI: 4352 802.3: 1492 ATM AAL5: 9180 802.5: 4464 PPP: negotiated 14
  • 15. IP Fragmentation • What if the size of an IP datagram exceeds the MTU? IP datagram is fragmented into smaller units. • What if the route contains networks with different MTUs? Ethernet FDDI Ring Host A Router Host B MTUs: FDDI: 4352 Ethernet: 1500 • Fragmentation: • IP router splits the datagram into several datagram • Fragments are reassembled at receiver 15
  • 16. Where is Fragmentation done? Fragmentation can be done at the sender or at intermediate routers The same datagram can be fragmented several times. Reassembly of original datagram is only done at destination hosts !! IP datagram H Fragment 2 H2 Fragment 1 H1 Router 16
  • 17. What’s involved in Fragmentation? • The following fields in the IP header are involved: Identification When a datagram is fragmented, the identification is the same in all fragments Flags DF bit is set: Datagram cannot be fragmented and must be discarded if MTU is too small MF bit set: This datagram is part of a fragment and an additional fragment follows this one 17
  • 18. What’s involved in Fragmentation? • The following fields in the IP header are involved: Fragment offset Offset of the payload of the current fragment in the original datagram Total length Total length of the current fragment 18