Blame man/man8/arpd.8

Packit Service 3880ab
.TH ARPD 8 "28 June, 2007"
Packit Service 3880ab
Packit Service 3880ab
.SH NAME
Packit Service 3880ab
arpd \- userspace arp daemon.
Packit Service 3880ab
Packit Service 3880ab
.SH SYNOPSIS
Packit Service 3880ab
Usage: arpd [ -lkh? ] [ -a N ] [ -b dbase ] [ -B number ] [ -f file ] [-p interval ] [ -n time ] [ -R rate ] [ <INTERFACES> ]
Packit Service 3880ab
Packit Service 3880ab
.SH DESCRIPTION
Packit Service 3880ab
The
Packit Service 3880ab
.B arpd
Packit Service 3880ab
daemon collects gratuitous ARP information, saving it on local disk and feeding it to the kernel on demand to avoid redundant broadcasting due to limited size of the kernel ARP cache.
Packit Service 3880ab
Packit Service 3880ab
.SH OPTIONS
Packit Service 3880ab
.TP
Packit Service 3880ab
-h -?
Packit Service 3880ab
Print help
Packit Service 3880ab
.TP
Packit Service 3880ab
-l
Packit Service 3880ab
Dump the arpd database to stdout and exit. The output consists of three columns: the interface index, the IP address of the interface, and the MAC address of the interface. Negative entries for dead hosts are also shown, in this case the MAC address is replaced by the word FAILED followed by a colon and the most recent time when the fact that the host is dead was proven.
Packit Service 3880ab
.TP
Packit Service 3880ab
-f <FILE>
Packit Service 3880ab
Read and load an arpd database from FILE in a text format similar to that dumped by option -l. Exit after load, possibly listing resulting database, if option -l is also given. If FILE is -, stdin is read to get the ARP table.
Packit Service 3880ab
.TP
Packit Service 3880ab
-b <DATABASE>
Packit Service 3880ab
the location of the database file. The default location is /var/lib/arpd/arpd.db
Packit Service 3880ab
.TP
Packit Service 3880ab
-a <NUMBER>
Packit Service 3880ab
With this option, arpd not only passively listens for ARP packets on the interface, but also sends broadcast queries itself. NUMBER is the number of such queries to make before a destination is considered dead. When arpd is started as kernel helper (i.e. with app_solicit enabled in sysctl or even with option -k) without this option and still did not learn enough information, you can observe 1 second gaps in service. Not fatal, but not good.
Packit Service 3880ab
.TP
Packit Service 3880ab
-k
Packit Service 3880ab
Suppress sending broadcast queries by the kernel. This option only makes sense together with option -a.
Packit Service 3880ab
.TP
Packit Service 3880ab
-n <TIME>
Packit Service 3880ab
Specifies the timeout of the negative cache. When resolution fails, arpd suppresses further attempts to resolve for this period. This option only makes sense together with option '-k'. This timeout should not be too much longer than the boot time of a typical host not supporting gratuitous ARP. Default value is 60 seconds.
Packit Service 3880ab
.TP
Packit Service 3880ab
-p <TIME>
Packit Service 3880ab
The time to wait in seconds between polling attempts to the kernel ARP table. TIME may be a floating point number. The default value is 30.
Packit Service 3880ab
.TP
Packit Service 3880ab
-R <RATE>
Packit Service 3880ab
Maximal steady rate of broadcasts sent by arpd in packets per second. Default value is 1.
Packit Service 3880ab
.TP
Packit Service 3880ab
-B <NUMBER>
Packit Service 3880ab
The number of broadcasts sent by arpd back to back. Default value is 3. Together with the -R option, this option ensures that the number of ARP queries that are broadcast does not exceed B+R*T over any interval of time T.
Packit Service 3880ab
.P
Packit Service 3880ab
<INTERFACES> is a list of names of networking interfaces to watch. If no interfaces are given, arpd monitors all the interfaces. In this case arpd does not adjust sysctl parameters, it is assumed that the user does this himself after arpd is started.
Packit Service 3880ab
.P
Packit Service 3880ab
.SH SIGNALS
Packit Service 3880ab
.TP
Packit Service 3880ab
When arpd receives a SIGINT or SIGTERM signal, it exits gracefully, syncing the database and restoring adjusted sysctl parameters. On a SIGHUP it syncs the database to disk. With SIGUSR1 it sends some statistics to syslog. The effect of any other signals is undefined. In particular, they may corrupt the database and leave the sysctl parameters in an unpredictable state.
Packit Service 3880ab
.P
Packit Service 3880ab
.SH NOTE
Packit Service 3880ab
.TP
Packit Service 3880ab
In order for arpd to be able to serve as ARP resolver, the kernel must be compiled with the option CONFIG_ARPD and, in the case when interface list in not given on command line, variable app_solicit on interfaces of interest should be in /proc/sys/net/ipv4/neigh/*. If this is not made arpd still collects gratuitous ARP information in its database.
Packit Service 3880ab
.SH EXAMPLES
Packit Service 3880ab
.TP
Packit Service 3880ab
arpd -b /var/tmp/arpd.db
Packit Service 3880ab
Start arpd to collect gratuitous ARP, but not messing with kernel functionality.
Packit Service 3880ab
.TP
Packit Service 3880ab
killall arpd ; arpd -l -b /var/tmp/arpd.db
Packit Service 3880ab
Look at result after some time.
Packit Service 3880ab
.TP
Packit Service 3880ab
arpd -b /var/tmp/arpd.db -a 1 eth0 eth1
Packit Service 3880ab
Enable kernel helper, leaving leading role to kernel.
Packit Service 3880ab
.TP
Packit Service 3880ab
arpd -b /var/tmp/arpd.db -a 3 -k eth0 eth1
Packit Service 3880ab
Completely replace kernel resolution on interfaces eth0 and eth1. In this case the kernel still does unicast probing to validate entries, but all the broadcast activity is suppressed and made under authority of arpd.
Packit Service 3880ab
.PP
Packit Service 3880ab
This is the mode in which arpd normally is supposed to work. It is not the default to prevent occasional enabling of too aggressive a mode.