blob: 6ff3fa454d7922dccf238906c4f36357a9320340 [file] [log] [blame]
hasso246c1352004-08-10 12:00:34 +00001.TH BGPD 8 "10 August 2004" "Quagga BGPD daemon" "Version 0.96.5"
paul718e3742002-12-13 20:15:29 +00002.SH NAME
hasso246c1352004-08-10 12:00:34 +00003bgpd \- a BGPv4, BGPv4+, BGPv4- routing engine for use with Quagga routing
4software
paul718e3742002-12-13 20:15:29 +00005
6.SH SYNOPSIS
7.B bgpd
8[
hasso2f04e672004-02-20 18:53:22 +00009.B \-dhrv
hasso246c1352004-08-10 12:00:34 +000010] [
11.B \-f
12.I config-file
13] [
14.B \-i
15.I pid-file
16] [
17.B \-p
18.I bgp-port-number
19] [
20.B \--bgp_port=
21.I port-number
22] [
23.B \-P
24.I port-number
25] [
26.B \-A
27.I vty-address
28] [
29.B \-u
30.I user
paul718e3742002-12-13 20:15:29 +000031]
paul718e3742002-12-13 20:15:29 +000032.SH DESCRIPTION
33.B bgpd
34is a routing component that works with the
hasso246c1352004-08-10 12:00:34 +000035.B Quagga
paul718e3742002-12-13 20:15:29 +000036routing engine.
paul718e3742002-12-13 20:15:29 +000037.SH OPTIONS
hasso246c1352004-08-10 12:00:34 +000038Options available for the
39.B bgpd
40command:
paul718e3742002-12-13 20:15:29 +000041.TP
42\fB\-d\fR, \fB\-\-daemon\fR
43Runs in daemon mode, forking and exiting from tty.
paul718e3742002-12-13 20:15:29 +000044.TP
45\fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR
46Specifies the config file to use for startup. If not specified this
47option will likely default to \fB\fI/usr/local/etc/bgpd.conf\fR.
paul718e3742002-12-13 20:15:29 +000048.TP
49\fB\-h\fR, \fB\-\-help\fR
50A brief message.
paul718e3742002-12-13 20:15:29 +000051.TP
52\fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR
53When bgpd starts its process idenifier is written to
54\fB\fIpid-file\fR. The init system uses the recorded PID to stop or
55restart bgpd. The likely default is \fB\fI/var/run/bgpd.pid\fR.
paul718e3742002-12-13 20:15:29 +000056.TP
57\fB\-p\fR, \fB\-\-bgp_port=\fR\fIport\fR
58Set the port that bgpd will listen to for bgp data.
paul718e3742002-12-13 20:15:29 +000059.TP
60\fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR
61Specify the port that the bgpd VTY will listen on. This defaults to
622605, as specified in \fI/etc/services\fR.
paul718e3742002-12-13 20:15:29 +000063.TP
hasso6c110e72003-11-27 13:02:03 +000064\fB\-A\fR, \fB\-\-vty_addr \fR\fIvty-address\fR
65Specify the address that the bgpd VTY will listen on. Default is all
66intrefaces.
hasso6c110e72003-11-27 13:02:03 +000067.TP
68\fB\-u\fR, \fB\-\-user \fR\fIuser\fR
69Specify the user and group to run as. User and group have to have same
70name at the moment. Default is \fIquagga\fR.
hasso6c110e72003-11-27 13:02:03 +000071.TP
paul718e3742002-12-13 20:15:29 +000072\fB\-r\fR, \fB\-\-retain\fR
73When the program terminates, retain routes added by \fBbgpd\fR.
paul718e3742002-12-13 20:15:29 +000074.TP
75\fB\-v\fR, \fB\-\-version\fR
76Print the version and exit.
paul718e3742002-12-13 20:15:29 +000077.SH FILES
paul718e3742002-12-13 20:15:29 +000078.TP
79.BI /usr/local/sbin/bgpd
80The default location of the
81.B bgpd
82binary.
paul718e3742002-12-13 20:15:29 +000083.TP
84.BI /usr/local/etc/bgpd.conf
85The default location of the
86.B bgpd
87config file.
paul718e3742002-12-13 20:15:29 +000088.TP
89.BI $(PWD)/bgpd.log
90If the
91.B bgpd
92process is config'd to output logs to a file, then you will find this
93file in the directory where you started \fBbgpd\fR.
paul718e3742002-12-13 20:15:29 +000094.SH WARNING
hasso246c1352004-08-10 12:00:34 +000095This man page is intended to be a quick reference for command line
96options. The definitive document is the Info file \fBQuagga\fR.
paul718e3742002-12-13 20:15:29 +000097.SH DIAGNOSTICS
98The bgpd process may log to standard output, to a VTY, to a log
99file, or through syslog to the system logs. \fBbgpd\fR supports many
100debugging options, see the Info file, or the source for details.
paul718e3742002-12-13 20:15:29 +0000101.SH "SEE ALSO"
hasso246c1352004-08-10 12:00:34 +0000102.BR ripd (8),
103.BR ripngd (8),
104.BR ospfd (8),
105.BR ospf6d (8),
106.BR isisd (8),
107.BR zebra (8),
108.BR vtysh (1)
paul718e3742002-12-13 20:15:29 +0000109.SH BUGS
110.B bgpd
111eats bugs for breakfast. If you have food for the maintainers try
hasso2f04e672004-02-20 18:53:22 +0000112.BI http://bugzilla.quagga.net
hasso246c1352004-08-10 12:00:34 +0000113.SH AUTHORS
114See
115.BI http://www.zebra.org
116and
117.BI http://www.quagga.org
118or the Info file for an accurate list of authors.
paul718e3742002-12-13 20:15:29 +0000119