Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-25 | doc: update babeld documentation. | Juliusz Chroboczek | |
2012-03-25 | doc: fix Makefile dependencies for babeld. | Juliusz Chroboczek | |
2012-03-25 | babeld: display update-interval and resend-delay in show commands" | Juliusz Chroboczek | |
2012-03-25 | babeld: vty commands (hello-interval, update-interval, resend-delay). | Juliusz Chroboczek | |
2012-03-25 | babeld: remove port and group setting commands. | Juliusz Chroboczek | |
They didn't work anyway, since they're called too late. | |||
2012-03-25 | Resynchronise with babeld-1.3.1. | Juliusz Chroboczek | |
2012-03-25 | babeld: dismiss babel_redistribute_unset() | Denis Ovsienko | |
The function was effectively duplicating existing zclient_redistribute(). This makes no_babel_redistribute_type() consistent with babel_redistribute_type() | |||
2012-03-25 | babeld: fix wire{d,less} commands name. | Matthieu Boutier | |
2012-03-25 | ripd: add babel for redistribution. | Matthieu Boutier | |
2012-03-25 | ripngd: Replace redistribution strings with route_types.h defines. | Matthieu Boutier | |
2012-03-25 | babeld: Add support for blackhole routes. | Juliusz Chroboczek | |
Babel makes use of blackhole routes to prevent routing loops between overlapping prefixes shortly after a route is retracted (see RFC 6126 sections 2.8 and 3.5.5). This patch adds support for installing such blackhole routes. | |||
2012-03-25 | babeld: refactor filtering stubs. | Juliusz Chroboczek | |
Factorise the common parts of the in/out filtering functions. This also fixes a bug with filtered out routes, which in babeld are signalled by a filter returing INFINITY, not -1. | |||
2012-03-25 | zebra: Display uptime of Babel routes in show ip[v6] route. | Juliusz Chroboczek | |
2012-03-25 | babeld: Use quagga_gettime. | Juliusz Chroboczek | |
2012-03-25 | babeld: Don't use an ifindex when installing IPv4 routes. | Juliusz Chroboczek | |
Stand-alone babeld installs routes using both a next-hop gateway and an interface index. Unfortunately, this doesn't work for IPv4 under Quagga. We now ignore the ifindex when installing IPv4 routes, which makes Babel work for IPv4 in prefix-based networks. Of course this breaks IPv4 mesh networks, unless you play some tricks with your interfaces' netmasks. | |||
2012-03-25 | babeld: remove some unused functions' arguments. | Matthieu Boutier | |
2012-03-25 | doc: fix typo in babeld. | Matthieu Boutier | |
2012-03-25 | doc: Document babeld. | Juliusz Chroboczek | |
2012-03-25 | babeld: Indentation fix. | Juliusz Chroboczek | |
2012-03-25 | babeld: Error handling and tweaks for babeld commands. | Juliusz Chroboczek | |
2012-03-25 | babeld: Fix typo in hello interval command. | Juliusz Chroboczek | |
2012-03-25 | vtysh: Vtysh support for babeld. | Juliusz Chroboczek | |
2012-03-25 | babeld: Replace the babeld.conf.sample file by one that actually works. | Juliusz Chroboczek | |
2012-03-25 | babeld: fix interface bug, simplify code. | Matthieu Boutier | |
Perhaps could it be able to free already free memory (so free(NULL)), in function interface_reset(). On other hand, it initiated untracked interfaces, raising (at least) inappropriate messages. Finally, I remove the BABEL_IF_IS_ENABLE flag, witch was not really usefull. Note the test if_up isn't weaker, because (...IS_UP => ...IS_ENABLE). | |||
2012-03-25 | babeld: state-file was loaded too early. Initial seqno too. | Matthieu Boutier | |
2012-03-25 | babeld: fix eui64 features. | Matthieu Boutier | |
We are interested by eui64 with at least 6 octets. | |||
2012-03-25 | babeld: "return CMD_SUCCESS" was missing for command 'no debug'. | Matthieu Boutier | |
2012-03-25 | babeld: Replace redistribution strings with route_types.h defines. | Matthieu Boutier | |
2012-03-25 | babeld: babelz merge. | Matthieu Boutier | |
Babelz is the last version of the stand-alone babel daemon. In particular, it use multiple channels to diminuate interferences. Please refer to this one for more details. | |||
2012-03-25 | babeld: remove unused variable. | Matthieu Boutier | |
2012-03-25 | vtysh: fix regexp for install_element() in babeld | Ang Way Chuang | |
2012-03-25 | babeld: add MP-specific zclient API fix | Denis Ovsienko | |
Add proper initialization of SAFI field, which is present in the revisions of zapi_ipv4 and zapi_ipv6 structures specific to MP-BGP patchset. Without this change no Babel routes could make into zebra RIB. | |||
2012-03-25 | babeld: change the modify route system. | Matthieu Boutier | |
Zebra doesn't set errno to EEXIST if we add a route who was already in the kernel, so we always returned after just doing "add; delete". This patch fix the problem by doing "delete; add" always. | |||
2012-03-25 | babeld: fix bug due to v4mapped addresses. | Matthieu Boutier | |
2012-03-25 | babeld: add command (config) to set debug flags. | Matthieu Boutier | |
2012-03-25 | babeld: remove useless variable, make local another. | Matthieu Boutier | |
2012-03-25 | memory: install babel memory informations. | Matthieu Boutier | |
2012-03-25 | babeld: fix commands informations messages. | Matthieu Boutier | |
2012-03-25 | babeld: place the babel-state file in the quagga vars directory. | Matthieu Boutier | |
2012-03-25 | babeld: use zlog_debug instead of do_debugf, for debugf. | Matthieu Boutier | |
2012-03-25 | babeld: add command: "show_babel_running_config". | Matthieu Boutier | |
2012-03-25 | babeld: add command: "show_babel_database". | Matthieu Boutier | |
2012-03-25 | babeld: add command: "show_babel_neighbour". | Matthieu Boutier | |
2012-03-25 | babeld: avoid segfault (bug 706). | Matthieu Boutier | |
2012-03-25 | babeld: change fprintf(stderr) in term of zlog_err. | Matthieu Boutier | |
2012-03-25 | babeld: implement "show babel interface" command | Denis Ovsienko | |
* babel_interface.c * show_babel_interface_sub(): new function to process one ifp * show_babel_interface(): new function, VTY wrapper * babel_if_init(): update respectively | |||
2012-03-25 | babeld: add handling of "-z" cmdline arg | Denis Ovsienko | |
2012-03-25 | babeld: bring babel_usage() into focus | Denis Ovsienko | |
2012-03-25 | lib: update proto_redistnum() for Babel | Denis Ovsienko | |
2012-03-25 | babeld: address remaining -Wcast-qual warnings | Denis Ovsienko | |
* net.c * babel_send(): arguments are not treated as "const", justify declaration * babel_main.c: declare constant pointers as such |