Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-08-27 | Some cleanups. | Ondrej Zajicek | |
2009-08-16 | Bugfix - each protocol can be compiled separately. | Ondrej Filip | |
2009-08-10 | Merge branch 'master' into dev | Ondrej Zajicek | |
2009-07-30 | Symbols PASSWORDS and BROADCAST not declared for OSPF | Ondrej Filip | |
2009-07-23 | Use %R in OSPF when appropriate. | Ondrej Zajicek | |
2009-07-05 | Another pile of ipa_from_u32() calls. | Ondrej Zajicek | |
2009-07-05 | Fixes OSPF on big-endians. | Ondrej Zajicek | |
Hmm, #ifdef is not very typo-safe. | |||
2009-07-05 | Fixes type mismatch in OSPF printf statements. | Ondrej Zajicek | |
Mixing ip_addr and u32 does bad things on Ultrasparc. Although both have the same size. Fascinating. It was not catched by compiler because of varargs. | |||
2009-06-18 | Minor bugfixes. | Ondrej Zajicek | |
2009-06-11 | Implements an option that allows to change a set of stub networks. | Ondrej Zajicek | |
2009-06-10 | Changes OSPF to generate stub networks for non-primary addresses. | Ondrej Zajicek | |
Also does some reorganization in RT LSA announcement. | |||
2009-06-01 | The pipe cleanup. | Ondrej Zajicek | |
2009-05-31 | Changes pipes to transfer all routes between routing table, not just optimal ↵ | Ondrej Zajicek | |
routes. | |||
2009-05-24 | Hello packets on PTP networks should have zero netmask. | Ondrej Zajicek | |
This also ensures that misconfigured routers (one side ptp and one side broadcast) do not make adjacency. | |||
2009-05-24 | Ignore Hello packets from different IP network (than primary). | Ondrej Zajicek | |
2009-05-06 | A change in OSPF and RIP interface patterns. | Ondrej Zajicek | |
Allows to add more interface patterns to one common 'options' section like: interface "eth3", "eth4" { options common to eth3 and eth4 }; Also removes undocumented and unnecessary ability to specify more interface patterns with different 'options' sections: interface "eth3" { options ... }, "eth4" { options ... }; | |||
2009-04-08 | Fixes broken cryptographic authentication in OSPF | Ondrej Zajicek | |
Cryptographic authentication in OSPF is defective by design - there might be several packets independently sent to the network (for example HELLO, LSUPD and LSACK) where they might be reordered and that causes crypt. sequence number error. That can be workarounded by not incresing sequence number too often. Now we update it only when last packet was sent before at least one second. This can constitute a risk of replay attacks, but RFC supposes something similar (like time in seconds used as CSN). | |||
2009-04-06 | Fixes bug in OSPF packet retransmission. | Ondrej Zajicek | |
If a DBDES packet from a master to a slave is lost, then the old code does not retransmit it and instead send a next one with the same sequence number. That leads to silent desynchronization of LSA databases. | |||
2009-04-06 | Better OSPF packet tracing log messages. | Ondrej Zajicek | |
Replaces old OSPF packet tracing messages with uniform messages with packet dumps. | |||
2009-02-25 | Fixes another bug in packet retransmissions. | Ondrej Zajicek | |
When slave was in full state, it didn't retransmit lost packets. That leads to OSPF connection locked in states loading-full. | |||
2009-02-12 | Fixes bug in packet retransmissions. | Ondrej Zajicek | |
When packet was lost during dbdes exchange, slave did not retransmit it. That leads to OSPF connection locked in states exchange-exstart. | |||
2009-01-16 | Fixes some past config grammar update that caused password related regression. | Ondrej Zajicek | |
2009-01-16 | One null-pointer dereference bugfix hidden in whitespace changes | Ondrej Zajicek | |
2009-01-13 | Fix typo. | Ondrej Zajicek | |
2009-01-13 | Fix OSPF protocol error recovery behavior. | Ondrej Zajicek | |
When OSPF neighbor state drops down to EXSTART, clear LSA request and retransmit lists, as specified by RFC. I hope that this will prevent oscillations between EXSTART and LOADING states, which sometimes happened. It also contains related fix from Yury Shevchuk that properly resets DB summary list iterator. | |||
2009-01-12 | Add check detecting packet overwrite in TX buffer. | Ondrej Zajicek | |
2009-01-11 | Some fixes and update of OSPF debug messages | Ondrej Zajicek | |
2009-01-11 | Move check for NULL before usage of variable. | Ondrej Zajicek | |
2009-01-11 | Fixes bug in OSPF | Ondrej Zajicek | |
Checksum was not recalculated when LSA was changed and packets with bad checksum were sent. | |||
2008-11-14 | OSPF routes appeared with random value of ospf_tag attribute. | Ondrej Zajicek | |
This patch fixes it. | |||
2008-11-08 | Proper format functions for ORIGINATOR_ID, CLUSTER_LIST | Ondrej Zajicek | |
2008-11-08 | Fix bugs in OSPF MD5 authentication. First bug is that default | Ondrej Zajicek | |
values for MD5 password ID changed during reconfigure, Second bug is that BIRD chooses password in first-fit manner, but RFC says that it should use the one with the latest generate-from. It also modifies the syntax for multiple passwords. Now it is possible to just add more 'password' statements to the interface section and it is not needed to use 'passwords' section. Old syntax can be used too. | |||
2008-11-05 | Fix problem with local time changes. | Ondrej Zajicek | |
2008-10-28 | Fixes some sloppiness of commit a3b70dc499b64f41aa776b5b4afee5c7bfb8dfa6. | Ondrej Zajicek | |
2008-10-27 | Two new informative CLI commands for OSPF. | Ondrej Zajicek | |
Two new CLI commands for OSPF giving nice informative (and still machine parsable) representation of OSPF network graph (based on datas from the LSA database). The first command (show ospf topology) shows routers, networks and stub networks, The second command (show ospf state) shows also external routes and area-external networks and routers propagated by given area boundary router. | |||
2008-10-26 | Missing newline. | Ondrej Zajicek | |
2008-10-26 | Bugfix in LSA origination for PTP OSPF links. | Ondrej Zajicek | |
The code generating LSAs for PTP OSPF links is buggy. The old behavior is that it generates PTP link if there is a full/ptp neighbor and stub link if there isn't. According to RFC 2328, the correct behavior is to generate stub link in both cases (in the first case together with PTP link). And because of buggy detection of unnumbered networks, for numbered networks the code creates stub links with 0.0.0.0/32. | |||
2008-08-25 | Expand ospf dump information. | Ondrej Filip | |
2008-08-25 | Endianity problem in debug message fix. | Ondrej Filip | |
2005-03-16 | Small bugfix in tracing. | Ondrej Filip | |
2005-03-15 | Added new parametr 'rx buffer <num>'. BIRD is able to receive | Ondrej Filip | |
very large packets (if configured). | |||
2005-03-15 | Maximal packet size in virtual links is 576. | Ondrej Filip | |
2005-03-14 | OSPF can accept larger packets than MTU. | Ondrej Filip | |
2005-03-14 | Look for large packets. | Ondrej Filip | |
2005-03-14 | Bugfix in external routes calculation. | Ondrej Filip | |
2005-02-20 | Unused code deleted. | Ondrej Filip | |
2005-02-20 | Cleanup - all unused variables deleted. | Ondrej Filip | |
2005-02-20 | Intelligent reconfiguration should work again. | Ondrej Filip | |
2005-02-20 | Originate default route into stub areas. | Ondrej Filip | |
2005-02-20 | Since now I can also use 'dead interval', not just 'dead counter'. | Ondrej Filip | |