67
The Network Layer. Associated Protocols 1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking: A Top Down Approach 5 th edition. Jim Kurose, Keith Ross Addison-Wesley, April 2009. Departamento de Tecnología Electrónica

The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

Embed Size (px)

Citation preview

Page 1: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 1

Chapter 3The Network Layer. Associated Protocols

Some of these slides are copyrighted by:

Computer Networking: A Top Down Approach 5th edition. Jim Kurose, Keith RossAddison-Wesley, April 2009.

Departamento deTecnología Electrónica

Page 2: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 2

Chapter 3: Network Layer. Associated Protocols Chapter goals: understand advanced principles behind

network layer services: network layer error control IPv4 address dynamic configuration routing (path selection) address translation advanced topics: IPv6.

Page 3: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 3

Chapter 3: Network Layer. Associated Protocols 3.1 IPv4 error

control: ICMP 3.2 IPv4 address

dynamic configuration: DHCP

3.3 Routing in the Internet RIP OSPF BGP Multiprotocol routing

3.4 Address Translation: NAT

3.5 IP version 6

Page 4: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 4

Chapter 3: Network Layer. Associated Protocols 3.1 IPv4 error

control: ICMP 3.2 IPv4 address

dynamic configuration: DHCP

3.3 Routing in the Internet RIP OSPF BGP Multiprotocol routing

3.4 Address Translation: NAT

3.5 IP version 6

Page 5: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 5

ICMP: Internet Control Message Protocol

used by hosts & routers to communicate network-level information error reporting:

unreachable host, network, port, protocol

warnings from routers or receivers

network-layer above IP: ICMP msgs carried in

IP datagrams (but ICMP is not a transport-layer protocol!)

all the nodes using IP must have ICMP implemented

ICMP msgs are only created for the first IP fragment

Page 6: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 6

ICMP: Internet Control Message Protocol

Message format ICMP msgs carried in

IP datagrams• Protocol field = 1 in

IP header• Source IP addr =

host sending ICMP msg

Type Code description0 0 echo reply (ping)3 0 dest. network unreachable3 1 dest host unreachable3 2 dest protocol unreachable3 3 dest port unreachable5 0 ICMP redirect8 0 echo request (ping)11 0 TTL expired

Page 7: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 7

ICMP: Internet Control Message Protocol

Ping Sends data pkt and waits for a response Based on Type 8 and Type 0 ICMP messages Functions:

• Check host connectivity• Ping sends pkts with unique seq numbers

– Detection ofduplicate, reordered and eliminated pkts • Ping use cheksums in every pkt

– Detection of corrupted pkts• Ping allows RTT (Round Trip Time) calculation• Ping allows the detection of other ICMP messages.

Page 8: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 8

ICMP: Internet Control Message Protocol

Ping

Echo request and echo reply

1 byte 1 byte 2 bytes

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

| Type | Code | Checksum |

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

| Id | Sequence number |

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

Type: 8 (Echo request) or 0 (Echo reply)Code: 0Id: number of identificación (optional)Sequence number (optional)

Page 9: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 9

ICMP: Internet Control Message Protocol Ping

Syntax ping [options] destination_host

Options -w timeout Timeout in milliseconds to wait for each reply. -i TTL Time To Live.-v TOS Type Of Service. -a Resolve addresses to hostnames. -n count Number of echo requests to send. -t Ping the destination host until interrupted. To see statistics and continue type Control-Break; To stop type Control-C. -l size Send buffer size. -f Set Don't Fragment flag in packet (IPv4-only). -r count Record route for count hops (IPv4-only). -s count Timestamp for count hops (IPv4-only). -j host_list Loose source route along host_list (IPv4-only). -k host_list Strict source route along host_list (IPv4-only). destination_host The name of the remote host -R Use routing header to test reverse route also (IPv6-only). -S srcaddr Source address to use (IPv6-only). -4 Force using IPv4. -6 Force using IPv6

Page 10: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 10

ICMP: Internet Control Message Protocol

Tracert (Trace route)

