summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2005-03-15 23:06:36 +0100
committerOndrej Filip <feela@network.cz>2005-03-15 23:06:36 +0100
commit94c42054ea65d10477afc76f221e3ac345a431eb (patch)
treeeace02441c60398eea70ca09541abe4f9b24ff70 /doc
parente6ea2e375e4c547ca1b6fc9c313c2b7940acbd77 (diff)
downloadbird-94c42054ea65d10477afc76f221e3ac345a431eb.tar
bird-94c42054ea65d10477afc76f221e3ac345a431eb.zip
Added new parametr 'rx buffer <num>'. BIRD is able to receive
very large packets (if configured).
Diffstat (limited to 'doc')
-rw-r--r--doc/bird.conf.example1
-rw-r--r--doc/bird.sgml6
2 files changed, 7 insertions, 0 deletions
diff --git a/doc/bird.conf.example b/doc/bird.conf.example
index 8260c02..05259d5 100644
--- a/doc/bird.conf.example
+++ b/doc/bird.conf.example
@@ -120,6 +120,7 @@ protocol static {
# password "pass";
# };
# interface "arc0" {
+# rx buffer large;
# type nonbroadcast;
# poll 14;
# dead 75;
diff --git a/doc/bird.sgml b/doc/bird.sgml
index fa7aabb..87113fa 100644
--- a/doc/bird.sgml
+++ b/doc/bird.sgml
@@ -1026,6 +1026,7 @@ protocol ospf &lt;name&gt; {
wait &lt;num&gt;;
dead count &lt;num&gt;;
dead &lt;num&gt;;
+ rx buffer [normal|large|&lt;num&gt;];
type [broadcast|nonbroadcast|pointopoint];
strict nonbroadcast &lt;switch&gt;;
authentication [none|simple];
@@ -1134,6 +1135,11 @@ protocol ospf &lt;name&gt; {
<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>rx buffer <M>num</M></tag>
+ This sets the size of buffer used for receiving packets. The buffer should
+ be bigger than maximal size of any packets. Value NORMAL (default)
+ means 2*MTU, value LARGE means maximal allowed packet - 65536.
+
<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.