bird/doc/bird.sgml

463 lines
18 KiB
Plaintext
Raw Normal View History

2000-04-18 00:48:22 +08:00
<!doctype linuxdoc system>
<!--
Bird documentation
Look for "about this documentation" section to learn more.
2000-04-18 00:48:22 +08:00
(set-fill-column 100)
Copyright 1999,2000 Pavel Machek <pavel@ucw.cz>, distribute under GPL version 2 or later.
-->
<article>
<title>Bird
<author>
Pavel Machek <tt/pavel@ucw.cz/
<date>2000
<abstract>
2000-05-12 18:57:36 +08:00
This document contains documentation for BIRD Internet Routing Daemon
2000-04-18 00:48:22 +08:00
</abstract>
<!-- Table of contents -->
<toc>
<!-- Begin the document -->
<sect>Introduction
<sect1>What is bird
<p><label id="intro"> You may wonder what 'bird' means. It is acronym of 'BIRD Internet Routing
Daemon', and we think that's cool name. Its task is similar to what firmware of Cisco routers does,
2000-05-19 23:59:21 +08:00
or what gated <HTMLURL URL="http://www.gated.org/"> or GNU zebra <HTMLURL
URL="http://www.zebra.org/"> does. However, you can not run Cisco's firmware on "normal" computer
2000-04-18 00:48:22 +08:00
and gated is really hard to configure and comes under wrong license. Bird is being developed on
Charles University, Prague, and can be freely distributed under terms of GNU General Public
License. Bird is designed to run on Unix and unix-like systems, it is primarily developed on Linux.
2000-04-18 00:48:22 +08:00
<sect1>About this documentation
<p>This documentation can have 4 forms: sgml (this is master copy), html, ASCII text (generated from
html) and dvi/postscript (generated from sgml using sgmltools). You should always edit master copy,
it is slightly modified linuxdoc dtd. Anything in &lt;descrip&gt; tags is considered definition of
configuration primitives, &lt;cf&gt; is fragment of configuration within normal text, &lt;m&gt; is
"meta" information within fragment of configuration -- something in config which is not keyword.
2000-04-18 00:48:22 +08:00
2000-05-25 23:28:24 +08:00
<sect1>About routing tables
<p>Bird has one or more routing tables. Each routing table contains
2000-05-26 00:28:08 +08:00
list of known routes. Each route has certain attributes, most important
2000-05-25 23:28:24 +08:00
is prefix of network this route is for. Routing table maintains more
than one entry for network, but at most one entry for one network and
one protocol. The entry with biggest preference is used for
routing. You can get list of route attributes in "Route attributes"
section in filters.
2000-05-19 23:59:21 +08:00
<sect>Configuration
<sect1>Introduction
2000-04-18 00:48:22 +08:00
2000-05-25 23:01:08 +08:00
<p>Bird is configured using text configuration file. At startup, bird
reads <file/bird.conf/ (unless -c command line parameter is
given). Everything on a line after <cf/#/ is a comment, whitespace is
ignored, C-style comments <cf>/* comment */</cf> are also
recognized. If there's variable number of options, it is grouped using
2000-05-25 23:01:08 +08:00
<cf/{ }/ brackets. Each option is terminated by <cf/;/.
<p>Really simple configuration file might look like this, you can find
example of more complicated configuration file in
<file>doc/bird.conf.example</file>.
2000-04-18 00:48:22 +08:00
<code>
2000-04-18 00:48:22 +08:00
protocol kernel {
persist; # Don't remove routes on bird shutdown
scan time 20; # Scan kernel routing table every 20 seconds
export all; # Default is export none
}
protocol device {
scan time 10; # Scan interfaces every 10 seconds
}
protocol rip {
export all;
import all;
}
</code>
2000-04-18 00:48:22 +08:00
2000-05-19 23:59:21 +08:00
<sect1>Global options
<p><descrip>
<tag>log "<m/filename/"|syslog|stderr all|{ <m/list of
classes/ }</tag> set logging of classes (either all or <cf/{
error, trace }/ etc.) into selected destination. Classes are:
<cf/debug/ for debugging message, <cf/trace/, <cf/info/,
2000-05-26 00:28:08 +08:00
<cf/remote/ for messages about misbehavior of remote side, <cf/warning/,
<cf/error/, <cf/auth/, <cf/fatal/, <cf/bug/ for internal bugs
of bird. You may specify more than one <cf/log/ line to log to multiple
destinations.
<tag>debug protocols all|off|{ states, routes, filters, interfaces, events, packets }</tag>
sets global default of debugging options.
<tag>filter <m/name/{ <m/commands/ }</tag> define filter. You can learn more about filters
in next chapter.
2000-05-12 18:57:36 +08:00
<tag>protocol rip|ospf|bgp <m/[name]/ { <m>protocol options</m> }</tag> define protocol
instance, called name (or called something like rip5 if you omit name). You can learn more
about configuring protocols in their own chapters.
<tag>define constant = expression</tag> define constant. You can use it later in every place
you could use simple integer.
<tag>router id <m/num.num.num.num/</tag> set router id. Router
id needs to be world-wide unique 32bit number, identifying
router. It is usually one of router's IP addresses.
<tag>table <m/name/</tag> create new routing table.
2000-05-19 23:59:21 +08:00
<tag>eval <m/expr/</tag> evaluates given filter expression. It is used for testing.
</descrip>
2000-05-19 23:59:21 +08:00
<sect1>Per-protocol options
2000-05-12 18:57:36 +08:00
2000-05-19 23:59:21 +08:00
<p>Several options are per-protocol, but all protocols support them. They are described here.
<descrip>
<tag>preference <m/expr/</tag> sets preference of this protocol.
<tag>disabled</tag> disables given protocol.
<tag>debug <m/setting/</tag> this is similar to global debug setting, except that it only
affects one protocol.
<tag>import <m/filter/</tag> filter can be either either <cf> { <m>filter commands</m>
}</cf> or <cf>filter <m/name/</cf>. Import filter works in direction from protocol to main
routing table.
2000-05-12 18:57:36 +08:00
<tag>export <m/filter/</tag> This is similar to <cf>export</cf> keyword, except that it
works in direction from main routing table to protocol.
2000-05-19 23:59:21 +08:00
<tag>table <m/name/</tag> Connect this protocol to non-default table.
</descrip>
<p>There are per-protocol options that give sense only with certain protocols.
<descrip>
<tag>passwords { password "<m/password/" from <m/time/ to <m/time/ passive <m/time/ id
<m/num/ [...] }</tag> specifies passwords to be used with this protocol. Passive time is
time from which password is not announced but is allowed. id is password id, as needed by
certain protocols.
<tag>interface "<m/mask/" [ { <m/option/ ; [ ... ] } ]</tag> specifies, which interfaces
this protocol is active at, and allows you to set options on interface-by-interface
basis. Mask is specified in shell-like patters, thus <cf>interface "*" { mode broadcast;
};</cf> will start given protocol on all interfaces, with <cf>mode broadcast;</cf> option.
</descrip>
2000-04-18 00:48:22 +08:00
<sect>Filters
<sect1>Introduction
<p>Bird contains rather simple programming language. (No, it can not yet read mail :-). There are
two objects in this language: filters and functions. Filters are called by bird core when route is
being passed between protocol and main routing table, and filters may call functions. Functions may
call other functions, but recursion is not allowed. Filter language contains control structures such
2000-04-18 00:48:22 +08:00
as if's and switches, but it allows no loops. Filters are
interpreted. Filter using many features can be found in <file>filter/test.conf</file>.
2000-04-18 00:48:22 +08:00
<p>You can find sources of filters language in <file>filter/</file>
directory. <file>filter/config.Y</file> contains filter grammar, and basically translates source from
user into tree of <cf>f_inst</cf> structures. These trees are later interpreted using code in
<file>filter/filter.c</file>. Filters internally work with values/variables in <tt>struct
f_val</tt>, which contains type of value and value.
2000-04-18 00:48:22 +08:00
<p>Filter basically gets the route, looks at its attributes and
modifies some of them if it wishes. At the end, it decides, whether to
pass change route through (using <cf/accept/), or whether to <cf/reject/ given route. It looks
like this:
2000-04-18 00:48:22 +08:00
<code>
2000-04-18 00:48:22 +08:00
filter not_too_far
int var;
{
if defined( rip_metric ) then
var = rip_metric;
else {
var = 1;
rip_metric = 1;
}
if rip_metric &gt; 10 then
reject "RIP metric is too big";
else
accept "ok";
}
</code>
2000-04-18 00:48:22 +08:00
<p>As you can see, filter has a header, list of local variables, and body. Header consists of
<cf/filter/ keyword, followed by (unique) name of filter. List of local variables consists of
pairs <cf><M>type name</M>;</cf>, where each pair defines one local variable. Body consists of
<cf> { <M>statements</M> }</cf>. Statements are terminated by <cf/;/. You can group
several statements into one by <cf>{ <M>statements</M> }</cf> construction, that is useful if
2000-04-18 00:48:22 +08:00
you want to make bigger block of code conditional.
<p>Bird supports functions, so that you don't have to repeat same blocks of code over and
over. Functions can have zero or more parameters, and can have local variables. Function basically
looks like this:
<code>
function name ()
int local_variable;
{
local_variable = 5;
}
function with_parameters (int parameter)
{
print parameter;
}
</code>
<p>Unlike C, variables are declared after function line but before first {. You can not declare
variables in nested blocks. Functions are called like in C: <cf>name();
with_parameters(5);</cf>. Function may return value using <cf>return <m/[expr]/</cf>
syntax. Returning value exits from current function (this is similar to C).
<p>Filters are declared in similar way to functions, except they can not have explicit
parameters. They get route table entry as implicit parameter. Route table entry is passed implicitly
to any functions being called. Filter must terminate with either accept or reject statement.
2000-04-18 00:48:22 +08:00
<sect1>Data types
<p>Each variable and each value has certain type. Unlike C, filters distinguish between integers and
booleans (that is to prevent you from shooting in the foot).
<descrip>
<tag/bool/ this is boolean type, it can have only two values, <cf/TRUE/ and
<cf/FALSE/. Boolean is not compatible with integer and is the only type you can use in if
statements.
2000-04-18 00:48:22 +08:00
<tag/int/ this is common integer, you can expect it to store signed values from -2000000000
to +2000000000.
2000-04-18 00:48:22 +08:00
<tag/pair/ this is pair of two short integers. Each component can have values from 0 to
65535. Constant of this type is written as <cf/(1234,5678)/.
2000-04-18 00:48:22 +08:00
<tag/string/ this is string of characters. There are no ways to modify strings in
filters. You can pass them between functions, assign to variable of type string, print
such variables, but you can not concatenate two strings (for example). String constants
are written as <cf/"This is a string constant"/.
2000-04-18 00:48:22 +08:00
<tag/ip/ this type can hold single ip address. Depending on version of bird you are using, it
can be IPv4 or IPv6 address. IPv4 addresses are written (as you would expect) as
<cf/1.2.3.4/. You can apply special operator <cf>.mask(<M>num</M>)</cf>
on values of type ip. It masks out all but first <cf><M>num</M></cf> bits from ip
2000-04-18 00:48:22 +08:00
address. So <cf/1.2.3.4.mask(8) = 1.0.0.0/ is true.
<tag/prefix/ this type can hold ip address, prefix len pair. Prefixes are written as
<cf><M>ipaddress</M>/<M>pxlen</M></cf>, or
<cf><m>ipaddress</m>/<m>netmask</m></cf> There are two special
operators on prefix:
<cf/.ip/, which separates ip address from the pair, and <cf/.len/, which separates prefix
len from the pair.
2000-04-18 00:48:22 +08:00
<tag/int|ip|prefix|pair set/
2000-04-18 00:48:22 +08:00
filters know four types of sets. Sets are similar to strings: you can pass them around
but you can not modify them. Constant of type <cf>set int</cf> looks like <cf>
2000-04-18 00:48:22 +08:00
[ 1, 2, 5..7 ]</cf>. As you can see, both simple values and ranges are permitted in
sets. Sets of prefixes are special: you can specify which prefixes should match them by
using <cf>[ 1.0.0.0/8+, 2.0.0.0/8-, 3.0.0.0/8{5,6} ]</cf>. 3.0.0.0/8{5,6} matches
prefixes 3.X.X.X, whose prefix length is 5 to 6. 3.0.0.0/8+ is shorthand for 3.0.0.0/{0,8},
2000-04-18 00:48:22 +08:00
3.0.0.0/8- is shorthand for 3.0.0.0/{0,7}.
<tag/enum/
2000-05-26 00:28:08 +08:00
enumeration types are halfway-internal in the bird. You can not define your own
variable of enumeration type, but some predefined variables are of enumeration
type. Enumeration types are incompatible with each other, again, for your
2000-04-18 00:48:22 +08:00
protection.
<tag/bgppath/
2000-05-25 23:01:08 +08:00
bgp path is list of autonomous systems.
<tag/bgpmask/
bgp mask is mask used for matching bgp paths
(using <cf>path ~ / 2 3 5 ? / syntax </cf>). <cf/?/ is
really serving in "any number of autonomous systems", but we
did not want to use * because then it becomes too easy to
write <cf>/*</cf> which is start of comment.
2000-05-25 23:01:08 +08:00
<tag/clist/
community list. This is similar to set of pairs,
except that unlike other sets, it can be modified.
2000-04-18 00:48:22 +08:00
</descrip>
<sect1>Operations
<p>Filter language supports common integer operations <cf>(+,-,*,/)</cf>, parenthesis <cf/(a*(b+c))/, comparation
2000-05-19 23:59:21 +08:00
<cf/(a=b, a!=b, a&lt;b, a&gt;=b)/. Special operators include <cf/&tilde;/ for "in" operation. In operation can be
2000-05-26 00:28:08 +08:00
used on element and set of that elements, or on ip and prefix, or on prefix and prefix or on bgppath and bgpmask. Its result
is true if element is in given set or if ip address is inside given prefix. Operator <cf/=/ is used to assign value
to variable.
2000-04-18 00:48:22 +08:00
<sect1>Control structures
<p>Filters support two control structures: if/then/else and case. Syntax of if/then/else is <cf>if
<M>expression</M> then <M>command</M>; else <M>command</M>;</cf> and you can use <cf>{
<M>command_1</M>; <M>command_2</M>; <M>...</M> }</cf> instead of one or both commands. <cf>else</cf>
clause may be omitted.
2000-04-18 00:48:22 +08:00
<p><cf>case</cf> is similar to case from Pascal. Syntax is <cf>case <m/expr/ { else |
<m/num_or_prefix [ .. num_or_prefix]/ : <m/statement/ ; [ ... ] }</cf>. Expression after
2000-05-19 23:59:21 +08:00
<cf>case</cf> can be of any type that can be on the left side of &tilde; operator, and anything that could
be member of set is allowed before :. Multiple commands are allowed without {} grouping. If argument
matches neither of : clauses, else: clause is used. (Case is actually implemented as set matching,
internally.)
2000-04-18 00:48:22 +08:00
2000-05-19 23:59:21 +08:00
<p>Here is example that uses if and case structures:
<code>
case arg1 {
2: print "two"; print "I can do more commands without {}";
3 .. 5: print "three to five";
else: print "something else";
}
if 1234 = i then printn "."; else { print "*** FAIL: if 1 else"; }
</code>
<sect1>Route attributes
<p>Filter is implicitly passed route, and it can access its attributes, just like it accesses variables.
2000-05-25 22:50:46 +08:00
<descrip>
2000-05-25 23:01:08 +08:00
<tag>defined( <m>attribute</m> )</tag>
returns TRUE if given attribute is defined. Access to undefined attribute results in runtime error.
<tag/<m/prefix/ network/
network this route is talking about.
<tag/<m/ip/ from/
who told me about this route.
<tag/<m/ip/ gw/
2000-05-26 00:28:08 +08:00
what is next hop packets routed using this route should be forwarded to.
<tag/<m/enum/ source/
what protocol told me about this route. This can have values such as <cf/RTS_RIP/ or <cf/RTS_OSPF_EXT/.
2000-05-25 22:50:46 +08:00
</descrip>
<p>Plus, there are protocol-specific attributes, which are described in protocol sections.
<sect1>Utility functions
<p>There are few functions you might find convient to use:
<descrip>
<tag>print <m/expr/ [ <m/, expr .../ ]</tag>
2000-05-26 00:28:08 +08:00
prints given expressions, useful mainly while debugging filters.
<tag>quitbird</tag>
2000-05-26 00:28:08 +08:00
terminates bird. Useful while debugging filter interpreter.
</descrip>
2000-04-18 00:48:22 +08:00
<sect>Protocols
<sect1>Rip
<sect2>Introduction
<p>Rip protocol (sometimes called Rest In Pieces) is simple protocol, where each router broadcasts
distances to all networks he can reach. When router hears distance to other network, it increments
it and broadcasts it back. Broadcasts are done in regular intervals. Therefore, if some network goes
unreachable, routers keep telling each other that distance is old distance plus 1 (actually, plus
interface metric, which is usually one). After some time, distance reaches infinity (that's 15 in
rip) and all routers know that network is unreachable. Rip tries to minimize situations where
counting to infinity is necessary, because it is slow. Due to infinity being 16, you can not use
rip on networks where maximal distance is bigger than 15 hosts. You can read more about rip at <HTMLURL
URL="http://www.ietf.org/html.charters/rip-charter.html">.
2000-04-18 00:48:22 +08:00
<sect2>Configuration
<p>In addition to options generic to other protocols, rip supports following options:
<descrip>
<tag/authentication none|password|md5/ selects authentication method to use. None means that
packets are not authenticated at all, password means that plaintext password is embedded
into each packet, and md5 means that packets are authenticated using md5 cryptographic
hash. If you set authentication to non-none, it is good idea to add <cf>passwords { }</cf>
section.
<tag>honor always|neighbor|never </tag>specifies, when should be routing table updates
honored. (Always, when sent from host on directly connected network, or never.)
2000-04-18 00:48:22 +08:00
</descrip>
<p>There are two options that can be specified per-interface. First is <cf>metric</cf>, with
default one. Second is <cf>mode multicast|broadcast|quiet|nolisten|version1</cf>, it selects mode for
2000-04-18 00:48:22 +08:00
rip to work in. If nothing is specified, rip runs in multicasts mode. <cf>version1</cf> is
currently equivalent to <cf>broadcast</cf>, and it makes rip talk at broadcast address even
through multicast mode is possible. <cf>quiet</cf> option means that rip will not transmit
periodic messages onto this interface and <cf>nolisten</cf> means that rip will talk to this
interface but not listen on it.
<p>Following options generally override specified behavior from rfc. If you use any of these
2000-04-18 00:48:22 +08:00
options, bird will no longer be rfc-compatible, which means it will not be able to talk to anything
2000-05-19 23:59:21 +08:00
other than equally misconfigured bird. I warned you.
2000-04-18 00:48:22 +08:00
<descrip>
<tag>port <M>number</M></tag>
selects IP port to operate on, default 520. (This is useful when testing bird, if you
2000-05-26 00:28:08 +08:00
set this to address &gt;1024, you will not need to run bird with UID==0).
2000-04-18 00:48:22 +08:00
<tag>infinity <M>number</M></tag>
2000-04-18 00:48:22 +08:00
select value of infinity, default 16. Bigger values will make protocol convergence
even slower.
<tag>period <M>number</M>
2000-04-18 00:48:22 +08:00
</tag>specifies number of seconds between periodic updates. Default is 30 seconds. Lower
number will mean faster convergence but bigger network load.
<tag>timeouttime <M>number</M>
2000-04-18 00:48:22 +08:00
</tag>specifies how old route has to be to be considered unreachable. Default is 4*period.
<tag>garbagetime <M>number</M>
2000-04-18 00:48:22 +08:00
</tag>specifies how old route has to be to be discarded. Default is 10*period.
</descrip>
<p>In addition, rip defines two filter variables, both of type it. <cf>rip_metric</cf> is rip
metric of current route, <cf>rip_tag</cf> is tag of current route.
<code>
2000-04-18 00:48:22 +08:00
protocol rip MyRIP_test {
debug all;
port 1520;
period 7;
garbagetime 60;
interface "*";
honour neighbour;
passwords { password "ahoj" from 0 to 10;
password "nazdar" from 10;
}
authentication none;
import filter { print "importing"; accept; };
export filter { print "exporting"; accept; };
}
</code>
2000-04-18 00:48:22 +08:00
<sect>Getting more help
<p>This is really last section of this file, should give pointers to
programmers documentation, web pages mailing lists and similar stuff.
2000-04-18 00:48:22 +08:00
</article>
<!--
2000-05-26 00:28:08 +08:00
# LocalWords: IPv doctype verb GPL Cisco sgml html Cisco's unix dvi sgmltools linuxdoc dtd descrip config conf syslog stderr auth ospf bgp router's IP expr num inst bool int ip px len enum cf md eval ipaddress pxlen netmask bgppath bgpmask clist gw RTS EXT quitbird nolisten UID timeouttime garbagetime rfc doc
-->