diff options
Diffstat (limited to 'doc/bird.sgml')
-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; |