Q. Recently we made changes to our server hardware and swapped all IP address from old to a new server. However, 2 IP addresses are not get updated due to arp cache issues (IPs are cached on the router). They are going to other servers. How do I solve this problem under Redhat Enterprise Linux version 5.0 or any other Linux distribution?
A. ARP is used to resolve IP address to the corresponding Ethernet address. ARP maintains the mapping between IP address and MAC address in a table in memory called ARP cache. The entries in this table are dynamically added and removed.
This is common and well known problem. Most ISPs and network admin configure their routers with a long ARP cache timeout. As a result your requests are going to other server. If you move IP address it may take hours before server can communicate with the Internet (correct server). To get rid of this problem you need to request the MAC address for its own IP which will cause routers and other hardware update ARP cache. This is called as 'unsolicited ARP' or 'gratuitous ARP'.
arping command - To sends an ARP request to resolve its own IP address (gratuitous ARP)
There are two versions of arping, you need a version written by Alexey Kuznetsov. Both Debian and RHEL has Alexey arping command version. Type the following command to update arp cache:
# arping -U -I {Interface-Name} {IP-Address}
# arping -U -I eth1 72.2.1.2
Where,
- -U : Unsolicited ARP mode to update neighbours’ ARP caches. No replies are expected.
- -I eth1 : Name of network device where to send ARP REQUEST packets. This is required.
- 72.2.1.2 : IP address
There is also another tool called send_arp from the High-Availability Linux Project for same purpose.
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop



![HowTo: Linux Send a Gratuitous ARPs Requests [ Networking ]](http://s13.cyberciti.org/images/shared/rp/3/20.jpg)









{ 5 comments… read them below or add one }
You can use /sbin/arp with option -a to show the current arp table. And then use option -d to delete the old entry of your server. It will be learned again immediately when needed.
I know this is an ancient post, but I wanted to clear this up:
Emil, that doesn’t affect your gateway router’s arp table, which is the source of the problem. If you move an IP between two machines, the gateway loses track of where it is, and tries to send traffic for it to the wrong MAC address. This can also affect managed switches to some degree, although not as much. The trick in the post is the equivalent of making your computer say ‘HEY DUMMY! THE IP IS OVER HERE NOW!”
In debian (lenny) there’s two arping packages: arping and iputils-arping. This article refers to the iputils-arping version.
Thank you Fredrik for mentioning that. I was having a lot of trouble because I was using the Thomas Habets version of ‘arping’ http://www.habets.pp.se/synscan/docs/arping.8.html that you get through ‘apt-get install arping’ on debian.
To install the ‘Alexey Kuznetsov’ version you need to use ‘apt-get install iputils-arping’ which uses the syntax above.
Thanks guys, was having a problem on a hotel network – the router was continually asking for my MAC and never getting a reply from me.
I used “arping -U 192.168.0.121 -I wlan0″ and the network started working a treat
arping FTW