Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-03-24 | Document fib couple and decouple. Mostly form bgpctl.8 but with a warning | Claudio Jeker | |
that fib decouple my break you network. OK norby@ | |||
2006-03-23 | Document nexthop qualify via (bgp|default). | Claudio Jeker | |
OK henning, additional input jmc@ | |||
2006-03-23 | Simplify the -s documentation and add /var/run/bgpd.sock to the FILES list. | Claudio Jeker | |
help from jmc@ | |||
2006-03-23 | List interfaces they way we list neighbors etc. | Esben Norby | |
This makes it much easier to grep in the output. The original format of "show interface" can be seen with "show interface detail". help and ok claudio@ | |||
2006-03-23 | reword; ok otto | Jason McIntyre | |
2006-03-23 | use calloc better; adobriyan@gmail | Theo de Raadt | |
2006-03-22 | Move the AS external LSA tree out of struct ospfd_config. This simplifies | Claudio Jeker | |
the code and makes config reloads easier. OK norby@ | |||
2006-03-22 | ospfd has the framework to couple and decouple the FIB. Add the needed | Claudio Jeker | |
functionality to ospfctl for it. NOTE: decoupling the FIB one a router may totaly fuck up the complete network. Use it with care! OK norby@ | |||
2006-03-22 | Change the way bgpd selects nexthops. Up until now every route was considered | Claudio Jeker | |
when calculating the nexthop. Now only non BGP routes and not the default route are used unless forced with the new config options nexthop qualify via bgp nexthop qualify via default This change is required for complex setups e.g. where an additional IGP is running. OK henning@ | |||
2006-03-22 | Remove four unused functions: ap_sync_scoreboard_image, reopen_scoreboard, | Ray Lai | |
put_scoreboard_info, and update_scoreboard_global. From Daniel Ouellet, plus one line he missed. OK henning@ and otto@ | |||
2006-03-22 | Add additional limit check to ensure that we do not overflow pp->prefix | Claudio Jeker | |
while masking the prefix. Fix from itojun@. OK dhartmei@ | |||
2006-03-22 | Detailed RIB output including communities. Detailed output is enabled via | Claudio Jeker | |
the "detailed" keyword. Currently only works for IP or prefix lookups like "bgpctl show rib detail 199.185.137.3". Requested by many, looks good henning@ | |||
2006-03-22 | Add a new SHOW imsg to send optional attributes to bgpctl. This can be used | Claudio Jeker | |
to show communites in bgpctl output. Only send these messages if it they are requested to reduce the overhead for simple listings. Looks good henning@ | |||
2006-03-22 | Rework signal handling the idiomatic libevent way. From ospfd. | Camiel Dobbelaar | |
ok claudio henning | |||
2006-03-22 | Change fmt_peer() so that it can be used by the upcomming detailed RIB output. | Claudio Jeker | |
OK henning@ | |||
2006-03-21 | fix endless loop in case of error in archive header. | Marc Espie | |
2006-03-21 | Kill debug message that floods the log if ospfctl is killed while dumping | Claudio Jeker | |
large tables. | |||
2006-03-21 | Invalidating the full RIB and then only recalculating part of it is not | Claudio Jeker | |
that smart. Kill the global rt_invalidate() instead clear only that part of the RIB that is actually recalculated. OK norby@ | |||
2006-03-20 | add two missing function declarations | David Hill | |
change sensor_status to sensorsd_status ok deraadt@ | |||
2006-03-19 | Partial revert of previous changes, nasty regexps not greedy the way they ↵ | Marc Espie | |
should. Broke md5. | |||
2006-03-18 | do not leak on re-insert; ok pvalchev | Theo de Raadt | |
2006-03-18 | add missing function declaration | David Hill | |
remove unused parameter from check_callit() ok deraadt@ ray@ | |||
2006-03-17 | FILE * leak | Theo de Raadt | |
2006-03-17 | Nuke unused variable. | David Hill | |
ok ray@ | |||
2006-03-17 | un-special case old constructs: make them inherit from the same class, | Marc Espie | |
and remove any special code from Factory. As it's simpler remove local variables. | |||
2006-03-17 | Add BUGS section documenting included files should start with a | Otto Moerbeek | |
newline or comment. Problem found by mpech@; ok miod@ | |||
2006-03-16 | KNF. No binary change. | Claudio Jeker | |
2006-03-16 | Make ifstated handle config reloads after a parse error. Fixes PR5051 | Ryan Thomas McBride | |
Fix from Michael Knudsen. | |||
2006-03-16 | Error out of ifstate.conf parsing instead of dumping core in operation | Ryan Thomas McBride | |
when a undefined ruleset is referenced. Fixes PR5049. Report and troubleshooting from Michael Knudsen. | |||
2006-03-16 | Kill useless arguments to libevent *_set() functions. | Ryan Thomas McBride | |
ok mpf@ | |||
2006-03-15 | consistently use power *states* and performance *modes* | Nikolay Sturm | |
ok beck, mickey | |||
2006-03-15 | In nexthop_compare() if the two passed pointers point to the same object | Claudio Jeker | |
the odds are better than good that there is no difference. | |||
2006-03-15 | There is no need to check iface != NULL. These parser rules are only allowed | Claudio Jeker | |
if iface is set and so the check is superfluous. OK norby@ | |||
2006-03-15 | Looks like auth-type simple was busted since a long time. We bcmp() a | Claudio Jeker | |
c string with a lenght <= 8 with a buffer of size 8. Now in some cases there can be trailing garbage after the c-string and so the bcmp() fails. Found by Sergey Matveychuk who provided a similar patch. OK norby@ | |||
2006-03-15 | Sync usage with man page (sort arguments). | Claudio Jeker | |
2006-03-15 | Document new -s path option to select an alternate path for the main control | Claudio Jeker | |
socket. | |||
2006-03-15 | Allow the control socket to be changed on the command line. Useful if you | Claudio Jeker | |
need to run multiple bgpds on a single box to simulate a IX. This helped me massivly debugging error reports. OK henning@ | |||
2006-03-15 | Fix a memory leak when communities are set or deleted. This seems to fix | Claudio Jeker | |
Sylvain Coutant memory issues. A lot of patience and testing by Sylvain. | |||
2006-03-15 | Add missing function declarations | David Hill | |
Sprinkle some const OK beck@ | |||
2006-03-14 | #ifdef DEBUG not #if DEBUG | Theo de Raadt | |
2006-03-14 | install these on amd64 | Nikolay Sturm | |
even though amd64 does not have apm support, this change permits hw.setperf manipulations via apm/apmd | |||
2006-03-14 | fix sentence to make sense. | Bob Beck | |
ok millert@ jmc@ ketennis@ and others from before 3.9 lock | |||
2006-03-14 | fix incorrect sizeof(), spotted by ckuethe | Bob Beck | |
ok deraadt@ | |||
2006-03-14 | Some more usage of const and correct fmt string for a size_t. | Moritz Jodeit | |
From David Hill. ok ray@ jaredy@ otto@ | |||
2006-03-14 | Kill unneeded util.h include. | Claudio Jeker | |
2006-03-13 | tiny bit of delinting; ok krw@ | Otto Moerbeek | |
2006-03-13 | delint; from David Hill | Otto Moerbeek | |
2006-03-13 | Simplify error() and warning() a bit. From Alexey Dobriyan. | Moritz Jodeit | |
ok jaredy@ otto@ | |||
2006-03-13 | Fix for PR 5052. Be more careful about the announced networks we accept. | Claudio Jeker | |
Make sure that at least the address family and the prefix length are sane. Reported and fix tested by Pete Vickers. | |||
2006-03-13 | cleanup from dhill | Theo de Raadt | |