summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2004-06-25 18:39:53 +0200
committerOndrej Filip <feela@network.cz>2004-06-25 18:39:53 +0200
commit98ac61766d81d9f20c4a7c7e12859c3b82b24f4c (patch)
tree214b6571623582884aede8f634b146b330e72bc3 /doc
parent5ed68e46d781f8a14d3ef3ffd7fe3afc4a62260e (diff)
downloadbird-98ac61766d81d9f20c4a7c7e12859c3b82b24f4c.tar
bird-98ac61766d81d9f20c4a7c7e12859c3b82b24f4c.zip
A lot of changes:
- metric is 3 byte long now - summary lsa originating - more OSPF areas possible - virtual links - better E1/E2 routes handling - some bug fixes.. I have to do: - md5 auth (last mandatory item from rfc2328) - !!!!DEBUG!!!!! (mainly virtual link system has probably a lot of bugs) - 2328 appendig E
Diffstat (limited to 'doc')
-rw-r--r--doc/bird.sgml20
1 files changed, 19 insertions, 1 deletions
diff --git a/doc/bird.sgml b/doc/bird.sgml
index 92db292..00b449d 100644
--- a/doc/bird.sgml
+++ b/doc/bird.sgml
@@ -1034,6 +1034,16 @@ protocol ospf &lt;name&gt; {
&lt;ip&gt; eligible;
};
};
+ virtual link &lt;id&gt;
+ {
+ hello &lt;num&gt;;
+ poll &lt;num&gt;;
+ retransmit &lt;num&gt;;
+ wait &lt;num&gt;;
+ dead count &lt;num&gt;;
+ authentication [none|simple];
+ password "&lt;text&gt;";
+ };
};
}
</code>
@@ -1068,6 +1078,10 @@ protocol ospf &lt;name&gt; {
<tag>interface <M>pattern</M></tag>
Defines that the specified interfaces belong to the area being defined.
+ <tag>virtual link <M>id</M></tag>
+ Virtual link to router with the router id. This item cannot be in the
+ backbone area (ID 0).
+
<tag>cost <M>num</M></tag>
Specifies output cost (metric) of an interface. Default value is 10.
@@ -1163,7 +1177,7 @@ protocol ospf MyOSPF {
ospf_metric1 = 100;
accept;
}
- reject;
+ reject;
};
area 0.0.0.0 {
tick 8;
@@ -1185,6 +1199,10 @@ protocol ospf MyOSPF {
};
area 120 {
stub yes;
+ networks {
+ 172.16.1.0/24;
+ 172.16.2.0/24 hidden;
+ }
interface "-arc0" , "arc*" {
type nonbroadcast;
authentication none;