diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-25 18:39:53 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-25 18:39:53 +0200 |
commit | 98ac61766d81d9f20c4a7c7e12859c3b82b24f4c (patch) | |
tree | 214b6571623582884aede8f634b146b330e72bc3 /doc | |
parent | 5ed68e46d781f8a14d3ef3ffd7fe3afc4a62260e (diff) | |
download | bird-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.sgml | 20 |
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 <name> { <ip> eligible; }; }; + virtual link <id> + { + hello <num>; + poll <num>; + retransmit <num>; + wait <num>; + dead count <num>; + authentication [none|simple]; + password "<text>"; + }; }; } </code> @@ -1068,6 +1078,10 @@ protocol ospf <name> { <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; |