]> git.saurik.com Git - apple/network_cmds.git/blame - arp.tproj/arp.8
network_cmds-328.tar.gz
[apple/network_cmds.git] / arp.tproj / arp.8
CommitLineData
b7080c8e
A
1.\" Copyright (c) 1985, 1991, 1993
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.
b7080c8e
A
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.\"
9c859447
A
28.\" @(#)arp.8 8.1 (Berkeley) 6/6/93
29.\" $FreeBSD: src/usr.sbin/arp/arp.8,v 1.25.2.1 2008/04/25 16:38:14 sam Exp $
b7080c8e 30.\"
9c859447 31.Dd March 18, 2008
b7080c8e 32.Dt ARP 8
9c859447 33.Os
b7080c8e
A
34.Sh NAME
35.Nm arp
36.Nd address resolution display and control
37.Sh SYNOPSIS
9c859447
A
38.Nm
39.Op Fl n
40.Op Fl i Ar interface
b7080c8e 41.Ar hostname
9c859447
A
42.Nm
43.Op Fl n
44.Op Fl i Ar interface
b7080c8e 45.Fl a
9c859447 46.Nm
b7080c8e 47.Fl d Ar hostname
9c859447
A
48.Op Cm pub
49.Op Cm ifscope interface
50.Nm
51.Fl d
52.Op Fl i Ar interface
53.Fl a
54.Nm
b7080c8e 55.Fl s Ar hostname ether_addr
9c859447
A
56.Op Cm temp
57.Op Cm reject
58.Op Cm blackhole
59.Op Cm pub Op Cm only
60.Op Cm ifscope interface
61.Nm
62.Fl S Ar hostname ether_addr
63.Op Cm temp
64.Op Cm reject
65.Op Cm blackhole
66.Op Cm pub Op Cm only
67.Op Cm ifscope interface
68.Nm
b7080c8e
A
69.Fl f Ar filename
70.Sh DESCRIPTION
71The
9c859447
A
72.Nm
73utility displays and modifies the Internet-to-Ethernet address translation
b7080c8e
A
74tables used by the address resolution protocol
75.Pq Xr arp 4 .
76With no flags, the program displays the current
77.Tn ARP
78entry for
79.Ar hostname .
80The host may be specified by name or by number,
81using Internet dot notation.
82.Pp
83Available options:
9c859447 84.Bl -tag -width indent
b7080c8e 85.It Fl a
9c859447 86The program displays or deletes all of the current
b7080c8e
A
87.Tn ARP
88entries.
89.It Fl d
90A super-user may delete an entry for the host called
91.Ar hostname
92with the
93.Fl d
94flag.
9c859447
A
95If the
96.Cm pub
97keyword is specified, only the
98.Dq published
99.Tn ARP
100entry
101for this host will be deleted.
102If the
103.Cm ifscope
104keyword is specified, the entry specific to the interface will be deleted.
105.Pp
106Alternatively, the
107.Fl d
108flag may be combined with the
109.Fl a
110flag to delete all entries.
111.It Fl i Ar interface
112Limit the operation scope to the
113.Tn ARP
114entries on
115.Ar interface .
116Applicable only to the following operations:
117display one, display all, delete all.
118.It Fl n
119Show network addresses as numbers (normally
120.Nm
121attempts to display addresses symbolically).
b7080c8e
A
122.It Fl s Ar hostname ether_addr
123Create an
124.Tn ARP
125entry for the host called
126.Ar hostname
9c859447 127with the Ethernet address
b7080c8e
A
128.Ar ether_addr .
129The Ethernet address is given as six hex bytes separated by colons.
130The entry will be permanent unless the word
9c859447
A
131.Cm temp
132is given in the command.
b7080c8e 133If the word
9c859447
A
134.Cm pub
135is given, the entry will be
136.Dq published ;
137i.e., this system will
b7080c8e
A
138act as an
139.Tn ARP
140server,
9c859447 141responding to requests for
b7080c8e
A
142.Ar hostname
143even though the host address is not its own.
9c859447
A
144In this case the
145.Ar ether_addr
146can be given as
147.Cm auto
148in which case the interfaces on this host will be examined,
149and if one of them is found to occupy the same subnet, its
150Ethernet address will be used.
151If the
152.Cm only
153keyword is also specified, this will create a
154.Dq "published (proxy only)"
155entry.
156This type of entry is created automatically if
157.Nm
158detects that a routing table entry for
159.Ar hostname
160already exists.
161.Pp
162If the
163.Cm reject
164keyword is specified the entry will be marked so that traffic to
165the host will be discarded and the sender will be notified the
166host is unreachable.
167The
168.Cm blackhole
169keyword is similar in that traffic is discarded but the sender is
170not notified.
171These can be used to block external traffic to a host without
172using a firewall.
173.Pp
174If the
175.Cm ifscope
176keyword is specified, the entry will set with an additional property that
177strictly associate the entry to the interface. This allows
178for the presence of mutiple entries with the same destination
179on different interfaces.
180.It Fl S Ar hostname ether_addr
181Is just like
182.Fl s
183except any existing
184.Tn ARP
185entry for this host will be deleted first.
186.It Fl f Ar filename
187Cause the file
b7080c8e
A
188.Ar filename
189to be read and multiple entries to be set in the
190.Tn ARP
9c859447
A
191tables.
192Entries
b7080c8e
A
193in the file should be of the form
194.Pp
9c859447 195.Bd -ragged -offset indent -compact
b7080c8e 196.Ar hostname ether_addr
9c859447
A
197.Op Cm temp
198.Op Cm pub Op Cm only
199.Op Cm ifscope interface
b7080c8e
A
200.Ed
201.Pp
202with argument meanings as given above.
9c859447
A
203Leading whitespace and empty lines are ignored.
204A
205.Ql #
206character will mark the rest of the line as a comment.
b7080c8e
A
207.El
208.Sh SEE ALSO
209.Xr inet 3 ,
210.Xr arp 4 ,
211.Xr ifconfig 8
212.Sh HISTORY
213The
214.Nm
9c859447
A
215utility appeared in
216.Bx 4.3 .