1 / 55

Data Communication And Networks

Data Communication And Networks. Lecture 9. Internet Protocol. The network protocol in the Internet is called the Internet Protocol, or more commonly, the IP Protocol. Currently two versions of the IP protocol

elisha
Download Presentation

Data Communication And Networks

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Data Communication And Networks Lecture 9

  2. Internet Protocol • The network protocol in the Internet is called the Internet Protocol, or more commonly, the IP Protocol. • Currently two versions of the IP protocol • The Internet’s network layer consists of IP (handles addressing, packet format), ICMP (for information and error reporting), and routing protocols.

  3. IP Addressing • An IP address is associated with an interface (the boundary between a node and a physical link), not host. It is common for a host/router to have multiple IP addresses. • IP address is a 32-bit ID, which must be globally unique across the Internet. • Written in "dot-decimal notation", • IP addresses are organized into hierarchy, with IANA (Internet Assigned Numbers Authority) controlling the 1st level assignment

  4. 223.1.1.2 223.1.2.2 223.1.2.1 223.1.3.2 223.1.3.1 223.1.3.27 223.1.1.1 223.1.2.9 223.1.1.4 223.1.1.3 223.1.1.1 = 11011111 00000001 00000001 00000001 223 1 1 1

  5. Subnet • A subnet is a logical grouping of nodes in a network, normally defined using a subnet mask of the form a.b.c.d/x. The value x indicates the number of bits in the prefix of the IP address that is constant for all nodes in the subnet. The rest of the bits (32-x) are variables. • Classfull addressing divides the space of IP addresses into classes, where x can only be either 8, 16, or 24. Classless Interdomain Routing allows much more flexible management of IP addresses with no restrictions on x.

  6. Subnets 223.1.1.1 • IP address: • subnet part (high order bits) • host part (low order bits) • What’s a subnet ? • device interfaces with same subnet part of IP address • can physically reach each other without intervening router 223.1.2.1 223.1.1.2 223.1.2.9 223.1.1.4 223.1.2.2 223.1.1.3 223.1.3.27 LAN 223.1.3.2 223.1.3.1 network consisting of 3 subnets

  7. 223.1.1.0/24 223.1.2.0/24 223.1.3.0/24 Subnet Recipe • To determine the subnets, detach each interface from its host or router, creating islands of isolated networks. Each isolated network is called a subnet. Subnet mask: /24

  8. Subnets 223.1.1.2 223.1.1.1 223.1.1.4 How many?? 223.1.1.3 223.1.7.0 223.1.9.2 223.1.9.1 223.1.7.1 223.1.8.1 223.1.8.0 223.1.2.6 223.1.3.27 223.1.2.2 223.1.3.1 223.1.3.2

  9. host part subnet part 11001000 0001011100010000 00000000 200.23.16.0/23 IP addressing: CIDR CIDR:Classless InterDomainRouting • subnet portion of address of arbitrary length • address format: a.b.c.d/x, where x is # bits in subnet portion of address

  10. IP addresses: how to get one? Q: How does host get IP address? • hard-coded by system admin in a file • Wintel: control-panel->network->configuration->tcp/ip->properties • UNIX: /etc/rc.config • DHCP:Dynamic Host Configuration Protocol: dynamically get address from as server • “plug-and-play”

  11. Q: How does network get subnet part of IP addr? A: gets allocated portion of its provider ISP’s address space ISP's block 11001000 00010111 00010000 00000000 200.23.16.0/20 Organization 0 11001000 00010111 00010000 00000000 200.23.16.0/23 Organization 1 11001000 00010111 00010010 00000000 200.23.18.0/23 Organization 2 11001000 00010111 00010100 00000000 200.23.20.0/23 ... ….. …. …. Organization 7 11001000 00010111 00011110 00000000 200.23.30.0/23

  12. 200.23.16.0/23 200.23.18.0/23 200.23.30.0/23 200.23.20.0/23 . . . . . . Hierarchical addressing: route aggregation • Hierarchical addressing allows efficient advertisement of routing information: Organization 1 “Send me anything with addresses beginning 200.23.16.0/20” Organization 2 Fly-By-Night-ISP Internet Organization 7 “Send me anything with addresses beginning 199.31.0.0/16” ISPs-R-Us

  13. 200.23.16.0/23 200.23.18.0/23 200.23.30.0/23 200.23.20.0/23 . . . . . . Hierarchical addressing: more specific routes • ISPs-R-Us has a more specific route to Organization 1 “Send me anything with addresses beginning 200.23.16.0/20” Organization 2 Fly-By-Night-ISP Internet Organization 7 “Send me anything with addresses beginning 199.31.0.0/16 or 200.23.18.0/23” ISPs-R-Us Organization 1

  14. Q: How does an ISP get block of addresses? A: ICANN: Internet Corporation for Assigned Names and Numbers • allocates addresses • manages DNS • assigns domain names, resolves disputes

  15. Routing in the Internet • The Internet consists of interconnected autonomous systems • Intra-Autonomous System Routing in the Internet • used to configure and maintain the routing tables • Inter-AS routing protocols are also known as interior gateway protocols • three routing protocols have been used extensively for routing within an autonomous system in the Internet • RIP (the Routing Information Protocol) • OSPF (Open Shortest Path First), • IGRP (Cisco's propriety Interior Gateway Routing Protocol).

  16. NAT – Network Address Translation • Motivation: local network uses just one IP address as far as outside word is concerned: • no need to be allocated range of addresses from ISP: - just one IP address is used for all devices • can change addresses of devices in local network without notifying outside world • can change ISP without changing addresses of devices in local network • devices inside local net not explicitly addressable, visible by outside world (a security plus).

  17. IP protocol version number 32 bits total datagram length (bytes) header length (bytes) type of service head. len ver length for fragmentation/ reassembly fragment offset “type” of data flgs 16-bit identifier max number remaining hops (decremented at each router) upper layer time to live Internet checksum 32 bit source IP address 32 bit destination IP address upper layer protocol to deliver payload to E.g. timestamp, record route taken, specify list of routers to visit. Options (if any) data (variable length, typically a TCP or UDP segment) Datagram Format how much overhead with TCP? • 20 bytes of TCP • 20 bytes of IP • = 40 bytes + app layer overhead

  18. IP Fragmentation & Reassembly • network links have MTU (max.transfer size) - largest possible link-level frame. • different link types, different MTUs • large IP datagram divided (“fragmented”) within net • one datagram becomes several datagrams • “reassembled” only at final destination • IP header bits used to identify, order related fragments fragmentation: in: one large datagram out: 3 smaller datagrams

  19. length =1500 length =4000 length =1040 length =1500 ID =x ID =x ID =x ID =x fragflag =0 fragflag =0 fragflag =1 fragflag =1 offset =0 offset =185 offset =0 offset =370 One large datagram becomes several smaller datagrams IP Fragmentation and Reassembly Example • 4000 byte datagram • MTU = 1500 bytes 1480 bytes in data field offset = 1480/8

  20. ICMP: Internet Control Message Protocol • used by hosts & routers to communicate network-level information • error reporting: unreachable host, network, port, protocol • echo request/reply (used by ping) • network-layer “above” IP: • ICMP msgs carried in IP datagrams • ICMP message: type, code plus first 8 bytes of IP datagram causing error TypeCodedescription 0 0 echo reply (ping) 3 0 dest. network unreachable 3 1 dest host unreachable 3 2 dest protocol unreachable 3 3 dest port unreachable 3 6 dest network unknown 3 7 dest host unknown 4 0 source quench (congestion control - not used) 8 0 echo request (ping) 9 0 route advertisement 10 0 router discovery 11 0 TTL expired 12 0 bad IP header

  21. Source sends series of UDP segments to dest • First has TTL =1 • Second has TTL=2, etc. • Unlikely port number • When nth datagram arrives to nth router: • Router discards datagram • And sends to source an ICMP message (type 11, code 0) • Message includes name of router& IP address

  22. Traceroute and ICMP • When ICMP message arrives, source calculates RTT • Traceroute does this 3 times Stopping criterion • UDP segment eventually arrives at destination host • Destination returns ICMP “host unreachable” packet (type 3, code 3) • When source gets this ICMP, stops.

  23. u v destinationhops u 1 v 2 w 2 x 3 y 3 z 2 w x z y C A D B RIP: Routing Information Protocol • Distance vector algorithm • Included in BSD-UNIX Distribution in 1982 • Distance metric: # of hops (max = 15 hops)

  24. RIP advertisements • Distance vectors: exchanged among neighbors every 30 sec via Response Message (also called advertisement) • Each advertisement: list of up to 25 destination nets within AS

  25. z w x y A D B C Destination Network Next Router Num. of hops to dest. w A 2 y B 2 z B 7 x -- 1 …. …. .... Routing table in D

  26. z w x y A D B C Advertisement from A to D Dest Next hops w - - x - - z C 4 …. … ... Destination Network Next Router Num. of hops to dest. w A 2 y B 2 z B A 7 5 x -- 1 …. …. .... Routing table in D

  27. RIP: Link Failure and Recovery If no advertisement heard after 180 sec --> neighbor/link declared dead • routes via neighbor invalidated • new advertisements sent to neighbors • neighbors in turn send out new advertisements (if tables changed) • link failure info quickly propagates to entire net • poison reverse used to prevent ping-pong loops (infinite distance = 16 hops)

  28. RIP Table processing • RIP routing tables managed by application-level process called route-d (daemon) • advertisements sent in UDP packets, periodically repeated

  29. OSPF: Open Shortest Path First • “open”: publicly available • Uses Link State algorithm • LS packet dissemination • Topology map at each node • Route computation using Dijkstra’s algorithm • OSPF advertisement carries one entry per neighbor router • Advertisements disseminated to entire AS (via flooding) • Carried in OSPF messages directly over IP (rather than TCP or UDP

  30. OSPF “advanced” features (not in RIP) • Security: all OSPF messages authenticated (to prevent malicious intrusion) • Multiple same-cost paths allowed (only one path in RIP) • For each link, multiple cost metrics for different TOS (e.g., satellite link cost set “low” for best effort; high for real time) • Integrated uni- and multicast support: • Multicast OSPF (MOSPF) uses same topology data base as OSPF • Hierarchical OSPF in large domains.

  31. Hierarchical OSPF

  32. Hierarchical OSPF • Two-level hierarchy: local area, backbone. • Link-state advertisements only in area • each nodes has detailed area topology; only know direction (shortest path) to nets in other areas. • Area border routers:“summarize” distances to nets in own area, advertise to other Area Border routers. • Backbone routers: run OSPF routing limited to backbone. • Boundary routers: connect to other AS’s.

  33. IGRP (Cisco's propriety Interior Gateway Routing Protocol). • Developed by Cisco Systems, • IGRP is a distance vector protocol • making routing decisions determined by the network administrator • use administrator-defined costs in making route selections is an important difference from RIP • BGP • Other differences from RIP include the use of a reliable transport protocol, the use of update messages that are sent only when routing table costs the use of distributed diffusing update routing algorithm

  34. Why are there Different Inter-AS and Intra-AS Routing Protocols? Policy: • Inter-AS: admin wants control over how its traffic routed, who routes through its net. • Intra-AS: single admin, so no policy decisions needed Scale: • hierarchical routing saves table size, reduced update traffic Performance: • Intra-AS: can focus on performance • Inter-AS: policy may dominate over performance

  35. What's inside a router? key router functions: • run routing algorithms/protocol • forwarding datagrams from incoming to outgoing link

  36. Input ports Decentralized switching: • given datagram dest., lookup output port using forwarding table in input port memory • goal: complete input port processing at ‘line speed’ • queuing: if datagrams arrive faster than forwarding rate into switch fabric

  37. switching fabrics • switching fabric is at the very heart of a router • Where the major functionality of switches are performed • Switching fabric includes the • switching units (individual boxes) in a node • the integrated circuits that they contain • the programming that allows switching paths to be controlled • Web like structure linking input ports to output ports

  38. Three switching fabrics

  39. Memory Input Port Output Port System Bus Switching via memory. First generation routers: • traditional computers with switching under direct control of CPU • packet copied to system’s memory • speed limited by memory bandwidth (2 bus crossings per datagram)

  40. Switching Via a Bus • datagram from input port memory to output port memory via a shared bus • bus contention: switching speed limited by bus bandwidth • 1 Gbps bus, Cisco 1900: sufficient speed for access and enterprise routers (not regional or backbone)

  41. Switching via an interconnection network. • overcome bus bandwidth limitations • Banyan networks, other interconnection nets initially developed to connect processors in multiprocessor • Advanced design: fragmenting datagram into fixed length cells, switch cells through the fabric. • Cisco 12000: switches Gbps through the interconnection network

  42. Output Ports • Buffering required when datagrams arrive from fabric faster than the transmission rate • Scheduling discipline chooses among queued datagrams for transmission

  43. Where Does Queuing Occur? • buffering when arrival rate via switch exceeds output line speed • queueing (delay) and loss due to output port buffer overflow!

  44. Input Port Queuing • Fabric slower than input ports combined -> queueing may occur at input queues • Head-of-the-Line (HOL) blocking: queued datagram at front of queue prevents others in queue from moving forward • queueing delay and loss due to input buffer overflow!

  45. IPv6 • Initial motivation:32-bit address space soon to be completely allocated. • Additional motivation: • header format helps speed processing/forwarding • header changes to facilitate QoS IPv6 datagram format: • fixed-length 40 byte header • no fragmentation allowed

  46. IPv6 Packet Format • Priority: identify priority among datagrams in flow • Flow Label: identify datagrams in same “flow.” (concept of“flow” not well defined). • Next header: identify upper layer protocol for data

  47. Other Changes from IPv4 • Checksum:removed entirely to reduce processing time at each hop • Options: allowed, but outside of header, indicated by “Next Header” field • ICMPv6: new version of ICMP • additional message types, e.g. “Packet Too Big” • multicast group management functions

  48. Transition From IPv4 To IPv6 • Not all routers can be upgraded simultaneous • no “flag days” • How will the network operate with mixed IPv4 and IPv6 routers? • Tunneling: IPv6 carried as payload in IPv4 datagram among IPv4 routers

  49. Tunneling

More Related