]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.sbin/arp/arp.4
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.sbin / arp / arp.4
1 .\" Copyright (c) 1985, 1986, 1988, 1994
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)arp4.4      6.5 (Berkeley) 4/18/94
29 .\" $FreeBSD$
30 .\"
31 .Dd May 11, 2013
32 .Dt ARP 4
33 .Os
34 .Sh NAME
35 .Nm arp
36 .Nd Address Resolution Protocol
37 .Sh SYNOPSIS
38 .Cd "device ether"
39 .Sh DESCRIPTION
40 The Address Resolution Protocol (ARP) is used to dynamically
41 map between Protocol Addresses (such as IP addresses) and
42 Local Network Addresses (such as Ethernet addresses).
43 This implementation maps IP addresses to Ethernet,
44 ARCnet,
45 or Token Ring addresses.
46 It is used by all the Ethernet interface drivers.
47 .Pp
48 ARP caches Internet-Ethernet address mappings.
49 When an interface requests a mapping for an address not in the cache,
50 ARP queues the message which requires the mapping and broadcasts
51 a message on the associated network requesting the address mapping.
52 If a response is provided, the new mapping is cached and any pending
53 message is transmitted.
54 ARP will queue at most one packet while waiting for a response to a
55 mapping request;
56 only the most recently ``transmitted'' packet is kept.
57 If the target host does not respond after several requests,
58 the host is considered to be down allowing an error to be returned to
59 transmission attempts.
60 Further demand for this mapping causes ARP request retransmissions, that
61 are ratelimited to one packet per second.
62 The error is
63 .Er EHOSTDOWN
64 for a non-responding destination host, and
65 .Er EHOSTUNREACH
66 for a non-responding router.
67 .Pp
68 The ARP cache is stored in the system routing table as
69 dynamically-created host routes.
70 The route to a directly-attached Ethernet network is installed as a
71 .Dq cloning
72 route (one with the
73 .Li RTF_CLONING
74 flag set),
75 causing routes to individual hosts on that network to be created on
76 demand.
77 These routes time out periodically (normally 20 minutes after validated;
78 entries are not validated when not in use).
79 .Pp
80 ARP entries may be added, deleted or changed with the
81 .Xr arp 8
82 utility.
83 Manually-added entries may be temporary or permanent,
84 and may be
85 .Dq published ,
86 in which case the system will respond to ARP requests for that host
87 as if it were the target of the request.
88 .Pp
89 In the past,
90 ARP was used to negotiate the use of a trailer encapsulation.
91 This is no longer supported.
92 .Pp
93 ARP watches passively for hosts impersonating the local host (i.e., a host
94 which responds to an ARP mapping request for the local host's address).
95 .Pp
96 Proxy ARP is a feature whereby the local host will respond to requests
97 for addresses other than itself, with its own address.
98 Normally, proxy ARP in
99 .Fx
100 is set up on a host-by-host basis using the
101 .Xr arp 8
102 utility, by adding an entry for each host inside a given subnet for
103 which proxying of ARP requests is desired.
104 However, the
105 .Dq "proxy all"
106 feature causes the local host to act as a proxy for
107 .Em all
108 hosts reachable through some other network interface,
109 different from the one the request came in from.
110 It may be enabled by setting the
111 .Xr sysctl 8
112 MIB variable
113 .Va net.link.ether.inet.proxyall
114 to 1.
115 .Sh MIB Variables
116 The ARP protocol implements a number of configurable variables in
117 .Va net.link.ether.inet
118 branch
119 of the
120 .Xr sysctl 3
121 MIB.
122 .Bl -tag -width "log_arp_permanent_modify"
123 .It Va allow_multicast
124 Should the kernel install ARP entries with multicast bit set in
125 the hardware address.
126 Installing such entries is RFC 1812 violation, but some prorietary
127 load balancing techniques require routers on network to do so.
128 Turned off by default.
129 .It Va log_arp_movements
130 Should the kernel log movements of IP addresses from one hardware
131 address to an other.
132 See
133 .Sx DIAGNOSTICS
134 below.
135 Turned on by default.
136 .It Va log_arp_permanent_modify
137 Should the kernel log attempts of remote host on network to modify a
138 permanent ARP entry.
139 See
140 .Sx DIAGNOSTICS
141 below.
142 Turned on by default.
143 .It Va log_arp_wrong_iface
144 Should the kernel log attempts to insert an ARP entry on an interface
145 when the IP network the address belongs to is connected to an other
146 interface.
147 See
148 .Sx DIAGNOSTICS
149 below.
150 Turned on by default.
151 .It Va max_log_per_second
152 Limit number of remotely triggered logging events to a configured value
153 per second.
154 Default is 1 log message per second.
155 .It Va max_age
156 How long an ARP entry is held in the cache until it needs to be refreshed.
157 Default is 1200 seconds.
158 .It Va maxhold
159 How many packets hold in the per-entry output queue while the entry
160 is being resolved.
161 Default is one packet.
162 .It Va maxtries
163 Number of retransmits before host is considered down and error is returned.
164 Default is 5 tries.
165 .It Va proxyall
166 Enables ARP proxying for all hosts on net.
167 Turned off by default.
168 .It Va useloopback
169 If an ARP entry is added for local address, force the traffic to go through
170 the loopback interface.
171 Turned on by default.
172 .It Va wait
173 Lifetime of an incomplete ARP entry.
174 Default is 20 seconds.
175 .El
176 .Sh DIAGNOSTICS
177 .Bl -diag
178 .It "arp: %x:%x:%x:%x:%x:%x is using my IP address %d.%d.%d.%d on %s!"
179 ARP has discovered another host on the local network which responds to
180 mapping requests for its own Internet address with a different Ethernet
181 address, generally indicating that two hosts are attempting to use the
182 same Internet address.
183 .It "arp: link address is broadcast for IP address %d.%d.%d.%d!"
184 ARP requested information for a host, and received an answer indicating
185 that the host's ethernet address is the ethernet broadcast address.
186 This indicates a misconfigured or broken device.
187 .It "arp: %d.%d.%d.%d moved from %x:%x:%x:%x:%x:%x to %x:%x:%x:%x:%x:%x on %s"
188 ARP had a cached value for the ethernet address of the referenced host,
189 but received a reply indicating that the host is at a new address.
190 This can happen normally when host hardware addresses change,
191 or when a mobile node arrives or leaves the local subnet.
192 It can also indicate a problem with proxy ARP.
193 This message can only be issued if the sysctl
194 .Va net.link.ether.inet.log_arp_movements
195 is set to 1, which is the system's default behaviour.
196 .It "arpresolve: can't allocate llinfo for %d.%d.%d.%d"
197 The route for the referenced host points to a device upon which ARP is
198 required, but ARP was unable to allocate a routing table entry in which
199 to store the host's MAC address.
200 This usually points to a misconfigured routing table.
201 It can also occur if the kernel cannot allocate memory.
202 .It "arp: %d.%d.%d.%d is on if0 but got reply from %x:%x:%x:%x:%x:%x on if1"
203 Physical connections exist to the same logical IP network on both if0 and if1.
204 It can also occur if an entry already exists in the ARP cache for the IP
205 address above, and the cable has been disconnected from if0, then reconnected
206 to if1.
207 This message can only be issued if the sysctl
208 .Va net.link.ether.inet.log_arp_wrong_iface
209 is set to 1, which is the system's default behaviour.
210 .It "arp: %x:%x:%x:%x:%x:%x attempts to modify permanent entry for %d.%d.%d.%d on %s"
211 ARP has received an ARP reply that attempts to overwrite a permanent
212 entry in the local ARP table.
213 This error will only be logged if the sysctl
214 .Va net.link.ether.inet.log_arp_permanent_modify
215 is set to 1, which is the system's default behaviour.
216 .It "arp: %x:%x:%x:%x:%x:%x is multicast"
217 Kernel refused to install an entry with multicast hardware address.
218 If you really want such addresses being installed, set the sysctl
219 .Va net.link.ether.inet.allow_multicast
220 to a positive value.
221 .El
222 .Sh SEE ALSO
223 .Xr inet 4 ,
224 .Xr route 4 ,
225 .Xr arp 8 ,
226 .Xr ifconfig 8 ,
227 .Xr route 8 ,
228 .Xr sysctl 8
229 .Rs
230 .%A Plummer, D.
231 .%B "An Ethernet Address Resolution Protocol"
232 .%T RFC826
233 .Re
234 .Rs
235 .%A Leffler, S.J.
236 .%A Karels, M.J.
237 .%B "Trailer Encapsulations"
238 .%T RFC893
239 .Re