Source sends echo requests to dest

• First has TTL =1• Second has TTL=2, etc.

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

Tracert does this 3 times per router

Stopping criterion Echo request eventually

arrives at destination host

Destination returns echo reply

When source gets this ICMP, stops.

Page 11: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 11

ICMP: Internet Control Message Protocol

Tracert (Trace route)

Echo requestTTL = 1

Echo requestTTL = 1

Echo requestTTL = 1

Echo requestTTL = 1

Echo requestTTL = 2

Echo requestTTL = 2

Echo requestTTL = 2

Echo requestTTL = 3

Echo requestTTL = 4

Echo requestTTL = 3

ICMP messageTTL exceeded (type 11)

ICMP messageTTL exceeded (type 11) ICMP message

TTL exceeded (type 11)

Echo reply

X X

X

Page 12: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 12

ICMP: Internet Control Message Protocol

Destination unreachable (type 3)

Most usual code values (causes)• Code 1: host unreachable• Code 3: port unreachable• Code 4: fragmentation needed

Page 13: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 13

ICMP: Internet Control Message Protocol

RED B

RED A

Router A

Router B

(1)

(3)

(2)

ICMP Redirect (type 5)

useful when there are some possible gateways Steps

Packet is sent to default gateway

Default gateway sends packet to router B

Default gateway sends ICMP redirect to host

Page 14: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 14

Chapter 3: Network Layer. Associated Protocols 3.1 IPv4 error

control: ICMP 3.2 IPv4 address

dynamic configuration: DHCP

3.3 Routing in the Internet RIP OSPF BGP Multiprotocol routing

3.4 Address Translation: NAT

3.5 IP version 6

Page 15: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 15

Dynamic Address Configuration

Address configuration static dynamic: automatic and more efficient

Dynamic Address Configuration Protocols RARP: Reverse Address Resolution

Protocol BootP: Bootstrap Protocol DHCP: Dynamic Host Configuration

Protocol

Page 16: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 16

Dynamic Address Configuration

RARP RARP: Reverse Address Resolution

Protocol Given a MAC, an IP address is assigned Messages have the same structure as ARP

ones RARP is limited and, thus, obsolete.

Page 17: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 17

Dynamic Address Configuration

BootP BootP Protocol:

Bootstrap Protocol Used to obtain IP

automatically (generally in boot process)

Not usually utilized for Dynamic Address Configuration, as DHCP is an improved version of BootP.

BootP process Host determines its own

MAC Host sends its IP to

server’s port 67 (0.0.0.0 if doesn’t know its IP and 255.255.255.255 if doesn’t’ know the server’s one)

Server searches host’s MAC in a configuration file

Server fills server’s and host’s IPs in UDP datagram and sends it to client’s port 68

Host saves its IP and boots

Page 18: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 18

Dynamic Address Configuration BootP message

Code: BootPRequest & BootPReply

Transaction id HW address: e.g. MAC Server host name (server does

not need to be in the same broadcast domain)

Boot file name Vendor specific area

• Magic cookie: shows the kind of optional info below

• A critical field for DHCP

Page 19: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 19

Dynamic Address Configuration DHCPDynamic Host Configuration Protocol (DHCP) – RFC 2131:

Capable of automatically assign reusable (IP address leasing) Based on BootP, standardizing Vendor Specific Area field in BootP PDU

(312 bytes). 3 mechanisms for the assignment of IP addresses:

• Automatic assignment:– DHCP assigns a permanent IP address to the host.

• Dynamic assigment:– DHCP assigns an IP address for a limited period of time -> automatic reuse of non-

neccessary IP addresses

• Static assignment: – IP address assigned by network administrator

Page 20: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 20

Dynamic Address Configuration DHCP message

Same as BootP message except options field (312 bytes) instead of Vendor Specific Area

• First four bytes: magic cookie -> 99.130.83.99 (means DHCP).

• Different options. Most important below

– 50: requested IP address– 51: IP address lease time– 53: type of DHCP message

Page 21: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 21

