diff options
Diffstat (limited to 'doc/bird.sgml')
-rw-r--r-- | doc/bird.sgml | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/doc/bird.sgml b/doc/bird.sgml index 3722e48..5441e31 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -1015,15 +1015,18 @@ protocol ospf <name> { { cost <num>; hello <num>; + poll <num>; retransmit <num>; priority <num>; wait <num>; dead count <num>; type [broadcast|nonbroadcast|pointopoint]; + strict nonbroadcast <switch>; authetication [none|simple]; password "<text>"; neighbors { <ip>; + <ip> eligible; }; }; }; @@ -1062,6 +1065,10 @@ protocol ospf <name> { routers on the same network need to have the same hello interval. Default value is 10. + <tag>poll <M>num</M></tag> + Specifies interval in seconds between sending of Hello messages for + some neighbors on NBMA netwok. Default value is 20. + <tag>retransmit <M>num</M></tag> Specifies interval in seconds between retransmissions of unacknowledged updates. Default value is 5. @@ -1107,7 +1114,12 @@ protocol ospf <name> { <tag>neighbors { <m/set/ } </tag> A set of neighbors to which Hello messages on nonbroadcast networks - are to be sent. + are to be sent. Some of them could be marked as eligible. + + <tag>strict nonbroadcast <M>switch</M></tag> + If set, don't send hello to any undefined neighbor. This switch + is ignored on on any non-NBMA network. Default is No. + </descrip> <sect1>Attributes @@ -1156,10 +1168,12 @@ protocol ospf MyOSPF { interface "-arc0" , "arc*" { type nonbroadcast; authentication none; - wait 50; - dead count 6; + strict nonbroadcast no; + wait 120; + poll 40; + dead count 8; neighbors { - 192.168.120.1; + 192.168.120.1 eligible; 192.168.120.2; 192.168.120.10; }; |