Contents
- Configuring ARP
- Prerequisites for Configuring ARP
- Restrictions for Configuring ARP
- Information About Configuring ARP
- IP Addressing Overview
- Address Resolution on a Single LAN
- Address Resolution When Interconnected by a Router
- ARP and Proxy ARP
- ARP Cache Entries
- How to Configure ARP
- Defining a Static ARP Cache Entry
- Enabling Proxy ARP
Configuring ARP
Address resolution is the process of mapping network addresses to Media Access Control (MAC) addresses. This process is accomplished using the Address Resolution Protocol (ARP).
Note
For a complete description of the ARP commands listed in this module, refer to the Cisco IOS XR IP Addresses and Services Command Reference for the Cisco XR 12000 Series RouterTo locate documentation of other commands that appear in this module, use the command reference master index, or search online.
- Prerequisites for Configuring ARP
- Restrictions for Configuring ARP
- Information About Configuring ARP
- How to Configure ARP
Information About Configuring ARP
To configure ARP, you must understand the following concepts:
- IP Addressing Overview
- Address Resolution on a Single LAN
- Address Resolution When Interconnected by a Router
- ARP and Proxy ARP
- ARP Cache Entries
IP Addressing Overview
A device in the IP can have both a local address (which uniquely identifies the device on its local segment or LAN) and a network address (which identifies the network to which the device belongs). The local address is more properly known as a data link address, because it is contained in the data link layer (Layer 2 of the OSI model) part of the packet header and is read by data-link devices (bridges and all device interfaces, for example). The more technically inclined person will refer to local addresses as MAC addresses, because the MAC sublayer within the data link layer processes addresses for the layer.
To communicate with a device on Ethernet, for example, Cisco IOS XR software first must determine the 48-bit MAC or local data-link address of that device. The process of determining the local data-link address from an IP address is called address resolution.
Address Resolution on a Single LAN
The following process describes address resolution when the source and destination devices are attached to the same LAN:
End System A broadcasts an ARP request onto the LAN, attempting to learn the MAC address of End System B.
The broadcast is received and processed by all devices on the LAN, including End System B.
Only End System B replies to the ARP request. It sends an ARP reply containing its MAC address to End System A.
End System A receives the reply and saves the MAC address of End System B in its ARP cache. (The ARP cache is where network addresses are associated with MAC addresses.)
Whenever End System A needs to communicate with End System B, it checks the ARP cache, finds the MAC address of System B, and sends the frame directly, without needing to first use an ARP request.
Address Resolution When Interconnected by a Router
The following process describes address resolution when the source and destination devices are attached to different LANs that are interconnected by a router (only if proxy-arp is turned on):
End System Y broadcasts an ARP request onto the LAN, attempting to learn the MAC address of End System Z.
The broadcast is received and processed by all devices on the LAN, including Router X.
Router X checks its routing table and finds that End System Z is located on a different LAN.
Router X therefore acts as a proxy for End System Z. It replies to the ARP request from End System Y, sending an ARP reply containing its own MAC address as if it belonged to End System Z.
End System Y receives the ARP reply and saves the MAC address of Router X in its ARP cache, in the entry for End System Z.
When End System Y needs to communicate with End System Z, it checks the ARP cache, finds the MAC address of Router X, and sends the frame directly, without using ARP requests.
Router X receives the traffic from End System Y and forwards it to End System Z on the other LAN.
ARP and Proxy ARP
Two forms of address resolution are supported by Cisco IOS XR software: Address Resolution Protocol (ARP) and proxy ARP, as defined in RFC 826 and RFC 1027, respectively.
ARP is used to associate IP addresses with media or MAC addresses. Taking an IP address as input, ARP determines the associated media address. After a media or MAC address is determined, the IP address or media address association is stored in an ARP cache for rapid retrieval. Then the IP datagram is encapsulated in a link-layer frame and sent over the network.
When proxy ARP is disabled, the networking device responds to ARP requests received on an interface only if one of the following conditions is met:
The target IP address in the ARP request is the same as the interface IP address on which the request is received.
The target IP address in the ARP request has a statically configured ARP alias.
When proxy ARP is enabled, the networking device also responds to ARP requests that meet all the following conditions:
ARP Cache Entries
ARP establishes correspondences between network addresses (an IP address, for example) and Ethernet hardware addresses. A record of each correspondence is kept in a cache for a predetermined amount of time and then discarded.
You can also add a static (permanent) entry to the ARP cache that persists until expressly removed.
How to Configure ARP
This section contains instructions for the following tasks:
Defining a Static ARP Cache Entry
SUMMARY STEPSARP and other address resolution protocols provide a dynamic mapping between IP addresses and media addresses. Because most hosts support dynamic address resolution, generally you need not to specify static ARP cache entries. If you must define them, you can do so globally. Performing this task installs a permanent entry in the ARP cache. Cisco IOS XR software uses this entry to translate 32-bit IP addresses into 48-bit hardware addresses.
Optionally, you can specify that the software responds to ARP requests as if it were the owner of the specified IP address by making an alias entry in the ARP cache.
DETAILED STEPSEnabling Proxy ARP
SUMMARY STEPSCisco IOS XR software uses proxy ARP (as defined in RFC 1027) to help hosts with no knowledge of routing determine the media addresses of hosts on other networks or subnets. For example, if the router receives an ARP request for a host that is not on the same interface as the ARP request sender, and if the router has all of its routes to that host through other interfaces, then it generates a proxy ARP reply packet giving its own local data-link address. The host that sent the ARP request then sends its packets to the router, which forwards them to the intended host. Proxy ARP is disabled by default; this task describes how to enable proxy ARP if it has been disabled.
DETAILED STEPS
Command or Action Purpose Step 1 configure
Example:RP/0/0/CPU0:router# configureEnters global configuration mode.
Step 2 interface type number
Example:RP/0/0/CPU0:router(config)# interface MgmtEth 0/0/CPU0/0Enters interface configuration mode.
Step 3 proxy-arp
Example:RP/0/0/CPU0:router(config-if)# proxy-arpEnables proxy ARP on the interface.
Step 4 Do one of the following:
Example:RP/0/0/CPU0:router(config-if)# endor
RP/0/0/CPU0:router(config-if)# commitSaves configuration changes.
When you issue the end command, the system prompts you to commit changes:
Uncommitted changes found, commit them before exiting(yes/no/cancel)?[cancel]:
Entering yes saves configuration changes to the running configuration file, exits the configuration session, and returns the router to EXEC mode.
Entering no exits the configuration session and returns the router to EXEC mode without committing the configuration changes.
Entering cancel leaves the router in the current configuration session without exiting or committing the configuration changes.
Use the commit command to save the configuration changes to the running configuration file and remain within the configuration session.