Dynamic Address Configuration DHCP cycle

1. DHCP DISCOVER: tries to find a DHCP Server.

2. DHCP OFFER: the server/s offers an IP address

3. DHCP REQUEST: the client requests some parameters (generally the ones oferred by the server)

4. DHCP ACK: server ACK

Besides:

• DHCP RELEASE: releases IP address

• DHCP DECLINE. The offered IP is in use

• DHCP INFORM: requests some configuration parameters

• DHCP NAK: if server does not accept request

1

2

3

4DHCP Client

(port 68) DHCP Server(port 67)

Page 22: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 22

Dynamic Address Configuration Other DHCP features

A router may be a DHCP server BootP Relay: when the server is not in the same client’s

broadcast domain Gratuitous ARP: ARP request by the client of its own IP. Checks

if the assigned IP is busy. Option 50: client requests a fixed IP Option 51: IP address lease time Maximum DHCP message size: 576 bytes

Page 23: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 23

Chapter 3: Network Layer. Associated Protocols 3.1 IPv4 error

control: ICMP 3.2 IPv4 address

dynamic configuration: DHCP

3.3 Routing in the Internet RIP OSPF BGP Multiprotocol routing

3.4 Address Translation: NAT

3.5 IP version 6

Page 24: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 24

Routing in the internet

Network layer functions Addressing Routing

Routing: finding the BEST route Best route depends

on different criteria: # of hops, transfer rate, load of a link, cost, reliability…

Different routes• Link breakage• Slow links

Which route?

Page 25: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 25

Routing in the internet

Two approaches in routing Virtual circuit

• Route is established in connection start

Datagram• Rcvr addr is inside every

packet

Which route?

Concept: Autonomous System (AS) AS: IP networks with a common routing

management

Page 26: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 26

Virtual circuit vs. Datagram Virtual circuit

Error & flow control; order maintenance

Connection oriented• Three phases:

establishment, transfer & termination

Advantages• Efficiency• QoS

Datagram Each packet is an

independent unit• Dest addr in every

packet• Packets may arrive

disordered to dest• No error or flow control

Advantages• More simple• No connection -> better

for short-time tx• More reliable• Better for heterogeneous

networks

Page 27: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 27

Packet flow Unicast Broadcast Multicast

Page 28: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 28

A

B

C D E F

4 flows

2 flows

Unicast Individual flows: one tx, one rx

Page 29: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 29

Broadcast one tx, everyone rx

A

B

C D E F

1 flow

1 flow

Page 30: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 30

Multicast one flow, only desired rx

A

B

C D E F

1 flow

1 flow

Page 31: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 31

Unicast routing Objective

Carry pkts from sender to receiver

Network-layer routing Hierarchic addressing:

first finds network & the host

Routing algorithm Router calculates the

way of routing

Routing algorithm features Correct Simple Robust Fair Optimum

Page 32: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 32

Routing algorithms Router

Network device that interconnects networks & implements routing algorithm

Routing algorithm decides which interface is correct

RouterInput gateways

Outputgateways

RoutingTable

Routing Engine

Page 33: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 33

Routing algorithms Classification

Static routing Adaptive routing

• Centralized• Isolated• Distributed: most used on the internet (RIP/OSPF)

Page 34: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 34

Static Routing Does not consider current network condition Routes are determined before starting network

service

Advantages Simple Good results for constant traffic and network topology

Disadvantages Not suitable for networks with changing topology Not suitable for big networks -> not scalable

Page 35: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 35

Adaptive Routing Decisions based on

Current topology Network condition (congested links)

Better than static routing but more difficult to implement

Three subgroups Centralized Adaptive Routing Isolated Adaptive Routing Distributed Adaptive Routing

Page 36: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 36

Centralized Adaptive Routing Routing Control Center (RCC) Nodes (routers) send info about their condition to RCC

List of neighbour nodes Queue length Use of links

RCC Receives the information Calculates optimum route for every two nodes Calculates routing table for every node Distributes tables to nodes

