blob: e15989ffaab8a18f8616baa104d283305a989b95 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001.TH RIPD 8 "July 2000" "Zebra" "Version 0.88"
2
3.SH NAME
4ripd \- a RIP routing engine for use with Zebra
5
6.SH SYNOPSIS
7.B ripd
8[
9.B \-dhrv
10]
11[
12.B \-f config-file
13]
14[
15.B \-i pid-file
16]
17[
18.B \-P port-number
19]
20
21.SH DESCRIPTION
22.B ripd
23is a routing component that supports the
24.B zebra
25route engine.
26.B ripd
27supports RIPv1, RIPv2, and so forth.
28
29
30.SH OPTIONS
31
32.TP
33\fB\-d\fR, \fB\-\-daemon\fR
34Runs in daemon mode, forking and exiting from tty.
35
36.TP
37\fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR
38Specifies the config file to use for startup. If not specified this option will likely default to \fB\fI/usr/local/etc/ripd.conf\fR.
39
40.TP
41\fB\-h\fR, \fB\-\-help\fR
42A brief message.
43
44.TP
45\fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR
46When ripd starts its process idenifier is written to
47\fB\fIpid-file\fR. The init system uses the recorded PID to stop or
48restart ripd. The likely default is \fB\fI/var/run/ripd.pid\fR.
49
50.TP
51\fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR
52Specify the port that the ripd VTY will listen on. This defaults to
532602, as specified in \fB\fI/etc/services\fR.
54
55.TP
56\fB\-r\fR, \fB\-\-retain\fR
57When the program terminates, retain routes added by \fBripd\fR.
58
59.TP
60\fB\-v\fR, \fB\-\-version\fR
61Print the version and exit.
62
63
64.SH COMMANDS
65
66\fB router rip \fR
67\fB no router rip \fR
68
69\fB rip version [1|2] \fR
70\fB no rip version [1|2] \fR
71
72\fB network [A.B.C.D/M] \fR
73\fB no network [A.B.C.D/M] \fR
74
75\fB network [IFNAME] \fR
76\fB no network [IFNAME] \fR
77
78\fB neighbor [A.B.C.D] \fR
79\fB no neighbor [A.B.C.D] \fR
80
81\fB redistribute kernel \fR
82\fB redistribute kernel metric [METRIC]\fR
83\fB redistribute kernel route-map [ROUTE-MAP]\fR
84\fB no redistribute kernel \fR
85
86\fB redistribute static \fR
87\fB redistribute static metric [METRIC]\fR
88\fB redistribute static route-map [ROUTE-MAP]\fR
89\fB no redistribute static \fR
90
91\fB redistribute connected \fR
92\fB redistribute connected metric [METRIC]\fR
93\fB redistribute connected route-map [ROUTE-MAP]\fR
94\fB no redistribute connected \fR
95
96\fB redistribute ospf \fR
97\fB redistribute ospf metric [METRIC]\fR
98\fB redistribute ospf route-map [ROUTE-MAP]\fR
99\fB no redistribute ospf \fR
100
101\fB redistribute bgp \fR
102\fB redistribute bgp metric [METRIC]\fR
103\fB redistribute bgp route-map [ROUTE-MAP]\fR
104\fB no redistribute bgp \fR
105
106\fB route [A.B.C.D/M] \fR
107\fB no route [A.B.C.D/M] \fR
108
109\fB default-information originate \fR
110\fB no default-information originate \fR
111
112\fB default-metric [METRIC] \fR
113\fB no default-metric [METRIC] \fR
114
115\fB passive-interface [IFNAME] \fR
116\fB no passive-interface [IFNAME] \fR
117
118\fB offset-list [ACCESS-LIST] [in|out]\fR
119\fB offset-list [ACCESS-LIST] [in|out] [IFNAME]\fR
120\fB no offset-list [ACCESS-LIST] [in|out]\fR
121
122\fB timers basic [UPDATE-INTERVAL] [INVALID] [TIMEOUT] [GARBAGE-COLLECT] \fR
123\fB no timers basic \fR
124
125\fB distribute-list [ACCESS-LIST] [in|out] [IFNAME] \fR
126\fB no distribute-list [ACCESS-LIST] [in|out] [IFNAME] \fR
127
128\fB distribute-list prefix [PREFIX-LIST] [in|out] [IFNAME] \fR
129\fB no distribute-list prefix [PREFIX-LIST] [in|out] [IFNAME] \fR
130
131\fB distance [DISTANCE] \fR
132\fB no distance [DISTANCE] \fR
133
134\fB distance [DISTANCE] [A.B.C.D/M] \fR
135\fB no distance [DISTANCE] [A.B.C.D/M] \fR
136
137\fB distance [DISTANCE] [A.B.C.D/M] [ACCESS-LIST]\fR
138\fB no distance [DISTANCE] [A.B.C.D/M] [ACCESS-LIST]\fR
139
140\fB ip rip send version [VERSION] \fR
141\fB no ip rip send version [VERSION] \fR
142\fB ip rip receive version [VERSION] \fR
143\fB no ip rip receive version [VERSION] \fR
144
145\fB ip rip authentication mode [md5|text]\fR
146\fB no ip rip authentication mode [md5|text]\fR
147
148\fB ip rip authentication key-chain [KEY-CHAIN]\fR
149\fB no ip rip authentication key-chain [KEY-CHAIN]\fR
150
151\fB ip rip authentication string [STRING]\fR
152\fB no ip rip authentication string [STRING]\fR
153
154\fB ip spli-horizon\fR
155\fB no ip spli-horizon\fR
156
157\fB show ip rip \fR
158\fB show ip protocols \fR
159\fB show debugging rip \fR
160
161\fB debug rip \fR
162\fB debug rip events \fR
163\fB debug rip packet \fR
164\fB debug rip zebra \fR
165
166.SH FILES
167
168.TP
169.BI /usr/local/sbin/ripd
170The default location of the
171.B ripd
172binary.
173
174.TP
175.BI /usr/local/etc/ripd.conf
176The default location of the
177.B ripd
178config file.
179
180.TP
181.BI $(PWD)/ripd.log
182If the
183.B ripd
184process is config'd to output logs to a file, then you will find this
185file in the directory where you started \fBripd\fR.
186
187
188.SH WARNING
189This man page is intended as a quick reference for command line options, and for config file commands. The definitive document is the Info file \fBzebra\fR.
190
191
192.SH DIAGNOSTICS
193The ripd process may log to standard output, to a VTY, to a log file, or through syslog to the system logs.
194.B ripd
195supports many debugging options, see the Info file, or the source for details.
196
197
198.SH "SEE ALSO"
199References to other related man pages:
200
201ripngd(8), ospfd(8), ospf6d(8), bgpd(8), zebra(8)
202
203
204
205.SH BUGS
206.B ripd
207eats bugs for breakfast. If you have food for the maintainers try
208.BI <bug-zebra@gnu.org>
209
210
211.SH AUTHOR[S]
212See <\fBwww.zebra.org\fR>, or the Info file for an accurate list of authors.