No empty .Rs/.Re
[netbsd-mini2440.git] / usr.sbin / ifwatchd / ifwatchd.8
blobaede538ea7320f4485fa4b60c4e5b9a1b0b409f1
1 .\" $NetBSD: ifwatchd.8,v 1.24 2008/04/30 13:11:02 martin Exp $
2 .\"
3 .\" Copyright (c) 2001-2003 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
5 .\"
6 .\" This code is derived from software contributed to The NetBSD Foundation
7 .\" by Martin Husemann <martin@NetBSD.org>.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\"    notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in the
16 .\"    documentation and/or other materials provided with the distribution.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 .\" POSSIBILITY OF SUCH DAMAGE.
29 .\"
30 .Dd November 4, 2004
31 .Dt IFWATCHD 8
32 .Os
33 .Sh NAME
34 .Nm ifwatchd
35 .Nd "watch for addresses added to or deleted from interfaces and call up/down-scripts for them"
36 .Sh SYNOPSIS
37 .Nm
38 .Op Fl hiqv
39 .Op Fl A Ar arrival-script
40 .Op Fl c Ar carrier-script
41 .Op Fl D Ar departure-script
42 .Op Fl d Ar down-script
43 .Op Fl u Ar up-script
44 .Op Fl n Ar no-carrier-script
45 .Ar ifname(s)
46 .Sh DESCRIPTION
47 .Nm
48 is used to monitor dynamic interfaces (for example PPP interfaces)
49 for address changes, and to monitor static interfaces for carrier
50 changes.
51 Sometimes these interfaces are accompanied by a daemon program,
52 which can take care of running any necessary scripts (like
53 .Xr pppd 8
55 .Xr isdnd 8 ) ,
56 but sometimes the interfaces run completely autonomously (like
57 .Xr pppoe 4 ) .
58 .Pp
59 .Nm
60 provides a generic way to watch these types of changes.
61 It works by monitoring the routing socket and interpreting
62 .Ql RTM_NEWADDR
63 .Pq address added ,
64 .Ql RTM_DELADDR
65 .Pq address deleted
66 and
67 .Ql RTM_IFINFO
68 .Pq carrier detect or loss of carrier
69 messages.
70 It does not need special privileges to do this.
71 The scripts called for up or down events are run with the same user
72 id as
73 .Nm
74 is run.
75 .Pp
76 The following options are available:
77 .Bl -tag -width indent
78 .It Fl A Ar arrival-script
79 Specify the command to invoke on arrival of new interfaces (like
80 PCMCIA cards).
81 .It Fl c Ar carrier-script
82 Specify the command to invoke when the carrier status transitions from
83 no carrier to carrier.
84 .It Fl D Ar departure-script
85 Specify the command to invoke when an interface departs (for example
86 a PCMCIA card is removed.)
87 .It Fl d Ar down-script
88 Specify the command to invoke on
89 .Dq interface down
90 events (or: deletion of an address from an interface).
91 .It Fl h
92 Show the synopsis.
93 .It Fl i
94 Inhibit a call to the up-script on startup for all watched interfaces
95 already marked up.
96 If this option is not given,
97 .Nm
98 will check all watched interfaces on startup whether they are
99 already marked up and, if they are, call the up-script with
100 appropriate parameters.
101 Additionally, if the interface is up and has a link,
103 will run the carrier script.
105 Since ifwatchd typically is started late in the system boot sequence,
106 some of the monitored interfaces may already have come up when it
107 finally starts, but their up-scripts have not been called.
108 By default
110 calls them on startup to account for this (and make the scripts
111 easier.)
112 .It Fl n Ar no-carrier-script
113 Specify the command to invoke when the carrier status transitions from
114 carrier to no carrier.
115 .It Fl q
116 Be quiet and don't log non-error messages to syslog.
117 .It Fl u Ar up-script
118 Specify the command to invoke on
119 .Dq interface up
120 events (or: addition of an address to an interface).
121 .It Fl v
122 Run in verbose debug mode and do not detach from the controlling
123 terminal.
124 Output verbose progress messages and flag errors ignored during
125 normal operation.
126 .Em You do not want to use this option in
127 .Pa /etc/rc.conf !
128 .It Ar ifname(s)
129 The name of the interface to watch.
130 Multiple interfaces may be specified.
131 Events for other interfaces are ignored.
133 .Sh EXAMPLES
134 .Bd -literal -offset indent
135 # ifwatchd -u /etc/ppp/ip-up -d /etc/ppp/ip-down pppoe0
138 If your pppoe0 interface is your main connection to the internet,
139 the typical use of the up/down scripts is to add and remove a
140 default route.
141 This is an example for an up script doing this:
142 .Bd -literal -offset indent
143 #! /bin/sh
144 /sbin/route add default $5
147 As described below the fifth command line parameter will contain
148 the peer address of the pppoe link.
149 The corresponding ip-down script is:
150 .Bd -literal -offset indent
151 #! /bin/sh
152 /sbin/route delete default $5
155 Note that this is not a good idea if you have pppoe0 configured to
156 connect only on demand (via the link1 flag), but works well for
157 all permanent connected cases.
159 .Bd -literal -offset indent
160 ! /sbin/route add default -iface 0.0.0.1
163 in your
164 .Pa /etc/ifconfig.pppoe0
165 file in the on-demand case.
167 The next example is for dhclient users.
168 .Bd -literal -offset indent
169 # ifwatchd -i -c /etc/dhcp/carrier-detect tlp0
172 With the above command, the carrier-detect script will be invoked when
173 a carrier is detected on the interface 
174 .Ar tlp0 .
175 Note that the
176 .Ar -i 
177 flag prevents any action based on the initial state.
178 A script like the following should work for most users, although it
179 will not work for machines with multiple interfaces running 
180 .Cm dhclient .
181 .Bd -literal -offset indent
182 #! /bin/sh
183 # Arguments:  ifname tty speed address destination
184 # If there is a dhclient already running, kill it.
185 # (This step could be put in a distinct no-carrier script,
186 # if desired.)
187 if [ -f /var/run/dhclient.pid ]; then
188        /bin/kill `/bin/cat /var/run/dhclient.pid`
190 # Start dhclient again on this interface
191 /sbin/dhclient $1
193 .Sh PARAMETERS PASSED TO SCRIPTS
194 The invoked scripts get passed these parameters:
195 .Bl -tag -width destination
196 .It Ar ifname
197 The name of the interface this change is for (this allows to share
198 the same script for multiple interfaces watched and dispatching on
199 the interface name in the script).
200 .It Ar tty
201 Dummy parameter for compatibility with
202 .Xr pppd 8
203 which will always be
204 .Em /dev/null .
205 .It Ar speed
206 Dummy parameter for compatibility with
207 .Xr pppd 8
208 which will always be
209 .Em 9600 .
210 .It Ar address
211 The new address if this is an up event, or the no longer valid old
212 address if this is a down event.
214 The format of the address depends on the address family, for IPv4
215 it is the usual dotted quad notation, for IPv6 the colon separated
216 standard notation.
217 .It Ar destination
218 For point to point interfaces, this is the remote address of the
219 interface.
220 For other interfaces it is the broadcast address.
222 .Sh ERRORS
223 The program logs to the syslog daemon as facility
224 .Dq daemon .
225 For detailed debugging use the
226 .Fl v
227 (verbose) option.
228 .Sh SEE ALSO
229 .Xr pppoe 4 ,
230 .Xr route 4 ,
231 .Xr ifconfig.if 5 ,
232 .Xr rc.d 8 ,
233 .Xr route 8
234 .Sh HISTORY
237 utility appeared in
238 .Nx 1.6 .
239 .Sh AUTHORS
240 The program was written by
241 .An Martin Husemann
242 .Aq martin@NetBSD.org .
243 .Sh CAVEATS
244 Due to the nature of the program a lot of stupid errors can not
245 easily be caught in advance without removing the provided facility
246 for advanced uses.
247 For example typing errors in the interface name can not be detected
248 by checking against the list of installed interfaces, because it
249 is possible for a pcmcia card with the name given to be inserted
250 later.