Disadvantages RCC & links to RCC -> bottlenecks Inaccurate calculation

Page 37: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 37

Isolated Adaptive Routing No info interchange between nodes Decisions based only on local info -> simple Example

Flooding

Page 38: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 38

Distributed Adaptive Routing Used on the internet Two subgroups

Distance vector algorithms• Decisions based on the information received from neighbour

nodes• E.g. RIP (Routing Information Protocol)

Link state algorithms• All the nodes know the state of the network• Some time to propagate changes• E.g. OSPF (Open Short Path First)

Page 39: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 39

RIP: Routing Information Protocol Routing Information Protocol

(RIP) – RFC 1058 (RIP), RFC 1723 (RIPv2):

Routing Protocol (application-layer protocol over UDP – port 520 -)

Used for interior routing inside an AS

RIPv2 is identical to RIP, but with two extensions: Allows CIDR Authentication mechanism

Metric: hop counts Maximum number of hops

-> 15 Better for homogeneous

networks Routing table distance

vector-based Routing table updates:

Periodic updates: via broadcast (in RIPv2: multicast to 224.0.0.9)

Updates when network topology changes

Page 40: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 40

RIP: Routing Information Protocol

RIP functioning

Update from neighbour N arrives to a router R: Networks known by N, and not by R, are included in R’s

routing table. If N knows a better route for a network known by both,

R’s routing table is updated Metric (# of hops) is increased by one Router R publishes information increasing in one unit

what it is introduced in its routing table. Update messages tx to neighbours. Two ways

• Not using split horizon technique: Updates are sent to all the neighbours.

• Using split horizon technique. Updates sent to all the neighbours, except to those who informed about the best route.

Page 41: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 41

RIP: Routing Information Protocol

RIP timers

Routing-update timer: 30 seconds – random time

Route-timeout timer: after timeout -> invalid route

Route-flush timer: after timeout -> deletes route from enrouting table

Page 42: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 42

RIP: Routing Information Protocol

RIP message

Command Request (1) Response (2): most common (updates)

Version: v1 or v2 RIP version 2: most important field -> subnet mask ->

allows CIDR (subnetting)

Page 43: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 43

OSPF: Open Short Path FirstOpen Short Path First (OSPF)

Used for interior routing inside an AS Larger networks than RIP (usually) Open protocol (RFC 2328)

Page 44: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 44

OSPF: Basic FoundationsOpen Short Path First

(OSPF)

Link state routing protocol Dijkstra algorithm to find the

BEST route A router builds a graph Graph weights are configured

by the network administrator All equal to 1 (similar to RIP) Inversely proportional to BW

(usual criterium) Any criteria may be fixed

Open Short Path First (OSPF)

Updates disseminated to entire AS (via flooding)

Changes in topology Periodically (once every 30

min, at least) carried in OSPF messages

directly over IP (rather than TCP or UDP) -> protocol field: 89

Link connectivity is checked by HELLO msgs for neighbours

Page 45: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 45

OSPF advanced features (not in RIP)

security: all OSPF messages authenticated For each link, multiple cost metrics for different

TOS hierarchical OSPF in large domains.

Page 46: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 46

OSPF header

Checksum: error control

Authentication

Value

Type

1 HELLO

2 Database description

3 Link state request

4 Link state update

5 Link state ACK

Page 47: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 47

BGP: Border Gateway Protocol

Problem: Different IP networks do not have to use same routing protocol

Two types of protocols IGP (Interior Gateway Protocols): define routing inside an

AS. (RIP, OSPF…) EGP (Exterior Gateway Protocols): define routing

between different AS.

BGP (Border Gateway Protocol): most common EGP (RFC 4271)

Page 48: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 48

BGP: Main features

BGP provides each AS means to:1. Obtain subnet reachability information from

neighboring ASs.2. Propagate reachability information to all AS-

internal routers. allows subnet to advertise its existence

to rest of Internet

Page 49: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 49

BGP: Main features

Every AS: ASN = Autonomous System Number)

