The Air Raid Patrol (ARP) Wardens were responsible for patrolling British cities, towns, and villages during the Blitz. They were there to enforce the Blackout and ensure that no lights were visible that could be used by enemy planes to help them target. If there were bombs falling then they were also resposible for helping organise the emergency response.

There is a less than complimentary portrayal of an Air Raid Warden in the character of Hodges in the BBC Comedy "Dad's Army".

ARP in computing is the Address Resolution Protocol. It works at layer two of the OSI model to find the hardware address of a network adapter. In ethernet the physical address is refered to as a Media Access Control address, or more often by its TLA a MAC address

In addition to being the Address Resolution Protocol, there is a UNIX command called arp. It helps to find duplicated IP addresses and MAC identities.


> arp -a

mother (192.168.0.2) at 0:0:e0:c2:1:ad permanent
titan  (192.168.0.5) at 0:0:c2:ae:4:12
arista (192.168.0.4) at 0:0:2:23:a1:ad
rooter (192.168.0.1) at 0:0:ae:f2:aa:1 permanent

>

Typing in arp -a gives you the IP addresses and MAC IDs for each host on the network. The first item is the name, the second item is the IP address, the third item is the MAC, and any additional notes are appended thereafter. There are two permanent devices installed on the network, and are static in the arp table until manually deleted using the arp -d command. To add a permanent entry, use the arp -s command.

Also, ARP Instruments, a electronic instruments company that was in business from 1969 through 1981. ARP produced a line of electronics synthesizers that have recently begun to become popular in modern electronic music. See also DJ Andrea Parker, ARP 2600, and ARP Odyssey.

A quick and dirty guide as to how addresses are resolved using Address Resolution Protocol

I will explain using the powerful art of example. In this example I am using a Class C network with a network address of 192.168.46.0. There are a four hosts, numbered 1 through 4. To keep things standard I will refer to hosts by their full IP address.

If 192.168.46.1 wanted to contact 192.168.46.4 it needs 192.168.46.1's MAC Address. Simply put, it needs to resolve a MAC Address from an IP address. So first off it sends a packet with a MAC broadcast address on the network interface layer and 192.168.46.4 on the internet layer. This means that all network cards read the packet to the next layer, comparing the IP address with its own. When 192.168.46.4 receives the packet, it replies with its MAC address and a unicast communication is now possible.

But wait! What if the two hosts are on different networks? The router will stop the broadcast from going any further. Well, not quite, if this happened the internet wouldn't work. Routers have another job, and it is for this job they are named.

     192.168.46.1           192.168.46.3                   131.107.5.12
         |                     |                 |----|          |
|--------|---------|-----------|-----|-----------| R  |----------|
                   |                 |           |____|
                192.168.46.3     192.168.46.4
  
If 192.168.46.1 wants a unicast communication with 131.107.5.12, how does this happen? First off 192.168.46.1 would employ its subnet mask and would discover that the network address 131.107.5.0 was different from its own network address of 192.168.48.0 (131.107.5.0 is not the correct network address of that network since it is not a class C network, but 192.168.46.1 doesn't know this. For the record, the correct network address is 131.107.0.0). Since it is not on the same network, 192.168.46.1 sends an ARP broadcast to get the MAC address of its own router. Once a unicast communication with the router is established 192.168.46.1 can send the router the IP address of 131.107.5.12.

The router then sends an ARP broadcast to 131.107.255.255, gets the relevant MAC address as described in the original example, and establishes the communication this way.

To avoid the constant ARP broadcasts, each computer can cache MAC addresses, the default time for which is 10 minutes.

Log in or register to write something here or to contact authors.