-
Notifications
You must be signed in to change notification settings - Fork 0
/
README_QUAGGA
58 lines (45 loc) · 1.94 KB
/
README_QUAGGA
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---------------------------------------------------------------------
QUAGGA PLUGIN FOR OLSRD
by Immo 'FaUl' Wehrenberg <[email protected]>
addittions by: Sven-Ola Tuecke <sven-ola-aet-gmx.de>
Vasilis Tsiligiannis <[email protected]>
---------------------------------------------------------------------
This is the Quagga Plugin for OLSRd.
It allows olsrd to redistribute from various quagga-protocols
as well as to export olsr-routes to quagga so that they can be
redistributed by the quagga-routing-daemons.
You also need a source distribution of quagga-0.98.5 or quagga-0.98.6
(that is the current stable). The quagga source tree needs to be
patched with quagga-0.98.6.diff, compiled and installed via
'make install'.
---------------------------------------------------------------------
PLUGIN PARAMETERS (PlParam)
---------------------------------------------------------------------
PlParam "redistribute" "<protocol>"
where protocol is one of the following:
system, kernel, connect, static, rip, ripng, ospf, ospf6,
isis, bgp, hsls
May be used more then once
PlParam "ExportRoutes" "<only/both>"
exports olsr-routes to quagga or to both, quagga and kernel
no routes are exported to quagga (normal behaviour) if not set.
PlParam "LocalPref" "<true/false>"
sets the Zebra SELECTED-flag on the routes exported to zebra
which means these routes are prefered in any case.
PlParam "Distance" "0-255"
allows to set the administrative distance to routes exported
to zebra.
---------------------------------------------------------------------
SAMPLE CONFIG
---------------------------------------------------------------------
add in /usr/local/etc/olsrd.conf:
LoadPlugin "olsrd_quagga.so.0.2.2"
{
PlParam "redistribute" "ospf"
PlParam "redistribute" "bgp"
PlParam "ExportRoutes" "only"
PlParam "Distance" "125"
PlParam "LocalPref" "false"
}
---------------------------------------------------------------------
EOF / 29.12.2008