Inside every AS -> AS routing protocol Outside AS -> “border router”: border

routers in different AS exchange their routing tables

BGP works over TCP (port 179)

Page 50: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 50

BGP: Example

Page 51: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 51

Multiprotocol routing

Router

Host BIP Host Z

IPX

Host AIPX

Host YIP

IP is not the only network-layer protocol (IPX, DecNET, Apple Talk…)

Only hosts using the same network-layer protocol can communicate with each other

Multiprotocol routers prevent from using different routers for every protocol

Page 52: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 52

Chapter 3: Network Layer. Associated Protocols 3.1 IPv4 error

control: ICMP 3.2 IPv4 address

dynamic configuration: DHCP

3.3 Routing in the Internet RIP OSPF BGP Multiprotocol routing

3.4 Address Translation: NAT

3.5 IP version 6

Page 53: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 53

Address Translation: NAT

Problem: limited number of IP addr. Solutions

o Subnetting o Private IP addr

• 10.0.0.0/8• 172.16.0.0/12• 192.168.0.0/16• 169.254.0.0/16

Page 54: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 54

Address Translation: NAT

Private IP addr: how can the dest know whose is the private IP addr?

Solution: NAT (Network Address Translation)o Mechanism used to modify the IP addr inside pktso Allows private IP addr (inside networks)

communication with public IP addr (outside networks)

o NAT routers must keep a NAT table with translation in both directions

Page 55: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 55

NAT basic functioning NAT Router has one or more IP addr for NAT -> for translating private

IP into public IP NAT Router modifies “Source IP addr” field in the IP header & stores

matching public & pvt addr in the NAT Table Dest responds to modified addr NAT Router searches on its NAT Table & matches public & pvt addr,

sending the pkt to the pvt IP

NAT Router

Host A192.168.1.10

Host Z150.214.141.20

Inside network Outside network

192.168.1.1 150.214.141.1

192.168.1.10 150.214.141.20 150.214.141.2 150.214.141.20

IP packet IP packet

Source addr Dest addr Source addr Dest addr

150.214.141.20 150.214.141.2

IP packet

Source addr Dest addr

NAT Table

Page 56: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 56

Types of NAT

Dynamic NAT

Static NAT

NAPT (Network Address Port Translation)

Page 57: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 57

Dynamic NAT Translation is unidirectional Traffic comes from the inside network Translation is temporary Once public IP addr is not in use, it is deleted from NAT Table

NAT Router

Host A192.168.1.10

Host Z150.214.141.20

Inside network Outside network

192.168.1.1 150.214.141.1

192.168.1.10 150.214.141.20 150.214.141.2 150.214.141.20

IP packet IP packet

Source addr Dest addr Source addr Dest addr

150.214.141.20 150.214.141.2

IP packet

Source addr Dest addr

NAT Table

150.214.141.20 150.214.141.2

IP packet

Source addr Dest addr

Private IP Public IP192.168.1.10 150.214.141.2

Page 58: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 58

Dynamic NAT

NAT Router

Host A192.168.1.10

Host Z150.214.141.20

Inside network Outside network

192.168.1.1 150.214.141.1

192.168.1.10 150.214.141.20 150.214.141.2 150.214.141.20

IP packet IP packet

Source addr Dest addr Source addr Dest addr

150.214.141.20 150.214.141.2

IP packet

Source addr Dest addr

NAT Table

150.214.141.20 150.214.141.2

IP packet

Source addr Dest addr

Private IP Public IP192.168.1.10 150.214.141.2

Advantage Saves public IP addr

Disadvantage Traffic always initiated from the inside network -> does not allow

servers

Page 59: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 59

Static NAT Translations are in the NAT Table since routers are configured Communication may be initiated by both the inside & the outside

networks Public IP addr must be known (via DNS) by the hosts in the outside

network

NAT Router

Host A192.168.1.10

Host Z150.214.141.20

Inside network Outside network

192.168.1.1 150.214.141.1

192.168.1.10 150.214.141.20 150.214.141.2 150.214.141.20

