diff options
author | Ondrej Filip <feela@network.cz> | 2000-06-05 23:09:03 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-06-05 23:09:03 +0200 |
commit | ab698fc57c9898790964df7f9f59329e1f8930ba (patch) | |
tree | 577b4100dc2bb6dd3c0434adb3ee1e0bf660115d | |
parent | a13eaf219acf5b90af09b914a2182e23d5812aee (diff) | |
download | bird-ab698fc57c9898790964df7f9f59329e1f8930ba.tar bird-ab698fc57c9898790964df7f9f59329e1f8930ba.zip |
Added example of OSPF configuration.
-rw-r--r-- | doc/bird.conf.example | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/bird.conf.example b/doc/bird.conf.example index 476d8a8..053998f 100644 --- a/doc/bird.conf.example +++ b/doc/bird.conf.example @@ -103,6 +103,31 @@ protocol static { # export filter { print "exporting"; accept; }; #} +# Please note, multiple areas still don't work. +#protocol ospf MyOSPF { +# rfc1583compat yes; +# area 0.0.0.0 { +# stub no; +# tick 1; +# interface "eth*" { +# hello 9; +# retransmit 6; +# cost 10; +# transit delay 5; +# dead count 5; +# wait 50; +# type broadcast; +# }; +# }; +# area 20 { +# stub 1; +# interface "ppp1" { +# hello 8; +# }; +# }; +#} + + #protocol bgp { # disabled; # local as 65000; |