blob: 9c6b59a48155adeb0a223e3187e68d5e833249e8 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001@node Basic commands
paul718e3742002-12-13 20:15:29 +00002@chapter Basic commands
3
4There are five routing daemons in use, and there is one manager daemon.
5These daemons may be located on separate machines from the manager
6daemon. Each of these daemons will listen on a particular port for
7incoming VTY connections. The routing daemons are:
8
9@itemize @bullet
10@item @command{ripd}, @command{ripngd}, @command{ospfd}, @command{ospf6d}, @command{bgpd}
11@item @command{zebra}
12@end itemize
13
14The following sections discuss commands common to all the routing
15daemons.
16
17@menu
ajs274a4a42004-12-07 15:39:31 +000018* Terminal Mode Commands:: Common commands used in a VTY
paul718e3742002-12-13 20:15:29 +000019* Config Commands:: Commands used in config files
20* Common Invocation Options:: Starting the daemons
ajs274a4a42004-12-07 15:39:31 +000021* Virtual Terminal Interfaces:: Interacting with the daemons
paul718e3742002-12-13 20:15:29 +000022@end menu
23
24
25
paul76b89b42004-11-06 17:13:09 +000026@node Config Commands
paul718e3742002-12-13 20:15:29 +000027@section Config Commands
28
29@cindex Configuration files for running the software
30@c A -not configuration files for installing the software
31@cindex Files for running configurations
32@cindex Modifying the herd's behavior
33@cindex Getting the herd running
34
35
36@menu
37* Basic Config Commands:: Some of the generic config commands
38* Sample Config File:: An example config file
39@end menu
40
41
42In a config file, you can write the debugging options, a vty's password,
43routing daemon configurations, a log file name, and so forth. This
44information forms the initial command set for a routing beast as it is
45starting.
46
47Config files are generally found in:
48
49@itemize @asis
50@item @file{@value{INSTALL_PREFIX_ETC}/*.conf}
51@end itemize
52
53Each of the daemons has its own
54config file. For example, zebra's default config file name is:
55
56@itemize @asis
57@item @file{@value{INSTALL_PREFIX_ETC}/zebra.conf}
58@end itemize
59
60The daemon name plus @file{.conf} is the default config file name. You
61can specify a config file using the @kbd{-f} or @kbd{--config-file}
62options when starting the daemon.
63
64
65
paul76b89b42004-11-06 17:13:09 +000066@node Basic Config Commands
paul718e3742002-12-13 20:15:29 +000067@subsection Basic Config Commands
68
69@deffn Command {hostname @var{hostname}} {}
70Set hostname of the router.
71@end deffn
72
73@deffn Command {password @var{password}} {}
74Set password for vty interface. If there is no password, a vty won't
75accept connections.
76@end deffn
77
78@deffn Command {enable password @var{password}} {}
79Set enable password.
80@end deffn
81
ajs274a4a42004-12-07 15:39:31 +000082@deffn Command {log trap @var{level}} {}
83@deffnx Command {no log trap} {}
84These commands are deprecated and are present only for historical compatibility.
85The log trap command sets the current logging level for all enabled
86logging destinations, and it sets the default for all future logging commands
87that do not specify a level. The normal default
88logging level is debugging. The @code{no} form of the command resets
89the default level for future logging commands to debugging, but it does
90not change the logging level of existing logging destinations.
91@end deffn
92
93
paul718e3742002-12-13 20:15:29 +000094@deffn Command {log stdout} {}
ajs274a4a42004-12-07 15:39:31 +000095@deffnx Command {log stdout @var{level}} {}
paul718e3742002-12-13 20:15:29 +000096@deffnx Command {no log stdout} {}
ajs274a4a42004-12-07 15:39:31 +000097Enable logging output to stdout.
98If the optional second argument specifying the
99logging level is not present, the default logging level (typically debugging,
100but can be changed using the deprecated @code{log trap} command) will be used.
101The @code{no} form of the command disables logging to stdout.
102The @code{level} argument must have one of these values:
103emergencies, alerts, critical, errors, warnings, notifications, informational, or debugging. Note that the existing code logs its most important messages
104with severity @code{errors}.
paul718e3742002-12-13 20:15:29 +0000105@end deffn
106
107@deffn Command {log file @var{filename}} {}
ajs274a4a42004-12-07 15:39:31 +0000108@deffnx Command {log file @var{filename} @var{level}} {}
109@deffnx Command {no log file} {}
110If you want to log into a file, please specify @code{filename} as
111in this example:
paul718e3742002-12-13 20:15:29 +0000112@example
ajs274a4a42004-12-07 15:39:31 +0000113log file /var/log/quagga/bgpd.log informational
paul718e3742002-12-13 20:15:29 +0000114@end example
ajs274a4a42004-12-07 15:39:31 +0000115If the optional second argument specifying the
116logging level is not present, the default logging level (typically debugging,
117but can be changed using the deprecated @code{log trap} command) will be used.
118The @code{no} form of the command disables logging to a file.
ajsc70257d2005-02-03 17:12:01 +0000119
120Note: if you do not configure any file logging, and a daemon crashes due
121to a signal or an assertion failure, it will attempt to save the crash
122information in a file named /var/tmp/quagga.<daemon name>.crashlog.
123For security reasons, this will not happen if the file exists already, so
124it is important to delete the file after reporting the crash information.
paul718e3742002-12-13 20:15:29 +0000125@end deffn
126
127@deffn Command {log syslog} {}
ajs274a4a42004-12-07 15:39:31 +0000128@deffnx Command {log syslog @var{level}} {}
paul718e3742002-12-13 20:15:29 +0000129@deffnx Command {no log syslog} {}
ajs274a4a42004-12-07 15:39:31 +0000130Enable logging output to syslog.
131If the optional second argument specifying the
132logging level is not present, the default logging level (typically debugging,
133but can be changed using the deprecated @code{log trap} command) will be used.
134The @code{no} form of the command disables logging to syslog.
paul718e3742002-12-13 20:15:29 +0000135@end deffn
136
ajs274a4a42004-12-07 15:39:31 +0000137@deffn Command {log monitor} {}
138@deffnx Command {log monitor @var{level}} {}
139@deffnx Command {no log monitor} {}
140Enable logging output to vty terminals that have enabled logging
141using the @code{terminal monitor} command.
142By default, monitor logging is enabled at the debugging level, but this
143command (or the deprecated @code{log trap} command) can be used to change
144the monitor logging level.
145If the optional second argument specifying the
146logging level is not present, the default logging level (typically debugging,
147but can be changed using the deprecated @code{log trap} command) will be used.
148The @code{no} form of the command disables logging to terminal monitors.
paul718e3742002-12-13 20:15:29 +0000149@end deffn
150
ajs274a4a42004-12-07 15:39:31 +0000151@deffn Command {log facility @var{facility}} {}
152@deffnx Command {no log facility} {}
153This command changes the facility used in syslog messages. The default
154facility is @code{daemon}. The @code{no} form of the command resets
155the facility to the default @code{daemon} facility.
paul718e3742002-12-13 20:15:29 +0000156@end deffn
157
ajs274a4a42004-12-07 15:39:31 +0000158@deffn Command {log record-priority} {}
159@deffnx Command {no log record-priority} {}
160To include the severity in all messages logged to a file, to stdout, or to
161a terminal monitor (i.e. anything except syslog),
162use the @code{log record-priority} global configuration command.
163To disable this option, use the @code{no} form of the command. By default,
164the severity level is not included in logged messages. Note: some
165versions of syslogd (including Solaris) can be configured to include
166the facility and level in the messages emitted.
paul718e3742002-12-13 20:15:29 +0000167@end deffn
168
169@deffn Command {service password-encryption} {}
170Encrypt password.
171@end deffn
172
173@deffn Command {service advanced-vty} {}
174Enable advanced mode VTY.
175@end deffn
176
177@deffn Command {service terminal-length @var{<0-512>}} {}
178Set system wide line configuration. This configuration command applies
179to all VTY interfaces.
180@end deffn
181
paul718e3742002-12-13 20:15:29 +0000182@deffn Command {line vty} {}
183Enter vty configuration mode.
184@end deffn
185
186@deffn Command {banner motd default} {}
187Set default motd string.
188@end deffn
189
190@deffn Command {no banner motd} {}
191No motd banner string will be printed.
192@end deffn
193
194@deffn {Line Command} {exec-timeout @var{minute}} {}
195@deffnx {Line Command} {exec-timeout @var{minute} @var{second}} {}
196Set VTY connection timeout value. When only one argument is specified
197it is used for timeout value in minutes. Optional second argument is
198used for timeout value in seconds. Default timeout value is 10 minutes.
199When timeout value is zero, it means no timeout.
200@end deffn
201
202@deffn {Line Command} {no exec-timeout} {}
203Do not perform timeout at all. This command is as same as
204@command{exec-timeout 0 0}.
205@end deffn
206
207@deffn {Line Command} {access-class @var{access-list}} {}
208Restrict vty connections with an access list.
209@end deffn
210
paul76b89b42004-11-06 17:13:09 +0000211@node Sample Config File
paul718e3742002-12-13 20:15:29 +0000212@subsection Sample Config File
213
214
215Below is a sample configuration file for the zebra daemon.
216
217@example
218@group
219!
220! Zebra configuration file
221!
222hostname Router
223password zebra
224enable password zebra
225!
226log stdout
227!
228!
229@end group
230@end example
231
232'!' and '#' are comment characters. If the first character of the word
233is one of the comment characters then from the rest of the line forward
234will be ignored as a comment.
235
236@example
237password zebra!password
238@end example
239
240If a comment character is not the first character of the word, it's a
241normal character. So in the above example '!' will not be regarded as a
242comment and the password is set to 'zebra!password'.
243
244
245
ajs274a4a42004-12-07 15:39:31 +0000246@node Terminal Mode Commands
247@section Terminal Mode Commands
248
249@deffn Command {write terminal} {}
250Displays the current configuration to the vty interface.
251@end deffn
252
253@deffn Command {write file} {}
254Write current configuration to configuration file.
255@end deffn
256
257@deffn Command {configure terminal} {}
258Change to configuration mode. This command is the first step to
259configuration.
260@end deffn
261
262@deffn Command {terminal length @var{<0-512>}} {}
263Set terminal display length to @var{<0-512>}. If length is 0, no
264display control is performed.
265@end deffn
266
267@deffn Command {who} {}
268Show a list of currently connected vty sessions.
269@end deffn
270
271@deffn Command {list} {}
272List all available commands.
273@end deffn
274
275@deffn Command {show version} {}
276Show the current version of @value{PACKAGE_NAME} and its build host information.
277@end deffn
278
279@deffn Command {show logging} {}
280Shows the current configuration of the logging system. This includes
281the status of all logging destinations.
282@end deffn
283
284@deffn Command {logmsg @var{level} @var{message}} {}
285Send a message to all logging destinations that are enabled for messages
286of the given severity.
287@end deffn
288
289
290
291
paul76b89b42004-11-06 17:13:09 +0000292@node Common Invocation Options
paul718e3742002-12-13 20:15:29 +0000293@section Common Invocation Options
294@c COMMON_OPTIONS
295@c OPTIONS section of the man page
296
paul76b89b42004-11-06 17:13:09 +0000297These options apply to all @value{PACKAGE_NAME} daemons.
paul718e3742002-12-13 20:15:29 +0000298
299@table @samp
300
301@item -d
302@itemx --daemon
303Runs in daemon mode.
304
305@item -f @var{file}
306@itemx --config_file=@var{file}
307Set configuration file name.
308
309@item -h
310@itemx --help
311Display this help and exit.
312
313@item -i @var{file}
314@itemx --pid_file=@var{file}
315
316Upon startup the process identifier of the daemon is written to a file,
317typically in @file{/var/run}. This file can be used by the init system
318to implement commands such as @command{@dots{}/init.d/zebra status},
319@command{@dots{}/init.d/zebra restart} or @command{@dots{}/init.d/zebra
320stop}.
321
322The file name is an run-time option rather than a configure-time option
323so that multiple routing daemons can be run simultaneously. This is
paul76b89b42004-11-06 17:13:09 +0000324useful when using @value{PACKAGE_NAME} to implement a routing looking glass. One
paul718e3742002-12-13 20:15:29 +0000325machine can be used to collect differing routing views from differing
326points in the network.
327
paul971a4492003-06-20 01:18:07 +0000328@item -A @var{address}
329@itemx --vty_addr=@var{address}
330Set the VTY local address to bind to. If set, the VTY socket will only
331be bound to this address.
332
paul718e3742002-12-13 20:15:29 +0000333@item -P @var{port}
334@itemx --vty_port=@var{port}
paul971a4492003-06-20 01:18:07 +0000335Set the VTY TCP port number. If set to 0 then the TCP VTY sockets will not
336be opened.
337
338@item -u @var{user}
339@itemx --vty_addr=@var{user}
340Set the user and group to run as.
paul718e3742002-12-13 20:15:29 +0000341
342@item -v
343@itemx --version
344Print program version.
345
346@end table
347
348
349
paul76b89b42004-11-06 17:13:09 +0000350@node Virtual Terminal Interfaces
paul718e3742002-12-13 20:15:29 +0000351@section Virtual Terminal Interfaces
352
353VTY -- Virtual Terminal [aka TeletYpe] Interface is a command line
354interface (CLI) for user interaction with the routing daemon.
355
356@menu
357* VTY Overview:: Basics about VTYs
358* VTY Modes:: View, Enable, and Other VTY modes
359* VTY CLI Commands:: Commands for movement, edition, and management
360@end menu
361
362
363
paul76b89b42004-11-06 17:13:09 +0000364@node VTY Overview
paul718e3742002-12-13 20:15:29 +0000365@subsection VTY Overview
366
367
368VTY stands for Virtual TeletYpe interface. It means you can connect to
369the daemon via the telnet protocol.
370
371To enable a VTY interface, you have to setup a VTY password. If there
372is no VTY password, one cannot connect to the VTY interface at all.
373
374@example
375@group
376% telnet localhost 2601
377Trying 127.0.0.1...
378Connected to localhost.
379Escape character is '^]'.
380
paul76b89b42004-11-06 17:13:09 +0000381Hello, this is @value{PACKAGE_NAME} (version @value{VERSION})
382@value{COPYRIGHT_STR}
paul718e3742002-12-13 20:15:29 +0000383
384User Access Verification
385
386Password: XXXXX
387Router> ?
388 enable Turn on privileged commands
389 exit Exit current mode and down to previous mode
390 help Description of the interactive help system
391 list Print command list
392 show Show running system information
393 who Display who is on a vty
394Router> enable
395Password: XXXXX
396Router# configure terminal
397Router(config)# interface eth0
398Router(config-if)# ip address 10.0.0.1/8
399Router(config-if)# ^Z
400Router#
401@end group
402@end example
403
404'?' is very useful for looking up commands.
405
paul76b89b42004-11-06 17:13:09 +0000406@node VTY Modes
paul718e3742002-12-13 20:15:29 +0000407@subsection VTY Modes
408
paul718e3742002-12-13 20:15:29 +0000409There are three basic VTY modes:
410
411@menu
412* VTY View Mode:: Mode for read-only interaction
413* VTY Enable Mode:: Mode for read-write interaction
414* VTY Other Modes:: Special modes (tftp, etc)
415@end menu
416
417There are commands that may be restricted to specific VTY modes.
418
paul76b89b42004-11-06 17:13:09 +0000419@node VTY View Mode
paul718e3742002-12-13 20:15:29 +0000420@subsubsection VTY View Mode
421@c to be written (gpoul)
422
423
424This mode is for read-only access to the CLI. One may exit the mode by
425leaving the system, or by entering @code{enable} mode.
426
paul76b89b42004-11-06 17:13:09 +0000427@node VTY Enable Mode
paul718e3742002-12-13 20:15:29 +0000428@subsubsection VTY Enable Mode
429
paul718e3742002-12-13 20:15:29 +0000430@c to be written (gpoul)
431This mode is for read-write access to the CLI. One may exit the mode by
432leaving the system, or by escaping to view mode.
433
paul76b89b42004-11-06 17:13:09 +0000434@node VTY Other Modes
paul718e3742002-12-13 20:15:29 +0000435@subsubsection VTY Other Modes
436
437
438@c to be written (gpoul)
439This page is for describing other modes.
440
paul76b89b42004-11-06 17:13:09 +0000441@node VTY CLI Commands
paul718e3742002-12-13 20:15:29 +0000442@subsection VTY CLI Commands
443
paul76b89b42004-11-06 17:13:09 +0000444Commands that you may use at the command-line are described in the following
445three subsubsections.
paul718e3742002-12-13 20:15:29 +0000446
447@menu
448* CLI Movement Commands:: Commands for moving the cursor about
449* CLI Editing Commands:: Commands for changing text
450* CLI Advanced Commands:: Other commands, session management and so on
451@end menu
452
paul76b89b42004-11-06 17:13:09 +0000453@node CLI Movement Commands
paul718e3742002-12-13 20:15:29 +0000454@subsubsection CLI Movement Commands
455
paul718e3742002-12-13 20:15:29 +0000456These commands are used for moving the CLI cursor. The @key{C} character
457means press the Control Key.
458
459@table @kbd
460
461@item C-f
462@itemx @key{RIGHT}
463@kindex C-f
464@kindex @key{RIGHT}
465Move forward one character.
466
467@item C-b
468@itemx @key{LEFT}
469@kindex C-b
470@kindex @key{LEFT}
471Move backward one character.
472
473@item M-f
474@kindex M-f
475Move forward one word.
476
477@item M-b
478@kindex M-b
479Move backward one word.
480
481@item C-a
482@kindex C-a
483Move to the beginning of the line.
484
485@item C-e
486@kindex C-e
487Move to the end of the line.
488
489@end table
490
paul76b89b42004-11-06 17:13:09 +0000491@node CLI Editing Commands
paul718e3742002-12-13 20:15:29 +0000492@subsubsection CLI Editing Commands
493
paul718e3742002-12-13 20:15:29 +0000494These commands are used for editing text on a line. The @key{C}
495character means press the Control Key.
496
497@table @kbd
498
499@item C-h
500@itemx @key{DEL}
501@kindex C-h
502@kindex @key{DEL}
503Delete the character before point.
504
505@item C-d
506@kindex C-d
507Delete the character after point.
508
509@item M-d
510@kindex M-d
511Forward kill word.
512
513@item C-w
514@kindex C-w
515Backward kill word.
516
517@item C-k
518@kindex C-k
519Kill to the end of the line.
520
521@item C-u
522@kindex C-u
523Kill line from the beginning, erasing input.
524
525@item C-t
526@kindex C-t
527Transpose character.
528
529@end table
530
paul76b89b42004-11-06 17:13:09 +0000531@node CLI Advanced Commands
paul718e3742002-12-13 20:15:29 +0000532@subsubsection CLI Advanced Commands
533
paul718e3742002-12-13 20:15:29 +0000534There are several additional CLI commands for command line completions,
535insta-help, and VTY session management.
536
537@table @kbd
538
539@item C-c
540@kindex C-c
541Interrupt current input and moves to the next line.
542
543@item C-z
544@kindex C-z
545End current configuration session and move to top node.
546
547
548@item C-n
549@itemx @key{DOWN}
550@kindex C-n
551@kindex @key{DOWN}
552Move down to next line in the history buffer.
553
554@item C-p
555@itemx @key{UP}
556@kindex C-p
557@kindex @key{UP}
558Move up to previous line in the history buffer.
559
560@item TAB
561@kindex @key{TAB}
562Use command line completion by typing @key{TAB}.
563
564@item
565@kindex ?
566You can use command line help by typing @code{help} at the beginning of
567the line. Typing @kbd{?} at any point in the line will show possible
568completions.
569
570@end table