diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-12-08 13:51:15 +0100 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-12-08 13:51:15 +0100 |
commit | 3df563fa4c3c0acca181ce09dbb05452720e90e8 (patch) | |
tree | f7cdefa3d2fd54a6d6b30949864039d24e46a6fe | |
parent | 9b47eb8530263b5ebd4a41f9ef3dab982775fc44 (diff) | |
download | bird-3df563fa4c3c0acca181ce09dbb05452720e90e8.tar bird-3df563fa4c3c0acca181ce09dbb05452720e90e8.zip |
Put rip options into config file.
-rw-r--r-- | doc/bird.conf.example | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/bird.conf.example b/doc/bird.conf.example index 33b4e13..d37a2a7 100644 --- a/doc/bird.conf.example +++ b/doc/bird.conf.example @@ -19,7 +19,17 @@ #protocol rip MyRIP_test { # preference xyzzy; # debug all; -# import filter okay; +# port 1520; +# period 7; +# garbagetime 60; +# interface "*" { mode broadcast; }; +# honour neighbour; +# passwords { password "ahoj" from 0 to 10; +# password "nazdar" from 10; +# } +# authentication none; +# import filter { print "importing"; accept; }; +# export filter { print "exporting"; accept; }; #} protocol direct { |