diff options
Diffstat (limited to 'usr.sbin/ripd/ripd.8')
-rw-r--r-- | usr.sbin/ripd/ripd.8 | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/usr.sbin/ripd/ripd.8 b/usr.sbin/ripd/ripd.8 new file mode 100644 index 00000000000..42092db8d0d --- /dev/null +++ b/usr.sbin/ripd/ripd.8 @@ -0,0 +1,81 @@ +.\" $OpenBSD: ripd.8,v 1.1 2006/10/18 16:11:58 norby Exp $ +.\" +.\" Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it> +.\" Copyright (c) 2004, 2005, 2006 Esben Norby <norby@openbsd.org> +.\" +.\" Permission to use, copy, modify, and distribute this software for any +.\" purpose with or without fee is hereby granted, provided that the above +.\" copyright notice and this permission notice appear in all copies. +.\" +.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +.\" +.Dd February 27, 2006 +.Dt RIPD 8 +.Os +.Sh NAME +.Nm ripd +.Nd "Routing Information Protocol daemon" +.Sh SYNOPSIS +.Nm +.Op Fl dnv +.Op Fl f Ar file +.Sh DESCRIPTION +.Nm +is the Routing Information Protocol +.Pq RIP +daemon which manages routers' routing tables. +For RIPD to work, +multicast routing must be enabled by setting multicast_router=YES in +.Pa /etc/rc.conf.local . +.Pp +The options are as follows: +.Bl -tag -width Ds +.It Fl d +Do not daemonize. +If this option is specified, +.Nm +will run in the foreground and log to +.Em stderr . +.It Fl f Ar file +Specify an alternative configuration file. +.It Fl n +Configtest mode. +Only check the configuration file for validity. +.It Fl v +Produce more verbose output. +.El +.Sh FILES +.Bl -tag -width "/var/run/ripd.sockXX" -compact +.It /etc/ripd.conf +Default +.Nm +configuration file. +.It /var/run/ripd.sock +Unix-domain socket used for communication with +.Xr ripctl 8 . +.El +.Sh SEE ALSO +.Xr ripd.conf 5 , +.Xr rc.conf 8 , +.Xr ripctl 8 +.Rs +.%R RFC 2453 +.%T RIP Version 2 +.%D November 1998 +.Re +.Rs +.%R RFC 2082 +.%T "RIP-2 MD5 Authentication" +.%D January 1997 +.Re +.Sh HISTORY +The +.Nm +program first appeared in +.Ox 4.0 . |