1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Since now I can also use 'dead interval', not just 'dead counter'.

This commit is contained in:
Ondrej Filip
2005-02-20 04:27:56 +00:00
parent 7de7470a2a
commit d8c7d9e884
8 changed files with 20 additions and 7 deletions

View File

@@ -122,6 +122,7 @@ protocol static {
# interface "arc0" {
# type nonbroadcast;
# poll 14;
# dead 75;
# neighbors {
# 10.1.1.2 eligible;
# 10.1.1.4;

View File

@@ -1024,6 +1024,7 @@ protocol ospf <name> {
priority <num>;
wait <num>;
dead count <num>;
dead <num>;
type [broadcast|nonbroadcast|pointopoint];
strict nonbroadcast <switch>;
authentication [none|simple];
@@ -1048,6 +1049,7 @@ protocol ospf <name> {
retransmit <num>;
wait <num>;
dead count <num>;
dead <num>;
authentication [none|simple];
password "<text>";
};
@@ -1126,6 +1128,11 @@ protocol ospf <name> {
When the router does not receive any messages from a neighbor in
<m/dead count/*<m/hello/ seconds, it will consider the neighbor down.
<tag>dead <M>num</M></tag>
When the router does not receive any messages from a neighbor in
<m/dead/ seconds, it will consider the neighbor down. If both directives
<m/dead count/ and <m/dead/ are used, <m/dead/ has precendence.
<tag>type broadcast</tag>
BIRD detects a type of a connected network automatically, but sometimes it's
convenient to force use of a different type manually.