26
Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015

Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

Embed Size (px)

Citation preview

Page 1: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

Chapter 23: ARP, ICMP, DHCP

IS333Spring 2015

Page 2: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

Role of ARP

Q: What role does ARP play in the TCP/IP protocol stack?A: See Figure 23.5 on p 389. ARP bridges the Layer 2 / Layer 3 addressing boundary, allowing IP to be agnostic about layer 2’s addressing, and yet still use layer 2 to deliver packets.Note that ARP is designed to work with not just IP and Ethernet, but any pair of protocols.

Page 3: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

IP vs MAC addresses

Q: What is the point of IP addresses if they are just resolved to the computers MAC address? A: An IP address is unique across the entire universe, and so uniquely identifies a destination. A MAC address only identifies a machine on the local network (so it only has to be unique on the local network, although MAC addresses are universally unique).

Page 4: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

2 ARP replies?

Q: If a computer receives two ARP replies for a single request, and the first reply claims that the MAC address is M1, and the second reply claims that the MAC address is M2, how does ARP handle the replies?A: I think it treats each reply independently and updates the cache to have M2 <--> IP address.

Page 5: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

ARP Request/Response

Q: How does a machine send a request to another machine to get its MAC if it doesn’t know the MAC of the machine?A: The requesting machine broadcasts the request at layer 2, asking for a certain IP address. All machines on the LAN accept that packet, but only the machine with that IP address responds, using layer 2 to deliver the packet back directly to the requester.(Note: ARP is not carried in an IP packet. It is carried directly on layer 2.)

Page 6: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

ARP Caching

Q: Can you explain ARP Caching a bit more? Does it do this mainly because it expects to send the same datagram over again or is it more for when the datagram gets split up? I guess I’m still a bit fuzzy on why caching improves performance.A: ARP caching is remembering the results of previous ARPs – so, remembering the binding between MAC address and IP address. This is done purely for efficiency. If you send a packet to one IP address on your network, you will probably send one again.

Page 7: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

Who does a machine ARP for?

Q: Does a machine ARP for a machine that is not on its local LAN?A: No! It is trying to find the MAC address – which means layer 2. So, it is trying to get the packet to its next-hop (which might be the ultimate destination).If the destination address is not on the local network, then the packet is sent to the router, which is on the local network. So, if it needs to, it will ARP for the router’s IP address on the local network.

Page 8: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

ARP problems

Q: Can a network have problems related to address resolution? If so, would the problems mostly arise from the protocol or can there be external factors that cause those problems?A: The only problems I can think of: 1) a machine doesn’t answer ARP requests no one can talk to it; 2) multiple machines answer an ARP request some machines might talk to one machine and some to another, thinking they are talking to the one machine with the unique IP address.

Page 9: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

ICMP

Q: If ICMP is used to report errors, why is it used to handle pings and traceroutes?A: ICMP is used for network debugging. That’s what pings are for.traceroute makes use of ICMP error messages by setting the TTL too low in the messages it generates. That way the routers will send errors back and traceroute will learn the IP addresses of the routers on the path to the destination.

Page 10: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

“Destination unreachable”

Q: About the destination unreachable error on page 390; would that be referring to a computer on a remote network?A: This is reported when either your host machine has no route to the destination network/machine, or, a remote router (a “next-hop” router) has no route to the destination network/machine.

Page 11: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

DHCP overview

Q: Could you explain DHCP a bit more (perhaps with a drawing)? A: Sure.1) Machine boots up and finds it has not IP address. 2) It broadcasts a DHCP request.3) The DHCP server allocates an IP address and sends

it. 4) The machine receives it and installs the IP address.

- The response also typically includes a network mask, default route, and DNS server IP hostname/address.

Page 12: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

DHCP details

Q: What is the "recommended" or "normal" time of a DHCP lease? A: 24 hours, I think.Q: From what I can gather, DHCP is not a necessity. Is that correct?A: Not necessary, but awfully useful. Otherwise, the user has to set the IP address every time the machine is rebooted.

Page 13: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

DHCP Servers

Q: Do you always need a dedicated DHCP server if you want to use DHCP? It seems like it would not take a lot of processing power to hand out addresses. Could this functionality be rolled up with other services on one server?A: DHCP servers typically run on routers or some machine that runs lots of services.Q: Do you need a DHCP server on every LAN?A: Yes, unless you use a relay agent.

