diff options
author | Ondrej Filip <feela@network.cz> | 2004-07-14 23:46:20 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-07-14 23:46:20 +0200 |
commit | 3b16080c97a2d89c90f7df7a8fda0401ec9abe42 (patch) | |
tree | ef885699eaa72453b99f40dba181112d7e9540b7 /doc/bird.conf.example | |
parent | a417ad13a117d2458702cbec4aa418ba99981611 (diff) | |
download | bird-3b16080c97a2d89c90f7df7a8fda0401ec9abe42.tar bird-3b16080c97a2d89c90f7df7a8fda0401ec9abe42.zip |
Multiple OSPF areas can be attached.
Origination of summary LSA works.
Routing table calculation works.
Virtual links works.
Well, I hope, OSPF is fully compatible with RFC2328!!!!
Diffstat (limited to 'doc/bird.conf.example')
-rw-r--r-- | doc/bird.conf.example | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/bird.conf.example b/doc/bird.conf.example index ace813b..1e7ba8a 100644 --- a/doc/bird.conf.example +++ b/doc/bird.conf.example @@ -103,12 +103,11 @@ protocol static { # export filter { print "exporting"; accept; }; #} -# Please note, multiple areas still don't work. #protocol ospf MyOSPF { +# tick 2; # rfc1583compat yes; # area 0.0.0.0 { # stub no; -# tick 1; # interface "eth*" { # hello 9; # retransmit 6; @@ -136,6 +135,11 @@ protocol static { # hello 8; # authentication none; # }; +# interface "fr*"; +# virtual link 192.168.0.1 { +# password "sdsdffsdfg"; +# authentication cryptographic; +# }; # }; #} |