1FRR-RIPD(8) FRR FRR-RIPD(8)
2
3
4
6 frr-ripd - a RIP routing engine for use with FRRouting.
7
9 ripd [-h] [-v]
10
11 ripd [-d|-t|-dt] [-C] [-f config-file] [-i pid-file] [-z zclient-path]
12 [-u user] [-g group] [-A vty-addr] [-P vty-port] [-M module[:options]]
13 [-N pathspace] [--vty_socket vty-path] [--moduledir module-path]
14
16 ripd is a routing component that works with the FRRouting routing en‐
17 gine.
18
20 OPTIONS available for the ripd command:
21
22 HELP AND VERSION
23 -h, --help
24 Print a short description of the daemon's command line options.
25
26 -v, --version
27 Print version and build information for the daemon.
28
29 Both of these options inhibit normal operation and will immediately
30 exit.
31
32 PROCESS CONTROL
33 These options control background operation:
34
35 -d, --daemon
36 Launches the process in background/daemon mode, forking and
37 detaching from the terminal.
38
39 The parent process will delay its exit until the daemon/child
40 has finished its initialization and has entered its main loop.
41 This is important for zebra startup because the other daemons
42 will attempt to connect to zebra. A return from zebra -d guaran‐
43 tees its readiness to accept these connections.
44
45 -t, --terminal
46 Opens an interactive VTY session on the terminal, allowing for
47 both state and configuration operations. Note that the terminal
48 starts operating after startup has completed and the configura‐
49 tion file has been loaded.
50
51 The process will exit when end of file is detected on the termi‐
52 nal. It is possible to daemonize a process started with -t (but
53 without -d) by sending SIGQUIT to the process (normally mapped
54 to a ^keypress.)
55
56 The combination of --daemon and --terminal will delay the daemon from
57 going into background until the terminal session ends (by end of file.)
58
59 If the process receives SIGINT (e.g. a ^C keypress) in this mode, it
60 will exit instead of daemonizing.
61
62 It is safe to suspend (SIGTSTP / ^Z) the terminal session opened by the
63 previous two options; this will only stop the terminal but not the
64 protocol daemon itself (which runs in a separate second process.)
65
66 CONFIGURATION AND PATHS
67 The following options control configuration and file system locations
68 for frr processes:
69
70 -f, --config_file config-file
71 Specify a configuration file to be used instead of the default
72 /etc/frr/<daemon>.conf file.
73
74 Note that the daemon will attempt to write to this file if the
75 write file command is issued on its VTY interface or through
76 vtysh.
77
78 -C, --dryrun
79 Load the configuration file and check its validity, then exit.
80
81 -i, --pid_file pid-file
82 Output a pid file to a location other than the default
83 /var/run/frr/<daemon>.pid.
84
85 -z, --socket zclient-path
86 Override the path of the ZAPI socket used to communicate between
87 zebra and the various protocol daemons. The default is
88 /var/run/frr/zserv.api. The value of this option must be the
89 same across all daemons.
90
91 -N, --pathspace pathspace
92 Insert pathspace into all default paths, changing the defaults
93 to:
94
95 /etc/frr/pathspace/<daemon>.conf /var/run/frr/pathspace/<dae‐
96 mon>.pid /var/run/frr/pathspace/<daemon>.vty
97 /var/run/frr/pathspace/zserv.api
98
99 ´.´ and ´/´ characters will not be accepted in pathspace, but
100 the empty string will be accepted.
101
102 Note that this only changes the respective defaults, it has no
103 effect on the respective path if the -f, -i, -z or --vty_socket
104 options are used.
105
106 The purpose of this option is to easily group all file system
107 related bits together for running multiple fully-separate "logi‐
108 cal routers" on a system, particularly with Linux network name‐
109 spaces. Groups of daemons running with distinct pathspace val‐
110 ues will be completely unaware of each other and not interact in
111 any way.
112
113 This option does not do any system setup (like network name‐
114 spaces.) This must be done by the user, for example by running:
115
116 ip netns exec namespace <daemon> -N namespace
117
118 PROCESS CREDENTIALS
119 -u, --user user
120 (default: frr)
121
122 -g, --group group
123 (default: frr)
124
125 Change the user/group which the daemon will switch to.
126
127 -S, --skip_runas
128 Skip setting the process effective user and group.
129
130 Note that there is an additional group, frrvty, which controls group
131 ownership of the VTY sockets. The name of this group cannot currently
132 be changed, and user must be a member of this group.
133
134 VTY SETUP
135 These following options control the daemon's VTY (interactive command
136 line) interface. The interface is available over TCP, using the telnet
137 protocol, as well as through the vtysh frontend.
138
139 -A, --vty_addr vty-addr
140 Specify an IP/IPv6 address to bind the TCP VTY interface to. It
141 is generally recommended to specify ::1 or 127.0.0.1. For rea‐
142 sons of backwards compatibility, the default is to listen on all
143 interfaces.
144
145 -P, --vty_port vty-port
146 Override the daemon's default TCP VTY port (each daemon has a
147 different default value upwards of 2600, listed below.) Speci‐
148 fying 0 disables the TCP VTY interface.
149
150 Default ports are::
151
152 zebra 2601
153 ripd 2602
154 ripngd 2603
155 ospfd 2604
156 bgpd 2605
157 ospf6d 2606
158 isisd 2608
159 babeld 2609
160 nhrpd 2610
161 pimd 2611
162 ldpd 2612
163 eigrpd 2613
164 pbrd 2615
165 staticd 2616
166 bfdd 2617
167 fabricd 2618
168 vrrpd 2619
169
170 Port 2607 is used for ospfd's Opaque LSA API.
171
172 --vty_socket vty-path
173 Overrides the directory used for the <daemon>.vty sockets.
174 vtysh connects to these sockets in order to access each daemon's
175 VTY. Default: /var/run/frr[/<pathspace>]
176
177 NB: Unlike the other options, this option specifies a directory,
178 not a full path.
179
180 This option is primarily used by the SNAP packaging system, its
181 semantics may change. It should not be necessary in most other
182 scenarios.
183
184 MODULE LOADING
185 frr supports optional dynamically loadable modules, although these can
186 only be loaded at startup. The set of available modules may vary
187 across distributions and packages, and modules may be available for in‐
188 stallation as separate packages.
189
190 -M, --module module[:options]
191 Load a module named module, optionally passing options to it.
192
193 If there is a ´/´ character in module, the value is assumed to
194 be a pathname to a module.
195
196 If there is no ´/´ character, the module directory (see next op‐
197 tion) is searched first for a module named "<daemon>_<mod‐
198 ule>.so", then for "<module>.so". This allows for a module to
199 exist in variations appropriate for particular daemons, e.g. ze‐
200 bra_snmp and bgp_snmp, with the correct one selected by -M snmp.
201
202 The meaning of options is specific to the module being loaded.
203 Most modules currently ignore it.
204
205 Modules are loaded in the order as listed on the command line.
206 This is not generally relevant.
207
208 --moduledir module-path
209 Look for modules in the module-path directory instead of the de‐
210 fault /usr/lib/frr/modules. (This path is not affected by the
211 -N option.)
212
213 The list of loaded modules can be inspected at runtime with the show
214 modules VTY command.
215
217 /usr/lib/frr/ripd
218 The default location of the ripd binary.
219
220 /etc/frr/ripd.conf
221 The default location of the ripd config file.
222
223 $(PWD)/ripd.log
224 If the ripd process is configured to output logs to a file, then
225 you will find this file in the directory where you started ripd.
226
228 This man page is intended to be a quick reference for command line op‐
229 tions. The definitive document is the info file frr 7.5.1 or the docu‐
230 mentation available on the project website at https://frrouting.org/.
231
233 The daemon may log to standard output, to a VTY, to a log file, or
234 through syslog to the system logs. FRR supports many debugging options,
235 see the Info file, web docs or source for details.
236
238 frr-zebra(8), vtysh(1), frr-ripd(8), frr-ripngd(8), frr-ospfd(8),
239 frr-ospf6d(8), frr-bgpd(8), frr-isisd(8), frr-babeld(8), frr-nhrpd(8),
240 frr-pimd(8), frr-pbrd(8), frr-ldpd(8), frr-eigrpd(8), frr-staticd(8),
241 frr-fabricd(8), frr-vrrpd(8), mtracebis(8) https://frrouting.org/
242
244 FRR eats bugs for breakfast. If you have food for the maintainers,
245 please email <dev@lists.frrouting.org>.
246
248 2021, FRR
249
250
251
252
2537.5.1 Apr 23, 2021 FRR-RIPD(8)