Page 14: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

Configuration

Q: Can DHCP be configured any way that the admin wants? Can selective leasing be used to give a specific computer a specific address when the computer boots, even if another computer has that IP address - can the DHCP server take the address back to give to the new computer?A: DHCP can be configured in many different ways. We’ll do this in lab.A server can force a machine to give up an IP address, I think.

Page 15: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

Fixed addresses?

Q: Although DHCP is used extensively, what are the advantages of setting a fixed address assignment - are there any?A: I have used fixed IP addresses when I want some network service running on a certain machine with a certain IP address always. E.g., you typically hard-code a router’s interface to be x.y.z.1.Or, maybe you have some license server software and you want to configure all your machines to always to go a certain IP address to get some license for the software.

Page 16: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

BOOTP vs DHCP

Q: Since BOOTP was extended to become DHCP, can you boot a BOOTP client on a DHCP server or vice-versa? A: You can use a BOOTP server with a DHCP client, but not vice versa, I think. The BOOTP server will send out a message a client can understand, but won’t contain all the data the client could receive… I think…

Page 17: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

“Parameterized” software

Q: Could you explain what is meant by "binary image" in this statement:

In essence, protocol software consists of a binary image that is parameterized, and initialization fills in a set of parameters.A: What this means is that the software components (IP, ARP, DHCP, etc.) have to be configured to work on each machine, somehow.

Page 18: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

Old Slides

Page 19: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

How does ARP work?

Q: How does ARP work?A: IP hands a packet and a next-hop IP address to layer 2 to forward for it. Layer 2 has to figure out how to get the MAC address for this IP address. It checks its ARP cache for a resolution. If not found, it sends an ARP request and waits for a response. Then, it caches the results and sends to the MAC delivered in the response.

Page 20: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

ARP Request/Response

Q: How does a machine send a request to another machine to get its MAC if it doesn’t know the MAC of the machine?A: The requesting machine broadcasts the request at layer 2, asking for a certain IP address. All machines on the LAN accept that packet, but only the machine with that IP address responds, using layer 2 to deliver the packet back directly to the requester.(Note: ARP is not carried in an IP packet. It is carried directly on layer 2.)

Page 21: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

Details

• The ARP responder caches the MAC/IP of the requester in its ARP cache.

• Although all machines on the LAN could update their ARP cache from an ARP request, they don’t. Why?– Because they will fill up their cache with bindings

they may never need.

Page 22: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

ICMP

• Internet Control Message Protocol• Mostly not implemented these days.• Only echo request/responses are

implemented/enabled often.– Many others are security liabilities.

• Designed to handle reporting errors/misconfigurations in an IP network.

• Layer 4 protocol (carried by IP).

Page 23: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

DHCP

• Not necessary to implement to get a working network, but awfully convenient.

• What is its role?– Allows a computer to “automatically” get an IP address.– And, subnet mask.– And, default route.– And, DNS server IP address(es).

• All of these can be done by hand configuration.• Initially was called BOOTP.

Page 24: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

DHCP problem…

Q: How does a machine without an IP address request an IP address over an IP network?A: Sends a (layer 2 and 3) broadcast message, filling in the src IP address as 0.0.0.0 (“this computer”). Layer 4 is UDP, port 67, indicating a DHCP message. All machines receive the broadcast and forward up through IP to UDP. Only the machine listening on port 67 accepts and responds – that’s the DHCP server. The server responds directly to the MAC address used in the request.

Page 25: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

DHCP Server Configuration

Q: How do you configure a DHCP Server?A: You typically edit a file that specifies a range of addresses to be leased dynamically, and/or specific MAC <--> IP address bindings. You also configure the default route and DNS server IP addresses to send out.Note: only one DHCP server must be running per LAN, or chaos ensues...

Page 26: Chapter 23: ARP, ICMP, DHCP IS333 Spring 2015. Role of ARP Q: What role does ARP play in the TCP/IP protocol stack? A: See Figure 23.5 on p 389. ARP bridges

DHCP Relay Agents

Q: Do you have to run a DHCP server on each LAN?A: Without some special provisions, yes. DHCP requests use limited bcast (all 1s), so don’t get forwarded across routers.But, you can implement a DHCP relay agent to forward requests/responses to/from the DHCP server. Still must be on relay agent on each LAN.