RARP Q&A

MG
Written by
0
  1. What is RARP?
  2. Reverse Address Resolution Protocol (RARP) is a network protocol used to resolve a data link layer address to the corresponding network layer address. For example, RARP is used to resolve a Ethernet MAC address to an IP address.

  3. To which OSI layer does RARP belong?
  4. RARP belongs to the OSI data link layer (layer 2).

  5. Which RFC specifies the requirements for RARP?
  6. RFC 903 specifies the RARP packet format and other details.

  7. Why is RARP needed?
  8. Normally, the IP address of a system is stored in a configuration file in the local disk. When the system is started, it determines its IP address from this file. In the case of a diskless workstation, its IP address cannot be stored in the system itself. In this case, RARP can be used to get the IP address from a RARP server.

  9. What is a RARP server?
  10. All the mappings between the hardware MAC addresses and the IP addresses of the hosts are stored in a configuration file in a host in the network. This host is called the RARP server. This host responds to all the RARP requests.

  11. Where is the mapping between the MAC address and IP addresses stored in a RARP server?
  12. The mapping between MAC addresses and IP addresses is usually stored in a configuration file in the local hard disk in the RARP server.

  13. Can RARP be used in a network other than Ethernet?
  14. Yes. RARP is a general protocol, which can be used to map any type of hardware MAC address to any type of network layer protocol address.

  15. How does RARP resolve an Ethernet MAC address to an IP address?
  16. When a diskless system is booted up, it broadcasts a RARP request packet with its MAC address. This packet is received by all the hosts in the network. When the RARP server receives this packet, it looks up this MAC address in the configuration file and determines the corresponding IP address. It then sends this IP address in the RARP reply packet. The diskless system receives this packet and gets its IP address.

  17. When is a RARP request packet generated?
  18. A RARP request packet is usually generated during the booting sequence of a host. A host must determines its IP address during the booting sequence. The IP address is needed to communicate with other hosts in the network.

  19. What happens when a RARP server receives a RARP request packet?
  20. When a RARP server receives a RARP request packet it performs the following steps:

    1. The MAC address in the request packet is looked up in the configuration file and mapped to the corresponding IP address.
    2. If the mapping is not found, the packet is discarded.
    3. If the mapping is found, a RARP reply packet is generated with the MAC and IP address. This packet is sent to the host, which originated the RARP request.

  21. What happens when a host receives a RARP reply packet?
  22. When a host receives a RARP reply packet, it gets its IP address from the packet and completes the booting process. This IP address is used for communicating with other hosts, till it is rebooted.

  23. What is the length of a RARP request and reply packet?
  24. The length of a RARP request or a RARP reply packet is 28 bytes.

  25. What is the RARP packet format?
  26. The various fields of a RARP request/reply packet and their length are shown below:

        +--------+
    Hardware 2 bytes
    MAC
    Address
    Type
    +--------+
    Protocol 2 bytes
    Address
    Type
    +--------+
    Hardware 1 byte
    MAC
    Address
    Size
    +--------+
    Protocol 1 byte
    Address
    Size
    +--------+
    Op 2 bytes
    +--------+
    Sender 6 bytes (depends on the above size field)
    MAC
    Address
    +--------+
    Sender 4 bytes (depends on the above size field)
    IP
    Address
    +--------+
    Target 6 bytes (depends on the above size field)
    MAC
    Address
    +--------+
    Target 4 bytes (depends on the above size field)
    IP
    Address
    +--------+
    The fields are further explained below:
        +---------+-------------------------------------------------------+
    Ethernet For a RARP request, source MAC address is the MAC
    Header address of the host sending the RARP request,
    destination MAC address is the Ethernet broadcast
    address (FF:FF:FF:FF:FF:FF), frame type field is 0x8035
    For RARP reply, source MAC address is the MAC address
    of the RARP server replying to the RARP request,
    destination MAC address is the MAC address of the host
    that sent the RARP request, and the frame type field is
    0x8035.
    +---------+-------------------------------------------------------+
    Hardware Type of the hardware MAC address present in the packet.
    Address For Ethernet the value of this field is 1.
    Type
    +---------+-------------------------------------------------------+
    Protocol Type of the protocol address requested for the MAC
    Address address. For IP address the value of this field is
    Type 0x800.
    +---------+-------------------------------------------------------+
    Hardware Size of the hardware MAC address. For Ethernet, the
    Address value of this field is 6.
    Size
    +---------+-------------------------------------------------------+
    Protocol Size of the protocol address. For IP, the value of
    Address this field is 4.
    Size
    +---------+-------------------------------------------------------+
    OperationType of operation being performed. The value of this
    field can be 3 (RARP request) or 4 (RARP reply).
    +---------+-------------------------------------------------------+
    Source In a RARP request packet, this is the hardware MAC
    MAC address of the source host. In a RARP reply packet,
    address this is the hardware MAC address of the RARP server
    sending the RARP reply.
    +---------+-------------------------------------------------------+
    Source In a RARP request packet, this is undefined. In a
    IP RARP reply packet, this is the IP address of the RARP
    address server sending the RARP reply.
    +---------+-------------------------------------------------------+
    Target In a RARP request packet, this is the hardware MAC
    MAC address of the source host. In a RARP reply packet,
    address this is the hardware MAC address of the host, that sent
    the RARP request packet.
    +---------+-------------------------------------------------------+
    Target In a RARP request packet, this is undefined. In a RARP
    IP reply packet, this is the IP address of the host
    address that sent the RARP request packet.
    +---------+-------------------------------------------------------+

  27. Does RARP use the same packet format as ARP?
  28. Yes. RARP uses the same packet format as ARP.

  29. How is a RARP packet differentiated from an ARP packet?
  30. The frame type in the Ethernet header is used to differentiate a RARP packet from an ARP packet. The value of the opcode field in the RARP header can also be used.

  31. Is the format of a RARP request packet the same as that of a RARP reply packet?
  32. Yes. The packet format of a RARP request packet is same as that of a RARP reply packet.

  33. How is a RARP request differentiated from a RARP reply packet?
  34. The 'operation' field in the RARP packet is used to differentiate between a RARP request and a RARP reply packet.

  35. What are the values for the source and destination IP address fields in a RARP request packet?
  36. In an RARP request packet, the source and destination IP address values are undefined.

  37. What are the values for the source and destination IP address values in a RARP reply packet?
  38. In a RARP reply packet, the source IP address is the IP address of the RARP server responding to the RARP request and the destination IP address is the IP address of the host that sent the RARP request.

  39. Do all the hosts in a network process a RARP packet?
  40. Since a RARP request packet is a broadcast packet, it is received by all the hosts in the network. But only a RARP server processes a RARP request packet, all the other hosts discard the packet. The RARP reply packet is not broadcast, it is sent directly to the host, which sent the RARP request.

  41. What will happen if more than one RARP server in a network responds to a RARP request?
  42. If more than one RARP server respond to a RARP request, then only the first RARP reply received is used. All other replies are discarded.

  43. What will happen if a RARP reply is not received for a RARP request?
  44. If a RARP reply is not received within a reasonable amount of time, the host, which sent the RARP request, will not be able to complete its booting sequence. Usually the host will again retry sending the RARP request after a timeout period.

  45. Are there any alternative protocols to RARP?
  46. The BOOTP and DHCP protocols can be used instead of RARP to get the IP address from the MAC address.

Tags:

Post a Comment

0Comments

Your comments will be moderated before it can appear here. Win prizes for being an engaged reader.

Post a Comment (0)

#buttons=(Ok, Go it!) #days=(20)

Our website uses cookies to enhance your experience. Learn more
Ok, Go it!