IP packet IP packet

Source addr Dest addr Source addr Dest addr

150.214.141.20 150.214.141.2

IP packet

Source addr Dest addr

NAT Table

150.214.141.20 150.214.141.2

IP packet

Source addr Dest addr

Private IP Public IP 192.168.1.10 150.214.141.2 static

Page 60: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 60

Static NAT Advantage

Allows servers

Disadvantage One public IP addr per pvt IP addr… but both dynamic & static NAT

may be used together

NAT Router

Host A192.168.1.10

Host Z150.214.141.20

Inside network Outside network

192.168.1.1 150.214.141.1

192.168.1.10 150.214.141.20 150.214.141.2 150.214.141.20

IP packet IP packet

Source addr Dest addr Source addr Dest addr

150.214.141.20 150.214.141.2

IP packet

Source addr Dest addr

NAT Table

150.214.141.20 150.214.141.2

IP packet

Source addr Dest addr

Private IP Public IP 192.168.1.10 150.214.141.2 static

Page 61: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 61

NAPT Transport-Layer Port Identifiers are used Several pvt IP addr may be translated into a unique public IP

addr

NAPT Router

Host B192.168.1.12

Host Z150.214.141.20

Inside networkOutside network

192.168.1.1 150.214.141.1

192.168.1.11 1576 150.214.141.19 80

IP packet

Source addr Dest addr

NAPT Table

Private IP Public IP local 192.168.1.11:1576 global 150.214.141.2:1576 local 192.168.1.12:1576 global 150.214.141.2:1577

Host A192.168.1.11

Host Y150.214.141.19

Source port Dest port

150.214.141.2 1576 150.214.141.19 80

IP packet

Source addr Dest addrSource port Dest port

192.168.1.12 1576 150.214.141.20 21

IP packet

Source addr Dest addrSource port Dest port

150.214.141.2 1577 150.214.141.20 21

IP packet

Source addr Dest addrSource port Dest port

Page 62: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 62

About NAT Not every app work properly when going

through a NAT router (e.g, BOOTP) Difficult to follow the traffic that goes through

several NAT routers NAT increases router processing time NAPT is a type of NAT -> there are also dynamic

NAPT & static NAPT. Both may also be used together

Page 63: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

Chapter 3: Network Layer. Associated Protocols 3.1 IPv4 error

control: ICMP 3.2 IPv4 address

dynamic configuration: DHCP

3.3 Routing in the Internet RIP OSPF BGP Multiprotocol routing

3.4 Address Translation: NAT

3.5 IP version 6

The Network Layer. Associated Protocols 63

Page 64: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 64

IPv6 Initial motivation: 32-bit address space

completely allocated. Basic changes:

128-bit address space• E.g: 2002:96d6:8ddc::96dc:6301 (the bits remaining

are zeros) header format helps speed

processing/forwarding 40-byte header (fixed size) Other changes based on previous experience

on IPv4

Page 65: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 65

IPv6 headerVersion: 6Priority: identify priority among datagrams in flowFlow Label: identify datagrams in same “flow.” (concept of“flow” not well defined).Payload length: data field length

Next header: identify upper layer protocol for data Hop limit: analog to IPv4 TTL fieldSrc & Dest addr: 128 bytes

Page 66: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 66

Changes from IPv4

Checksum: removed entirely to reduce processing time at each hop

Fragmentation: removed from IPv6, also to reduce processing time

Options: allowed, but outside of header, indicated by “Next Header” field

ICMPv6: new version of ICMP additional message types, e.g. “Packet Too

Big”

Page 67: The Network Layer. Associated Protocols1 Chapter 3 The Network Layer. Associated Protocols Some of these slides are copyrighted by: Computer Networking:

The Network Layer. Associated Protocols 67

Transition from IPv4 to IPv6

Not all routers can be upgraded simultaneous no D Day How will the network operate with mixed IPv4

and IPv6 routers? Tunneling: IPv6 carried as payload in IPv4

datagram among IPv4 routers