Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-04-22 | Adds BGP option related to MED handling. | Ondrej Zajicek | |
Adds option 'med metric' allows to compare MEDs between routes received from different neighbors. | |||
2011-04-01 | Fixes a problem with BGP protocols and implicit router IDs. | Ondrej Zajicek | |
2011-03-30 | Fixes some problems in BGP error handling. | Ondrej Zajicek | |
2010-12-07 | Core multipath support. | Ondrej Zajicek | |
2010-11-03 | Change default for BGP IPv6 socket to V6ONLY. | Ondrej Zajicek | |
Also add a new option 'dual' for the old behavior. | |||
2010-08-13 | Change default for handling missing link-local addresses on route servers. | Ondrej Zajicek | |
2010-08-04 | Fixes IPv6 build. | Ondrej Zajicek | |
2010-07-31 | Implements IGP metric comparison for BGP routes. | Ondrej Zajicek | |
2010-07-28 | Adds route resolvability test. | Ondrej Zajicek | |
2010-07-28 | Use link-local addresses in recursive next hops for IPv6 BGP. | Ondrej Zajicek | |
2010-07-22 | Fixes a buffer overflow in TX code of IPv6 BGP. | Ondrej Zajicek | |
2010-07-13 | Adds some options and documentation related to recursive next hops. | Ondrej Zajicek | |
2010-07-12 | Implements proper multihop BGP. | Ondrej Zajicek | |
Also does some incompatible changes to config file syntax, like removing 'via IP' from multihop option. | |||
2010-07-05 | Implements hostcache and recursive next hops. | Ondrej Zajicek | |
Hostcache is a structure for monitoring changes in a routing table that is used for routes with dynamic/recursive next hops. This is needed for proper iBGP next hop handling. | |||
2010-05-31 | Disable BGP protocol when cannot open listening socket. | Ondrej Zajicek | |
2010-05-14 | Handle EPIPE as a common connection close event. | Ondrej Zajicek | |
2010-05-02 | Merge several fixes suggested by Joakim Tjernlund. | Ondrej Zajicek | |
2010-04-08 | Do not export empty community list attribute in BGP. | Ondrej Zajicek | |
2010-04-07 | Implements BGP 'show protocols' info details. | Ondrej Zajicek | |
2010-03-29 | Filter language updates; new route attributes and datatype. | Ondrej Zajicek | |
- Adds bgp_originator_id and bgp_cluster_list route attributes. - Adds dotted quad filter datatype (for router IDs, used by bgp_originator_id and ospf_router_id route attributes). - Fixes pair ~ pair set matching. - Documentation updates. | |||
2010-02-26 | Comparing cluster list length should be later in bgp_rte_better(). | Ondrej Zajicek | |
2010-02-26 | Many changes in (mainly) kernel syncers. | Ondrej Zajicek | |
- BSD kernel syncer is now self-conscious and can learn alien routes - important bugfix in BSD kernel syncer (crash after protocol restart) - many minor changes and bugfixes in kernel syncers and neighbor cache - direct protocol does not generate host and link local routes - min_scope check is removed, all routes have SCOPE_UNIVERSE by default - also fixes some remaining compiler warnings | |||
2010-02-21 | Fix configure to enable warnings and fix most of them. | Ondrej Zajicek | |
2010-02-20 | 'rr client id' is not expression but ID (like router id). | Ondrej Filip | |
2010-02-13 | Removes phantom protocol from the pipe design. | Ondrej Zajicek | |
It seems that by adding one pipe-specific exception to route announcement code and by adding one argument to rt_notify() callback i could completely eliminate the need for the phantom protocol instance and therefore make the code more straightforward. It will also fix some minor bugs (like ignoring debug flag changes from the command line). | |||
2010-02-11 | Moves errno.h include. | Ondrej Zajicek | |
2010-02-11 | Fixes a crash caused by missing error hook on BGP listening socket. | Ondrej Zajicek | |
Error happened when too many BGP connections arrived in one moment (ECONNABORTED). | |||
2010-02-02 | Workaround for some broken BGP implementations that skip initial KEEPALIVE. | Ondrej Zajicek | |
2010-01-28 | Changes 'ignore communities' to 'interpret communities'. | Ondrej Zajicek | |
2010-01-27 | Better handling of well-known communities. | Ondrej Zajicek | |
Process well-known communities before the export filter (old behavior is to process these attributes after, which does not allow to send route with such community) and just for routes received from other BGP protocols. Also fixes a bug in next_hop check. | |||
2010-01-03 | Implements MRTdump feature. | Ondrej Zajicek | |
2009-12-21 | Change default LOCAL_PREF attribute to 100 (suggested value by RFC 4277). | Ondrej Zajicek | |
2009-12-15 | Merge branch 'ospf3' into new | Ondrej Zajicek | |
2009-12-15 | Fixes export of routes with link-local gw. | Ondrej Zajicek | |
2009-12-14 | Remove bgp_as4_support variable. | Ondrej Zajicek | |
2009-11-26 | Implements BGP route refresh. | Ondrej Zajicek | |
2009-11-18 | Implements option that controls IPv6 BGP next hops when lladdr is missing. | Ondrej Zajicek | |
2009-11-17 | Show both IPv6 next hop addresses in BGP. | Ondrej Zajicek | |
2009-11-17 | Implements RFC 5004 - prefer older external routes. | Ondrej Zajicek | |
2009-10-12 | Implements protocol-specific router id and updates documentation. | Ondrej Zajicek | |
2009-10-12 | Rename as_path_get_last/as_path_get_first to be consistent. | Ondrej Zajicek | |
2009-10-11 | Workaround for stupid callback scheduler. | Ondrej Zajicek | |
There is no reak callback scheduler and previous behavior causes bad things during hard congestion (like BGP hold timeouts). Smart callback scheduler is still missing, but main loop was changed such that it first processes all tx callbacks (which are fast enough) (but max 4* per socket) + rx callbacks for CLI, and in the second phase it processes one rx callback per socket up to four sockets (as rx callback can be slow when there are too many protocols, because route redistribution is done synchronously inside rx callback). If there is event callback ready, second phase is skipped in 90% of iterations (to speed up CLI during congestion). | |||
2009-09-24 | Show bad peer AS number in log in decimal. | Ondrej Zajicek | |
2009-09-24 | Passive option. | Ondrej Zajicek | |
2009-09-18 | Fixes setting of IP addresses to route attributes (NEXT_HOP). | Ondrej Zajicek | |
2009-09-17 | Fixes headers for uintptr_t (and build on NetBSD). | Ondrej Zajicek | |
2009-08-27 | Some cleanups. | Ondrej Zajicek | |
2009-08-25 | Fixes bug related to AS2->AS4 conversion. | Ondrej Zajicek | |
2009-07-09 | Fixed bug related to reconfiguration of BGP with MD5 passwords. | Ondrej Zajicek | |
2009-06-23 | Replace 'bind' option with 'listen' option. | Ondrej Zajicek | |
To be consistent with other daemons. |