doc: use config values from configure in manpages

This makes the actual change to the manpages to get ./configure effects
applied into them.

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
This commit is contained in:
David Lamparter 2016-12-14 20:22:25 +01:00
parent 461c7bee69
commit a07169b1f6
15 changed files with 148 additions and 130 deletions

View file

@ -8,8 +8,13 @@
AC_PREREQ(2.60) AC_PREREQ(2.60)
AC_INIT(Quagga, 2.0-rc0, [https://bugzilla.quagga.net]) AC_INIT(Quagga, 2.0-rc0, [https://bugzilla.quagga.net])
PACKAGE_URL="http://www.quagga.net"
PACKAGE_FULLNAME="Quagga"
AC_SUBST(PACKAGE_FULLNAME)
CONFIG_ARGS="$ac_configure_args" CONFIG_ARGS="$ac_configure_args"
AC_SUBST(CONFIG_ARGS) AC_SUBST(CONFIG_ARGS)
AC_CONFIG_SRCDIR(lib/zebra.h) AC_CONFIG_SRCDIR(lib/zebra.h)
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
@ -1568,6 +1573,18 @@ for I in 1 2 3 4 5 6 7 8 9 10; do
done done
AC_DEFINE_UNQUOTED(VTYSH_BIN_PATH, "$vtysh_bin",path to vtysh binary) AC_DEFINE_UNQUOTED(VTYSH_BIN_PATH, "$vtysh_bin",path to vtysh binary)
CFG_SYSCONF="$sysconfdir"
CFG_SBIN="$sbindir"
CFG_STATE="$frr_statedir"
for I in 1 2 3 4 5 6 7 8 9 10; do
eval CFG_SYSCONF="\"$CFG_SYSCONF\""
eval CFG_SBIN="\"$CFG_SBIN\""
eval CFG_STATE="\"$CFG_STATE\""
done
AC_SUBST(CFG_SYSCONF)
AC_SUBST(CFG_SBIN)
AC_SUBST(CFG_STATE)
dnl ------------------------------- dnl -------------------------------
dnl Quagga sources should always be dnl Quagga sources should always be
dnl current wrt interfaces. Dont dnl current wrt interfaces. Dont

View file

@ -1,7 +1,6 @@
.TH BGPD 8 "25 November 2004" "Quagga BGPD daemon" "Version 0.97.3" .TH BGPD 8 "25 November 2004" "@PACKAGE_FULLNAME@ BGPD daemon" "Version @PACKAGE_VERSION@"
.SH NAME .SH NAME
bgpd \- a BGPv4, BGPv4\+, BGPv4\- routing engine for use with Quagga routing bgpd \- a BGPv4, BGPv4\+, BGPv4\- routing engine for use with @PACKAGE_FULLNAME@.
software
.SH SYNOPSIS .SH SYNOPSIS
.B bgpd .B bgpd
@ -32,7 +31,7 @@ software
.SH DESCRIPTION .SH DESCRIPTION
.B bgpd .B bgpd
is a routing component that works with the is a routing component that works with the
.B Quagga .B @PACKAGE_FULLNAME@
routing engine. routing engine.
.SH OPTIONS .SH OPTIONS
Options available for the Options available for the
@ -44,10 +43,10 @@ Runs in daemon mode, forking and exiting from tty.
.TP .TP
\fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR \fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR
Specifies the config file to use for startup. If not specified this Specifies the config file to use for startup. If not specified this
option will likely default to \fB\fI/usr/local/etc/bgpd.conf\fR. option will default to \fB\fI@CFG_SYSCONF@/bgpd.conf\fR.
.TP .TP
\fB\-g\fR, \fB\-\-group \fR\fIgroup\fR \fB\-g\fR, \fB\-\-group \fR\fIgroup\fR
Specify the group to run as. Default is \fIquagga\fR. Specify the group to run as. Default is \fI@enable_group@\fR.
.TP .TP
\fB\-h\fR, \fB\-\-help\fR \fB\-h\fR, \fB\-\-help\fR
A brief message. A brief message.
@ -55,7 +54,7 @@ A brief message.
\fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR \fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR
When bgpd starts its process identifier is written to When bgpd starts its process identifier is written to
\fB\fIpid-file\fR. The init system uses the recorded PID to stop or \fB\fIpid-file\fR. The init system uses the recorded PID to stop or
restart bgpd. The likely default is \fB\fI/var/run/bgpd.pid\fR. restart bgpd. The default is \fB\fI@CFG_STATE@/bgpd.pid\fR.
.TP .TP
\fB\-p\fR, \fB\-\-bgp_port \fR\fIbgp-port-number\fR \fB\-p\fR, \fB\-\-bgp_port \fR\fIbgp-port-number\fR
Set the port that bgpd will listen to for bgp data. Set the port that bgpd will listen to for bgp data.
@ -69,7 +68,7 @@ Specify the address that the bgpd VTY will listen on. Default is all
interfaces. interfaces.
.TP .TP
\fB\-u\fR, \fB\-\-user \fR\fIuser\fR \fB\-u\fR, \fB\-\-user \fR\fIuser\fR
Specify the user to run as. Default is \fIquagga\fR. Specify the user to run as. Default is \fI@enable_user@\fR.
.TP .TP
\fB\-r\fR, \fB\-\-retain\fR \fB\-r\fR, \fB\-\-retain\fR
When the program terminates, retain routes added by \fBbgpd\fR. When the program terminates, retain routes added by \fBbgpd\fR.
@ -81,12 +80,12 @@ Skip setting the process effective user and group.
Print the version and exit. Print the version and exit.
.SH FILES .SH FILES
.TP .TP
.BI /usr/lib/quagga/bgpd .BI @CFG_SBIN@/bgpd
The default location of the The default location of the
.B bgpd .B bgpd
binary. binary.
.TP .TP
.BI /etc/quagga/bgpd.conf .BI @CFG_SYSCONF@/bgpd.conf
The default location of the The default location of the
.B bgpd .B bgpd
config file. config file.
@ -98,7 +97,7 @@ process is config'd to output logs to a file, then you will find this
file in the directory where you started \fBbgpd\fR. file in the directory where you started \fBbgpd\fR.
.SH WARNING .SH WARNING
This man page is intended to be a quick reference for command line This man page is intended to be a quick reference for command line
options. The definitive document is the Info file \fBQuagga\fR. options. The definitive document is the Info file \fB@PACKAGE_NAME@\fR.
.SH DIAGNOSTICS .SH DIAGNOSTICS
The bgpd process may log to standard output, to a VTY, to a log The bgpd process may log to standard output, to a VTY, to a log
file, or through syslog to the system logs. \fBbgpd\fR supports many file, or through syslog to the system logs. \fBbgpd\fR supports many
@ -114,11 +113,11 @@ debugging options, see the Info file, or the source for details.
.SH BUGS .SH BUGS
.B bgpd .B bgpd
eats bugs for breakfast. If you have food for the maintainers try eats bugs for breakfast. If you have food for the maintainers try
.BI http://bugzilla.quagga.net .BI @PACKAGE_BUGREPORT@
.SH AUTHORS .SH AUTHORS
See See
.BI http://www.zebra.org .BI http://www.zebra.org
and and
.BI http://www.quagga.net .BI @PACKAGE_URL@
or the Info file for an accurate list of authors. or the Info file for an accurate list of authors.

View file

@ -10,7 +10,9 @@
@set COPYRIGHT_STR Copyright @copyright{} @value{COPYRIGHT_YEAR} @value{AUTHORS} @set COPYRIGHT_STR Copyright @copyright{} @value{COPYRIGHT_YEAR} @value{AUTHORS}
@c These may vary with installation environment. @c These may vary with installation environment.
@set INSTALL_PREFIX_ETC /etc/quagga @set INSTALL_PREFIX_ETC @CFG_SYSCONF@
@set INSTALL_PREFIX_SBIN /usr/sbin @set INSTALL_PREFIX_SBIN @CFG_SBIN@
@set INSTALL_PREFIX_STATE /var/run/quagga @set INSTALL_PREFIX_STATE @CFG_STATE@
@set INSTALL_USER @enable_user@
@set INSTALL_GROUP @enable_group@
@set INSTALL_VTY_GROUP @enable_vty_group@ @set INSTALL_VTY_GROUP @enable_vty_group@

View file

@ -1,6 +1,6 @@
.TH IS-IS 8 "25 November 2004" "Quagga IS-IS daemon" "Version 0.97.3" .TH IS-IS 8 "25 November 2004" "@PACKAGE_FULLNAME@ IS-IS daemon" "Version @PACKAGE_VERSION@"
.SH NAME .SH NAME
isisd \- an IS-IS routing engine for use with Quagga routing software. isisd \- an IS-IS routing engine for use with @PACKAGE_FULLNAME@.
.SH SYNOPSIS .SH SYNOPSIS
.B isisd .B isisd
[ [
@ -27,7 +27,7 @@ isisd \- an IS-IS routing engine for use with Quagga routing software.
.SH DESCRIPTION .SH DESCRIPTION
.B isisd .B isisd
is a routing component that works with the is a routing component that works with the
.B Quagga .B @PACKAGE_FULLNAME@
routing engine. routing engine.
.SH OPTIONS .SH OPTIONS
Options available for the Options available for the
@ -39,10 +39,10 @@ Runs in daemon mode, forking and exiting from tty.
.TP .TP
\fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR \fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR
Specifies the config file to use for startup. If not specified this Specifies the config file to use for startup. If not specified this
option will likely default to \fB\fI/usr/local/etc/isisd.conf\fR. option will default to \fB\fI@CFG_SYSCONF@/isisd.conf\fR.
.TP .TP
\fB\-g\fR, \fB\-\-group \fR\fIgroup\fR \fB\-g\fR, \fB\-\-group \fR\fIgroup\fR
Specify the group to run as. Default is \fIquagga\fR. Specify the group to run as. Default is \fI@enable_group@\fR.
.TP .TP
\fB\-h\fR, \fB\-\-help\fR \fB\-h\fR, \fB\-\-help\fR
A brief message. A brief message.
@ -50,7 +50,7 @@ A brief message.
\fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR \fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR
When isisd starts its process identifier is written to When isisd starts its process identifier is written to
\fB\fIpid-file\fR. The init system uses the recorded PID to stop or \fB\fIpid-file\fR. The init system uses the recorded PID to stop or
restart isisd. The likely default is \fB\fI/var/run/isisd.pid\fR. restart isisd. The default is \fB\fI@CFG_STATE@/isisd.pid\fR.
.TP .TP
\fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR \fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR
Specify the port that the isisd VTY will listen on. This defaults to Specify the port that the isisd VTY will listen on. This defaults to
@ -61,18 +61,18 @@ Specify the address that the isisd VTY will listen on. Default is all
interfaces. interfaces.
.TP .TP
\fB\-u\fR, \fB\-\-user \fR\fIuser\fR \fB\-u\fR, \fB\-\-user \fR\fIuser\fR
Specify the user to run as. Default is \fIquagga\fR. Specify the user to run as. Default is \fI@enable_user@\fR.
.TP .TP
\fB\-v\fR, \fB\-\-version\fR \fB\-v\fR, \fB\-\-version\fR
Print the version and exit. Print the version and exit.
.SH FILES .SH FILES
.TP .TP
.BI /usr/lib/quagga/isisd .BI @CFG_SBIN@/isisd
The default location of the The default location of the
.B isisd .B isisd
binary. binary.
.TP .TP
.BI /etc/quagga/isisd.conf .BI @CFG_SYSCONF@/isisd.conf
The default location of the The default location of the
.B isisd .B isisd
config file. config file.
@ -84,7 +84,7 @@ process is config'd to output logs to a file, then you will find this
file in the directory where you started \fBisisd\fR. file in the directory where you started \fBisisd\fR.
.SH WARNING .SH WARNING
This man page is intended to be a quick reference for command line This man page is intended to be a quick reference for command line
options. The definitive document is the Info file \fBQuagga\fR. options. The definitive document is the Info file \fB@PACKAGE_NAME@\fR.
.SH DIAGNOSTICS .SH DIAGNOSTICS
The isisd process may log to standard output, to a VTY, to a log The isisd process may log to standard output, to a VTY, to a log
file, or through syslog to the system logs. \fBisisd\fR supports many file, or through syslog to the system logs. \fBisisd\fR supports many
@ -103,7 +103,7 @@ production use.
.B isisd .B isisd
eats bugs for breakfast. If you have food for the maintainers try eats bugs for breakfast. If you have food for the maintainers try
.BI http://bugzilla.quagga.net .BI @PACKAGE_BUGREPORT@
.SH AUTHORS .SH AUTHORS
See See
.BI http://isisd.sourceforge.net .BI http://isisd.sourceforge.net

View file

@ -1,6 +1,6 @@
.TH LDPD 8 "29 March 2016" "Quagga LDP daemon" "Version 1.0.20160309" .TH LDPD 8 "29 March 2016" "@PACKAGE_FULLNAME@ LDP daemon" "Version @PACKAGE_VERSION@"
.SH NAME .SH NAME
ldpd \- an LDP engine for use with Quagga routing software. ldpd \- an LDP engine for use with @PACKAGE_FULLNAME@.
.SH SYNOPSIS .SH SYNOPSIS
.B ldpd .B ldpd
[ [
@ -27,7 +27,7 @@ ldpd \- an LDP engine for use with Quagga routing software.
.SH DESCRIPTION .SH DESCRIPTION
.B ldpd .B ldpd
is a component that works with the is a component that works with the
.B Quagga .B @PACKAGE_FULLNAME@
routing engine. routing engine.
.SH OPTIONS .SH OPTIONS
Options available for the Options available for the
@ -39,10 +39,10 @@ Runs in daemon mode, forking and exiting from tty.
.TP .TP
\fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR \fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR
Specifies the config file to use for startup. If not specified this Specifies the config file to use for startup. If not specified this
option will likely default to \fB\fI/usr/local/etc/ldpd.conf\fR. option will default to \fB\fI@CFG_SYSCONF@/ldpd.conf\fR.
.TP .TP
\fB\-g\fR, \fB\-\-group \fR\fIgroup\fR \fB\-g\fR, \fB\-\-group \fR\fIgroup\fR
Specify the group to run as. Default is \fIquagga\fR. Specify the group to run as. Default is \fI@enable_group@\fR.
.TP .TP
\fB\-h\fR, \fB\-\-help\fR \fB\-h\fR, \fB\-\-help\fR
A brief message. A brief message.
@ -50,7 +50,7 @@ A brief message.
\fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR \fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR
When ldpd starts its process identifier is written to When ldpd starts its process identifier is written to
\fB\fIpid-file\fR. The init system uses the recorded PID to stop or \fB\fIpid-file\fR. The init system uses the recorded PID to stop or
restart ldpd. The likely default is \fB\fI/var/run/ldpd.pid\fR. restart ldpd. The default is \fB\fI@CFG_STATE@/ldpd.pid\fR.
.TP .TP
\fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR \fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR
Specify the port that the ldpd VTY will listen on. This defaults to Specify the port that the ldpd VTY will listen on. This defaults to
@ -61,18 +61,18 @@ Specify the address that the ldpd VTY will listen on. Default is all
interfaces. interfaces.
.TP .TP
\fB\-u\fR, \fB\-\-user \fR\fIuser\fR \fB\-u\fR, \fB\-\-user \fR\fIuser\fR
Specify the user to run as. Default is \fIquagga\fR. Specify the user to run as. Default is \fI@enable_user@\fR.
.TP .TP
\fB\-v\fR, \fB\-\-version\fR \fB\-v\fR, \fB\-\-version\fR
Print the version and exit. Print the version and exit.
.SH FILES .SH FILES
.TP .TP
.BI /usr/local/sbin/ldpd .BI @CFG_SBIN@/ldpd
The default location of the The default location of the
.B ldpd .B ldpd
binary. binary.
.TP .TP
.BI /usr/local/etc/ldpd.conf .BI @CFG_SYSCONF@/ldpd.conf
The default location of the The default location of the
.B ldpd .B ldpd
config file. config file.
@ -84,7 +84,7 @@ process is config'd to output logs to a file, then you will find this
file in the directory where you started \fBldpd\fR. file in the directory where you started \fBldpd\fR.
.SH WARNING .SH WARNING
This man page is intended to be a quick reference for command line This man page is intended to be a quick reference for command line
options. The definitive document is the Info file \fBQuagga\fR. options. The definitive document is the Info file \fB@PACKAGE_NAME@\fR.
.SH DIAGNOSTICS .SH DIAGNOSTICS
The ldpd process may log to standard output, to a VTY, to a log The ldpd process may log to standard output, to a VTY, to a log
file, or through syslog to the system logs. \fBldpd\fR supports many file, or through syslog to the system logs. \fBldpd\fR supports many
@ -101,9 +101,9 @@ debugging options, see the Info file, or the source for details.
.SH BUGS .SH BUGS
.B ldpd .B ldpd
eats bugs for breakfast. If you have food for the maintainers try eats bugs for breakfast. If you have food for the maintainers try
.BI http://bugzilla.quagga.net .BI @PACKAGE_BUGREPORT@
.SH AUTHORS .SH AUTHORS
See See
.BI http://www.quagga.net .BI @PACKAGE_URL@
or the Info file for an accurate list of authors. or the Info file for an accurate list of authors.

View file

@ -1,6 +1,6 @@
.TH OSPF6D 8 "25 November 2004" "Quagga OSPFv3 daemon" "Version 0.97.3" .TH OSPF6D 8 "25 November 2004" "@PACKAGE_FULLNAME@ OSPFv3 daemon" "Version @PACKAGE_VERSION@"
.SH NAME .SH NAME
ospf6d \- an OSPFv3 routing engine for use with Quagga routing software. ospf6d \- an OSPFv3 routing engine for use with @PACKAGE_FULLNAME@.
.SH SYNOPSIS .SH SYNOPSIS
.B ospf6d .B ospf6d
[ [
@ -27,7 +27,7 @@ ospf6d \- an OSPFv3 routing engine for use with Quagga routing software.
.SH DESCRIPTION .SH DESCRIPTION
.B ospf6d .B ospf6d
is a routing component that works with the is a routing component that works with the
.B Quagga .B @PACKAGE_FULLNAME@
routing engine. routing engine.
.SH OPTIONS .SH OPTIONS
Options available for the Options available for the
@ -40,10 +40,10 @@ Runs in daemon mode, forking and exiting from tty.
.TP .TP
\fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR \fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR
Specifies the config file to use for startup. If not specified this Specifies the config file to use for startup. If not specified this
option will likely default to \fB\fI/usr/local/etc/ospf6d.conf\fR. option will default to \fB\fI@CFG_SYSCONF@/ospf6d.conf\fR.
.TP .TP
\fB\-g\fR, \fB\-\-group \fR\fIgroup\fR \fB\-g\fR, \fB\-\-group \fR\fIgroup\fR
Specify the group to run as. Default is \fIquagga\fR. Specify the group to run as. Default is \fI@enable_group@\fR.
.TP .TP
\fB\-h\fR, \fB\-\-help\fR \fB\-h\fR, \fB\-\-help\fR
A brief message. A brief message.
@ -51,7 +51,7 @@ A brief message.
\fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR \fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR
When ospf6d starts its process identifier is written to When ospf6d starts its process identifier is written to
\fB\fIpid-file\fR. The init system uses the recorded PID to stop or \fB\fIpid-file\fR. The init system uses the recorded PID to stop or
restart ospf6d. The likely default is \fB\fI/var/run/ospf6d.pid\fR. restart ospf6d. The default is \fB\fI@CFG_STATE@/ospf6d.pid\fR.
.TP .TP
\fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR \fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR
Specify the port that the ospf6d VTY will listen on. This defaults to Specify the port that the ospf6d VTY will listen on. This defaults to
@ -62,18 +62,18 @@ Specify the address that the ospf6d VTY will listen on. Default is all
interfaces. interfaces.
.TP .TP
\fB\-u\fR, \fB\-\-user \fR\fIuser\fR \fB\-u\fR, \fB\-\-user \fR\fIuser\fR
Specify the user to run as. Default is \fIquagga\fR. Specify the user to run as. Default is \fI@enable_user@\fR.
.TP .TP
\fB\-v\fR, \fB\-\-version\fR \fB\-v\fR, \fB\-\-version\fR
Print the version and exit. Print the version and exit.
.SH FILES .SH FILES
.TP .TP
.BI /usr/lib/quagga/ospf6d .BI @CFG_SBIN@/ospf6d
The default location of the The default location of the
.B ospf6d .B ospf6d
binary. binary.
.TP .TP
.BI /etc/quagga/ospf6d.conf .BI @CFG_SYSCONF@/ospf6d.conf
The default location of the The default location of the
.B ospf6d .B ospf6d
config file. config file.
@ -85,7 +85,7 @@ process is config'd to output logs to a file, then you will find this
file in the directory where you started \fBospf6d\fR. file in the directory where you started \fBospf6d\fR.
.SH WARNING .SH WARNING
This man page is intended to be a quick reference for command line This man page is intended to be a quick reference for command line
options. The definitive document is the Info file \fBQuagga\fR. options. The definitive document is the Info file \fB@PACKAGE_NAME@\fR.
.SH DIAGNOSTICS .SH DIAGNOSTICS
The ospf6d process may log to standard output, to a VTY, to a log The ospf6d process may log to standard output, to a VTY, to a log
file, or through syslog to the system logs. \fBospf6d\fR supports many file, or through syslog to the system logs. \fBospf6d\fR supports many
@ -101,11 +101,11 @@ debugging options, see the Info file, or the source for details.
.SH BUGS .SH BUGS
.B ospf6d .B ospf6d
eats bugs for breakfast. If you have food for the maintainers try eats bugs for breakfast. If you have food for the maintainers try
.BI http://bugzilla.quagga.net .BI @PACKAGE_BUGREPORT@
.SH AUTHORS .SH AUTHORS
See See
.BI http://www.zebra.org .BI http://www.zebra.org
and and
.BI http://www.quagga.net .BI @PACKAGE_URL@
or the Info file for an accurate list of authors. or the Info file for an accurate list of authors.

View file

@ -39,4 +39,4 @@ Area in the IP address format for type 10, otherwise it will be ignored.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR ospfd (8). .BR ospfd (8).
.SH AUTHORS .SH AUTHORS
See the project homepage at <http://www.quagga.net/>. See the project homepage at <@PACKAGE_URL@>.

View file

@ -1,6 +1,6 @@
.TH OSPFD 8 "25 November 2004" "Quagga OSPFv2 daemon" "Version 0.97.3" .TH OSPFD 8 "25 November 2004" "@PACKAGE_FULLNAME@ OSPFv2 daemon" "Version @PACKAGE_VERSION@"
.SH NAME .SH NAME
ospfd \- an OSPFv2 routing engine for use with Quagga routing software. ospfd \- an OSPFv2 routing engine for use with @PACKAGE_FULLNAME@.
.SH SYNOPSIS .SH SYNOPSIS
.B ospfd .B ospfd
[ [
@ -27,7 +27,7 @@ ospfd \- an OSPFv2 routing engine for use with Quagga routing software.
.SH DESCRIPTION .SH DESCRIPTION
.B ospfd .B ospfd
is a routing component that works with the is a routing component that works with the
.B Quagga .B @PACKAGE_FULLNAME@
routing engine. routing engine.
.SH OPTIONS .SH OPTIONS
Options available for the Options available for the
@ -39,10 +39,10 @@ Runs in daemon mode, forking and exiting from tty.
.TP .TP
\fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR \fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR
Specifies the config file to use for startup. If not specified this Specifies the config file to use for startup. If not specified this
option will likely default to \fB\fI/usr/local/etc/ospfd.conf\fR. option will default to \fB\fI@CFG_SYSCONF@/ospfd.conf\fR.
.TP .TP
\fB\-g\fR, \fB\-\-group \fR\fIgroup\fR \fB\-g\fR, \fB\-\-group \fR\fIgroup\fR
Specify the group to run as. Default is \fIquagga\fR. Specify the group to run as. Default is \fI@enable_group@\fR.
.TP .TP
\fB\-h\fR, \fB\-\-help\fR \fB\-h\fR, \fB\-\-help\fR
A brief message. A brief message.
@ -50,7 +50,7 @@ A brief message.
\fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR \fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR
When ospfd starts its process identifier is written to When ospfd starts its process identifier is written to
\fB\fIpid-file\fR. The init system uses the recorded PID to stop or \fB\fIpid-file\fR. The init system uses the recorded PID to stop or
restart ospfd. The likely default is \fB\fI/var/run/ospfd.pid\fR. restart ospfd. The default is \fB\fI@CFG_STATE@/ospfd.pid\fR.
.TP .TP
\fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR \fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR
Specify the port that the ospfd VTY will listen on. This defaults to Specify the port that the ospfd VTY will listen on. This defaults to
@ -61,7 +61,7 @@ Specify the address that the ospfd VTY will listen on. Default is all
interfaces. interfaces.
.TP .TP
\fB\-u\fR, \fB\-\-user \fR\fIuser\fR \fB\-u\fR, \fB\-\-user \fR\fIuser\fR
Specify the user to run as. Default is \fIquagga\fR. Specify the user to run as. Default is \fI@enable_user@\fR.
.TP .TP
\fB\-a\fR, \fB\-\-apiserver \fR \fB\-a\fR, \fB\-\-apiserver \fR
Enable OSPF apiserver. Default is disabled. Enable OSPF apiserver. Default is disabled.
@ -70,12 +70,12 @@ Enable OSPF apiserver. Default is disabled.
Print the version and exit. Print the version and exit.
.SH FILES .SH FILES
.TP .TP
.BI /usr/lib/quagga/ospfd .BI @CFG_SBIN@/ospfd
The default location of the The default location of the
.B ospfd .B ospfd
binary. binary.
.TP .TP
.BI /etc/quagga/ospfd.conf .BI @CFG_SYSCONF@/ospfd.conf
The default location of the The default location of the
.B ospfd .B ospfd
config file. config file.
@ -87,7 +87,7 @@ process is config'd to output logs to a file, then you will find this
file in the directory where you started \fBospfd\fR. file in the directory where you started \fBospfd\fR.
.SH WARNING .SH WARNING
This man page is intended to be a quick reference for command line This man page is intended to be a quick reference for command line
options. The definitive document is the Info file \fBQuagga\fR. options. The definitive document is the Info file \fB@PACKAGE_NAME@\fR.
.SH DIAGNOSTICS .SH DIAGNOSTICS
The ospfd process may log to standard output, to a VTY, to a log The ospfd process may log to standard output, to a VTY, to a log
file, or through syslog to the system logs. \fBospfd\fR supports many file, or through syslog to the system logs. \fBospfd\fR supports many
@ -103,11 +103,11 @@ debugging options, see the Info file, or the source for details.
.SH BUGS .SH BUGS
.B ospfd .B ospfd
eats bugs for breakfast. If you have food for the maintainers try eats bugs for breakfast. If you have food for the maintainers try
.BI http://bugzilla.quagga.net .BI @PACKAGE_BUGREPORT@
.SH AUTHORS .SH AUTHORS
See See
.BI http://www.zebra.org .BI http://www.zebra.org
and and
.BI http://www.quagga.net .BI @PACKAGE_URL@
or the Info file for an accurate list of authors. or the Info file for an accurate list of authors.

View file

@ -1,6 +1,6 @@
.TH PIM 8 "10 December 2008" "Quagga PIM daemon" "Version 0.99.11" .TH PIM 8 "10 December 2008" "@PACKAGE_FULLNAME@ PIM daemon" "Version @PACKAGE_VERSION@"
.SH NAME .SH NAME
pimd \- a PIM routing for use with Quagga Routing Suite. pimd \- a PIM routing for use with @PACKAGE_FULLNAME@.
.SH SYNOPSIS .SH SYNOPSIS
.B pimd .B pimd
[ [
@ -30,7 +30,7 @@ pimd \- a PIM routing for use with Quagga Routing Suite.
.SH DESCRIPTION .SH DESCRIPTION
.B pimd .B pimd
is a protocol-independent multicast component that works with the is a protocol-independent multicast component that works with the
.B Quagga .B @PACKAGE_FULLNAME@
Routing Suite. Routing Suite.
.SH OPTIONS .SH OPTIONS
Options available for the Options available for the
@ -42,10 +42,10 @@ Runs in daemon mode, forking and exiting from tty.
.TP .TP
\fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR \fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR
Specifies the config file to use for startup. If not specified this Specifies the config file to use for startup. If not specified this
option will likely default to \fB\fI/usr/local/etc/pimd.conf\fR. option will default to \fB\fI@CFG_SYSCONF@/pimd.conf\fR.
.TP .TP
\fB\-g\fR, \fB\-\-group \fR\fIgroup\fR \fB\-g\fR, \fB\-\-group \fR\fIgroup\fR
Specify the group to run as. Default is \fIquagga\fR. Specify the group to run as. Default is \fI@enable_group@\fR.
.TP .TP
\fB\-h\fR, \fB\-\-help\fR \fB\-h\fR, \fB\-\-help\fR
A brief message. A brief message.
@ -53,11 +53,11 @@ A brief message.
\fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR \fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR
When pimd starts its process identifier is written to When pimd starts its process identifier is written to
\fB\fIpid-file\fR. The init system uses the recorded PID to stop or \fB\fIpid-file\fR. The init system uses the recorded PID to stop or
restart pimd. The likely default is \fB\fI/var/run/pimd.pid\fR. restart pimd. The default is \fB\fI@CFG_STATE@/pimd.pid\fR.
.TP .TP
\fB\-z\fR, \fB\-\-socket \fR\fIpath\fR \fB\-z\fR, \fB\-\-socket \fR\fIpath\fR
Specify the socket path for contacting the zebra daemon. Specify the socket path for contacting the zebra daemon.
The likely default is \fB\fI/var/run/zserv.api\fR. The default is \fB\fI@CFG_STATE@/zserv.api\fR.
.TP .TP
\fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR \fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR
Specify the port that the pimd VTY will listen on. This defaults to Specify the port that the pimd VTY will listen on. This defaults to
@ -68,7 +68,7 @@ Specify the address that the pimd VTY will listen on. Default is all
interfaces. interfaces.
.TP .TP
\fB\-u\fR, \fB\-\-user \fR\fIuser\fR \fB\-u\fR, \fB\-\-user \fR\fIuser\fR
Specify the user to run as. Default is \fIquagga\fR. Specify the user to run as. Default is \fI@enable_user@\fR.
.TP .TP
\fB\-v\fR, \fB\-\-version\fR \fB\-v\fR, \fB\-\-version\fR
Print the version and exit. Print the version and exit.
@ -77,22 +77,22 @@ Print the version and exit.
Enable logging information for zclient debugging. Enable logging information for zclient debugging.
.SH FILES .SH FILES
.TP .TP
.BI /usr/local/sbin/pimd .BI @CFG_SBIN@/pimd
The default location of the The default location of the
.B pimd .B pimd
binary. binary.
.TP .TP
.BI /usr/local/etc/pimd.conf .BI @CFG_SYSCONF@/pimd.conf
The default location of the The default location of the
.B pimd .B pimd
config file. config file.
.TP .TP
.BI /var/run/pimd.pid .BI @CFG_STATE@/pimd.pid
The default location of the The default location of the
.B pimd .B pimd
pid file. pid file.
.TP .TP
.BI /var/run/zserv.api .BI @CFG_STATE@/zserv.api
The default location of the The default location of the
.B zebra .B zebra
unix socket file. unix socket file.

View file

@ -1,4 +1,4 @@
.TH Quagga 1 "27 July 2006" "Quagga Systemd Script" "Version 0.99.23.1" .TH Quagga 1 "27 July 2006" "@PACKAGE_FULLNAME@ Systemd Script" "Version @PACKAGE_VERSION@"
.SH NAME .SH NAME
quagga \- a systemd interaction script quagga \- a systemd interaction script
.SH SYNOPSIS .SH SYNOPSIS
@ -28,9 +28,9 @@ quagga \- a systemd interaction script
] ]
.br .br
.SH DESCRIPTION .SH DESCRIPTION
.B Quagga .B @PACKAGE_NAME@
is a systemd interaction script for the is a systemd interaction script for the
.B Quagga .B @PACKAGE_FULLNAME@
routing engine. routing engine.
.SH OPTIONS .SH OPTIONS
Options available for the Options available for the
@ -57,9 +57,9 @@ Status of all the daemons
.SH BUGS .SH BUGS
.B quagga .B quagga
eats bugs for breakfast. If you have food for the maintainers try eats bugs for breakfast. If you have food for the maintainers try
.BI http://bugzilla.quagga.net .BI @PACKAGE_BUGREPORT@
.SH AUTHORS .SH AUTHORS
See See
.BI http://www.quagga.net .BI @PACKAGE_URL@
or the Info file for an accurate list of authors. or the Info file for an accurate list of authors.

View file

@ -1,6 +1,6 @@
.TH RIPD 8 "25 November 2004" "Quagga RIP daemon" "Version 0.97.3" .TH RIPD 8 "25 November 2004" "@PACKAGE_FULLNAME@ RIP daemon" "Version @PACKAGE_VERSION@"
.SH NAME .SH NAME
ripd \- a RIP routing engine for use with Quagga routing software. ripd \- a RIP routing engine for use with @PACKAGE_FULLNAME@.
.SH SYNOPSIS .SH SYNOPSIS
.B ripd .B ripd
[ [
@ -27,7 +27,7 @@ ripd \- a RIP routing engine for use with Quagga routing software.
.SH DESCRIPTION .SH DESCRIPTION
.B ripd .B ripd
is a routing component that works with the is a routing component that works with the
.B Quagga .B @PACKAGE_FULLNAME@
routing engine. routing engine.
.SH OPTIONS .SH OPTIONS
Options available for the Options available for the
@ -40,10 +40,10 @@ Runs in daemon mode, forking and exiting from tty.
.TP .TP
\fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR \fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR
Specifies the config file to use for startup. If not specified this Specifies the config file to use for startup. If not specified this
option will likely default to \fB\fI/usr/local/etc/ripd.conf\fR. option will default to \fB\fI@CFG_SYSCONF@/ripd.conf\fR.
.TP .TP
\fB\-g\fR, \fB\-\-group \fR\fIgroup\fR \fB\-g\fR, \fB\-\-group \fR\fIgroup\fR
Specify the group to run as. Default is \fIquagga\fR. Specify the group to run as. Default is \fI@enable_group@\fR.
.TP .TP
\fB\-h\fR, \fB\-\-help\fR \fB\-h\fR, \fB\-\-help\fR
A brief message. A brief message.
@ -51,7 +51,7 @@ A brief message.
\fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR \fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR
When ripd starts its process identifier is written to When ripd starts its process identifier is written to
\fB\fIpid-file\fR. The init system uses the recorded PID to stop or \fB\fIpid-file\fR. The init system uses the recorded PID to stop or
restart ripd. The likely default is \fB\fI/var/run/ripd.pid\fR. restart ripd. The default is \fB\fI@CFG_STATE@/ripd.pid\fR.
.TP .TP
\fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR \fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR
Specify the port that the ripd VTY will listen on. This defaults to Specify the port that the ripd VTY will listen on. This defaults to
@ -62,7 +62,7 @@ Specify the address that the ripd VTY will listen on. Default is all
interfaces. interfaces.
.TP .TP
\fB\-u\fR, \fB\-\-user \fR\fIuser\fR \fB\-u\fR, \fB\-\-user \fR\fIuser\fR
Specify the user to run as. Default is \fIquagga\fR. Specify the user to run as. Default is \fI@enable_user@\fR.
.TP .TP
\fB\-r\fR, \fB\-\-retain\fR \fB\-r\fR, \fB\-\-retain\fR
When the program terminates, retain routes added by \fBripd\fR. When the program terminates, retain routes added by \fBripd\fR.
@ -71,12 +71,12 @@ When the program terminates, retain routes added by \fBripd\fR.
Print the version and exit. Print the version and exit.
.SH FILES .SH FILES
.TP .TP
.BI /usr/lib/quagga/ripd .BI @CFG_SBIN@/ripd
The default location of the The default location of the
.B ripd .B ripd
binary. binary.
.TP .TP
.BI /etc/quagga/ripd.conf .BI @CFG_SYSCONF@/ripd.conf
The default location of the The default location of the
.B ripd .B ripd
config file. config file.
@ -88,7 +88,7 @@ process is config'd to output logs to a file, then you will find this
file in the directory where you started \fBripd\fR. file in the directory where you started \fBripd\fR.
.SH WARNING .SH WARNING
This man page is intended to be a quick reference for command line This man page is intended to be a quick reference for command line
options. The definitive document is the Info file \fBQuagga\fR. options. The definitive document is the Info file \fB@PACKAGE_NAME@\fR.
.SH DIAGNOSTICS .SH DIAGNOSTICS
The ripd process may log to standard output, to a VTY, to a log The ripd process may log to standard output, to a VTY, to a log
file, or through syslog to the system logs. \fBripd\fR supports many file, or through syslog to the system logs. \fBripd\fR supports many
@ -104,10 +104,10 @@ debugging options, see the Info file, or the source for details.
.SH BUGS .SH BUGS
.B ripd .B ripd
eats bugs for breakfast. If you have food for the maintainers try eats bugs for breakfast. If you have food for the maintainers try
.BI http://bugzilla.quagga.net .BI @PACKAGE_BUGREPORT@
.SH AUTHORS .SH AUTHORS
See See
.BI http://www.zebra.org .BI http://www.zebra.org
and and
.BI http://www.quagga.net .BI @PACKAGE_URL@
or the Info file for an accurate list of authors. or the Info file for an accurate list of authors.

View file

@ -1,6 +1,6 @@
.TH RIPNGD 8 "25 November 2004" "Quagga RIPNG daemon" "Version 0.97.3" .TH RIPNGD 8 "25 November 2004" "@PACKAGE_FULLNAME@ RIPNG daemon" "Version @PACKAGE_VERSION@"
.SH NAME .SH NAME
ripngd \- a RIPNG routing engine for use with Quagga routing software. ripngd \- a RIPNG routing engine for use with @PACKAGE_FULLNAME@.
.SH SYNOPSIS .SH SYNOPSIS
.B ripngd .B ripngd
[ [
@ -27,7 +27,7 @@ ripngd \- a RIPNG routing engine for use with Quagga routing software.
.SH DESCRIPTION .SH DESCRIPTION
.B ripngd .B ripngd
is a routing component that works with the is a routing component that works with the
.B Quagga .B @PACKAGE_FULLNAME@
routing engine. routing engine.
.SH OPTIONS .SH OPTIONS
Options available for the Options available for the
@ -40,10 +40,10 @@ Runs in daemon mode, forking and exiting from tty.
.TP .TP
\fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR \fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR
Specifies the config file to use for startup. If not specified this Specifies the config file to use for startup. If not specified this
option will likely default to \fB\fI/usr/local/etc/ripngd.conf\fR. option will default to \fB\fI@CFG_SYSCONF@/ripngd.conf\fR.
.TP .TP
\fB\-g\fR, \fB\-\-group \fR\fIgroup\fR \fB\-g\fR, \fB\-\-group \fR\fIgroup\fR
Specify the group to run as. Default is \fIquagga\fR. Specify the group to run as. Default is \fI@enable_group@\fR.
.TP .TP
\fB\-h\fR, \fB\-\-help\fR \fB\-h\fR, \fB\-\-help\fR
A brief message. A brief message.
@ -51,7 +51,7 @@ A brief message.
\fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR \fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR
When ripngd starts its process identifier is written to When ripngd starts its process identifier is written to
\fB\fIpid-file\fR. The init system uses the recorded PID to stop or \fB\fIpid-file\fR. The init system uses the recorded PID to stop or
restart ripngd. The likely default is \fB\fI/var/run/ripngd.pid\fR. restart ripngd. The default is \fB\fI@CFG_STATE@/ripngd.pid\fR.
.TP .TP
\fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR \fB\-P\fR, \fB\-\-vty_port \fR\fIport-number\fR
Specify the port that the ripngd VTY will listen on. This defaults to Specify the port that the ripngd VTY will listen on. This defaults to
@ -62,7 +62,7 @@ Specify the address that the ripngd VTY will listen on. Default is all
interfaces. interfaces.
.TP .TP
\fB\-u\fR, \fB\-\-user \fR\fIuser\fR \fB\-u\fR, \fB\-\-user \fR\fIuser\fR
Specify the user to run as. Default is \fIquagga\fR. Specify the user to run as. Default is \fI@enable_user@\fR.
.TP .TP
\fB\-r\fR, \fB\-\-retain\fR \fB\-r\fR, \fB\-\-retain\fR
When the program terminates, retain routes added by \fBripd\fR. When the program terminates, retain routes added by \fBripd\fR.
@ -71,12 +71,12 @@ When the program terminates, retain routes added by \fBripd\fR.
Print the version and exit. Print the version and exit.
.SH FILES .SH FILES
.TP .TP
.BI /usr/lib/quagga/ripngd .BI @CFG_SBIN@/ripngd
The default location of the The default location of the
.B ripngd .B ripngd
binary. binary.
.TP .TP
.BI /etc/quagga/ripngd.conf .BI @CFG_SYSCONF@/ripngd.conf
The default location of the The default location of the
.B ripngd .B ripngd
config file. config file.
@ -88,7 +88,7 @@ process is config'd to output logs to a file, then you will find this
file in the directory where you started \fBripngd\fR. file in the directory where you started \fBripngd\fR.
.SH WARNING .SH WARNING
This man page is intended to be a quick reference for command line This man page is intended to be a quick reference for command line
options. The definitive document is the Info file \fBQuagga\fR. options. The definitive document is the Info file \fB@PACKAGE_NAME@\fR.
.SH DIAGNOSTICS .SH DIAGNOSTICS
The ripngd process may log to standard output, to a VTY, to a log The ripngd process may log to standard output, to a VTY, to a log
file, or through syslog to the system logs. \fBripngd\fR supports many file, or through syslog to the system logs. \fBripngd\fR supports many
@ -104,11 +104,11 @@ debugging options, see the Info file, or the source for details.
.SH BUGS .SH BUGS
.B ripngd .B ripngd
eats bugs for breakfast. If you have food for the maintainers try eats bugs for breakfast. If you have food for the maintainers try
.BI http://bugzilla.quagga.net .BI @PACKAGE_BUGREPORT@
.SH AUTHORS .SH AUTHORS
See See
.BI http://www.zebra.org .BI http://www.zebra.org
and and
.BI http://www.quagga.net .BI @PACKAGE_URL@
or the Info file for an accurate list of authors. or the Info file for an accurate list of authors.

View file

@ -1,6 +1,6 @@
.TH VTYSH 1 "27 July 2006" "Quagga VTY shell" "Version 0.96.5" .TH VTYSH 1 "27 July 2006" "@PACKAGE_FULLNAME@ VTY shell" "Version @PACKAGE_VERSION@"
.SH NAME .SH NAME
vtysh \- a integrated shell for Quagga routing software vtysh \- a integrated shell for @PACKAGE_FULLNAME@.
.SH SYNOPSIS .SH SYNOPSIS
.B vtysh .B vtysh
[ [
@ -21,7 +21,7 @@ vtysh \- a integrated shell for Quagga routing software
.SH DESCRIPTION .SH DESCRIPTION
.B vtysh .B vtysh
is a integrated shell for is a integrated shell for
.B Quagga .B @PACKAGE_FULLNAME@
routing engine. routing engine.
.SH OPTIONS .SH OPTIONS
Options available for the Options available for the
@ -29,8 +29,8 @@ Options available for the
command: command:
.IP "\fB\-b, \-\-boot\fP" .IP "\fB\-b, \-\-boot\fP"
Execute boot startup configuration. It makes sense only if integrated config Execute boot startup configuration. It makes sense only if integrated config
file is in use (not default in Quagga). See Info file \fBQuagga\fR for more file is in use (not default in @PACKAGE_FULLNAME@). See Info file
info. \fB@PACKAGE_NAME@\fR for more info.
.IP "\fB\-c, \-\-command \fIcommand\fP" .IP "\fB\-c, \-\-command \fIcommand\fP"
Specify command to be executed under batch mode. It behaves like -c option in Specify command to be executed under batch mode. It behaves like -c option in
any other shell - any other shell -
@ -39,7 +39,7 @@ is executed and
.B vtysh .B vtysh
exits. exits.
It's useful for gathering info from Quagga routing software or reconfiguring It's useful for gathering info from @PACKAGE_FULLNAME@ daemons or reconfiguring
daemons from inside shell scripts, etc. daemons from inside shell scripts, etc.
Note that multiple commands may be executed by using more than one Note that multiple commands may be executed by using more than one
-c option and/or embedding linefeed characters inside the -c option and/or embedding linefeed characters inside the
@ -48,7 +48,7 @@ string.
.IP "\fB\-d, \-\-daemon \fIdaemon_name\fP" .IP "\fB\-d, \-\-daemon \fIdaemon_name\fP"
Specify which daemon to connect to. By default, Specify which daemon to connect to. By default,
.B vtysh .B vtysh
attempts to connect to all Quagga daemons running on the system. With this attempts to connect to all @PACKAGE_FULLNAME@ daemons running on the system. With this
flag, one can specify a single daemon to connect to instead. For example, flag, one can specify a single daemon to connect to instead. For example,
specifying '-d ospfd' will connect only to ospfd. This can be particularly specifying '-d ospfd' will connect only to ospfd. This can be particularly
useful inside scripts with -c where the command is targeted for a single daemon. useful inside scripts with -c where the command is targeted for a single daemon.
@ -68,20 +68,20 @@ Display a usage message on standard output and exit.
This should be the name of the pager to use. Default is \fBmore\fR. This should be the name of the pager to use. Default is \fBmore\fR.
.SH FILES .SH FILES
.TP .TP
.BI /etc/quagga/vtysh.conf .BI @CFG_SYSCONF@/vtysh.conf
The default location of the The default location of the
.B vtysh .B vtysh
config file. config file.
.TP .TP
.BI /etc/quagga/Quagga.conf .BI @CFG_SYSCONF@/Quagga.conf
The default location of the integrated Quagga routing engine config file The default location of the integrated @PACKAGE_FULLNAME@ routing engine config file
if integrated config file is in use (not default). if integrated config file is in use (not default).
.TP .TP
.BI ${HOME}/.history_quagga .BI ${HOME}/.history_quagga
Location of history of commands entered via cli Location of history of commands entered via cli
.SH WARNING .SH WARNING
This man page is intended to be a quick reference for command line This man page is intended to be a quick reference for command line
options. The definitive document is the Info file \fBQuagga\fR. options. The definitive document is the Info file \fB@PACKAGE_NAME@\fR.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR bgpd (8), .BR bgpd (8),
.BR ripd (8), .BR ripd (8),
@ -93,11 +93,11 @@ options. The definitive document is the Info file \fBQuagga\fR.
.SH BUGS .SH BUGS
.B vtysh .B vtysh
eats bugs for breakfast. If you have food for the maintainers try eats bugs for breakfast. If you have food for the maintainers try
.BI http://bugzilla.quagga.net .BI @PACKAGE_BUGREPORT@
.SH AUTHORS .SH AUTHORS
See See
.BI http://www.zebra.org .BI http://www.zebra.org
and and
.BI http://www.quagga.net .BI @PACKAGE_URL@
or the Info file for an accurate list of authors. or the Info file for an accurate list of authors.

View file

@ -226,6 +226,6 @@ Display the usage information and exit.
.BR ripd (8), .BR ripd (8),
.BR ripngd (8) .BR ripngd (8)
.PP .PP
See the project homepage at <http://www.quagga.net/>. See the project homepage at <@PACKAGE_URL@>.
.SH AUTHORS .SH AUTHORS
Copyright 2004 Andrew J. Schorr Copyright 2004 Andrew J. Schorr

View file

@ -1,6 +1,6 @@
.TH ZEBRA 8 "25 November 2004" "Zebra daemon" "Version 0.97.3" .TH ZEBRA 8 "25 November 2004" "Zebra daemon" "Version @PACKAGE_VERSION@"
.SH NAME .SH NAME
zebra \- a routing manager for use with associated Quagga components. zebra \- a routing manager for use with associated @PACKAGE_FULLNAME@ components.
.SH SYNOPSIS .SH SYNOPSIS
.B zebra .B zebra
[ [
@ -44,10 +44,10 @@ Runs in daemon mode, forking and exiting from tty.
.TP .TP
\fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR \fB\-f\fR, \fB\-\-config-file \fR\fIconfig-file\fR
Specifies the config file to use for startup. If not specified this Specifies the config file to use for startup. If not specified this
option will likely default to \fB\fI/usr/local/etc/zebra.conf\fR. option will default to \fB\fI@CFG_SYSCONF@/zebra.conf\fR.
.TP .TP
\fB\-g\fR, \fB\-\-group \fR\fIgroup\fR \fB\-g\fR, \fB\-\-group \fR\fIgroup\fR
Specify the group to run as. Default is \fIquagga\fR. Specify the group to run as. Default is \fI@enable_group@\fR.
.TP .TP
\fB\-h\fR, \fB\-\-help\fR \fB\-h\fR, \fB\-\-help\fR
A brief message. A brief message.
@ -55,7 +55,7 @@ A brief message.
\fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR \fB\-i\fR, \fB\-\-pid_file \fR\fIpid-file\fR
When zebra starts its process identifier is written to When zebra starts its process identifier is written to
\fB\fIpid-file\fR. The init system uses the recorded PID to stop or \fB\fIpid-file\fR. The init system uses the recorded PID to stop or
restart zebra. The likely default is \fB\fI/var/run/zebra.pid\fR. restart zebra. The default is \fB\fI@CFG_STATE@/zebra.pid\fR.
.TP .TP
\fB\-k\fR, \fB\-\-keep_kernel\fR \fB\-k\fR, \fB\-\-keep_kernel\fR
On startup, don't delete self inserted routes. On startup, don't delete self inserted routes.
@ -69,7 +69,7 @@ Specify the address that the zebra VTY will listen on. Default is all
interfaces. interfaces.
.TP .TP
\fB\-u\fR, \fB\-\-user \fR\fIuser\fR \fB\-u\fR, \fB\-\-user \fR\fIuser\fR
Specify the user to run as. Default is \fIquagga\fR. Specify the user to run as. Default is \fI@enable_user@\fR.
.TP .TP
\fB\-r\fR, \fB\-\-retain\fR \fB\-r\fR, \fB\-\-retain\fR
When the program terminates, retain routes added by \fBzebra\fR. When the program terminates, retain routes added by \fBzebra\fR.
@ -90,12 +90,12 @@ Note that this affects Linux only.
Print the version and exit. Print the version and exit.
.SH FILES .SH FILES
.TP .TP
.BI /usr/lib/quagga/zebra .BI @CFG_SBIN@/zebra
The default location of the The default location of the
.B zebra .B zebra
binary. binary.
.TP .TP
.BI /etc/quagga/zebra.conf .BI @CFG_SYSCONF@/zebra.conf
The default location of the The default location of the
.B zebra .B zebra
config file. config file.
@ -107,7 +107,7 @@ process is config'd to output logs to a file, then you will find this
file in the directory where you started \fBzebra\fR. file in the directory where you started \fBzebra\fR.
.SH WARNING .SH WARNING
This man page is intended to be a quick reference for command line This man page is intended to be a quick reference for command line
options. The definitive document is the Info file \fBQuagga\fR. options. The definitive document is the Info file \fB@PACKAGE_NAME@\fR.
.SH DIAGNOSTICS .SH DIAGNOSTICS
The zebra process may log to standard output, to a VTY, to a log The zebra process may log to standard output, to a VTY, to a log
file, or through syslog to the system logs. \fBzebra\fR supports many file, or through syslog to the system logs. \fBzebra\fR supports many
@ -123,11 +123,11 @@ debugging options, see the Info file, or the source for details.
.SH BUGS .SH BUGS
.B zebra .B zebra
eats bugs for breakfast. If you have food for the maintainers try eats bugs for breakfast. If you have food for the maintainers try
.BI http://bugzilla.quagga.net .BI @PACKAGE_BUGREPORT@
.SH AUTHORS .SH AUTHORS
See See
.BI http://www.zebra.org .BI http://www.zebra.org
and and
.BI http://www.quagga.net .BI @PACKAGE_URL@
or the Info file for an accurate list of authors. or the Info file for an accurate list of authors.