Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-03-25 | If the interface metric changes on reload it is necessary to re-originate | Claudio Jeker | |
the router LSA so that the change propagates instantly. Call orig_rtr_lsa() in merge_config() if a interface in an area changes. Do it as late as possible to reduce the amount of updates generated by a config reload. Found and tested by Stuart Henderson. OK norby@ | |||
2007-03-24 | hugh says the vax workaround was for toolchain crashes, not rpc.bootparamd | Theo de Raadt | |
crashes. it compiles now, so remove the workaround | |||
2007-03-23 | Increase sensor polling interval to 30s, just like ntp polls. This | Chris Kuethe | |
improves sensor timekeeping significantly. Before this patch my test system's frequency adjustment would range between -350 and +250, with timedelta rarely getting close to 0. After, frequency adjustmens is on the order of +/- 0.05ppm, with time +/- a few microseconds away from 0 ok henning, mbalmer, otto | |||
2007-03-22 | remove default output of version numbers to silence confused auditing | Pierre-Yves Ritschard | |
programs. prompted by deraadt@ and cloder@, ok cloder@, henning@, xsa@ | |||
2007-03-22 | s/%ssredistribute/%sredistribute/. One s is enough and makes -nv output | Claudio Jeker | |
a valid config file again. | |||
2007-03-22 | Somehow I forgot how to correctly sort in alphabetical order. | Claudio Jeker | |
"router" needs to be added before "router-dead-time". Figured out by Stuart Henderson | |||
2007-03-22 | do not try to grab default router list on "ndp -r" if it's empty | Jun-ichiro itojun Hagino | |
(happens when the machine is an IPv6 router). from kame ok deraadt, mbalmer | |||
2007-03-22 | backout | Otto Moerbeek | |
*c && !isspace(*c) is not equivalent to !isspace(*c) ok millert@ | |||
2007-03-21 | Added code to parse unicast routes learned from route report packets. | Michele Marchetto | |
Now we are able to select correctly designated forwarders and downstream dependent routers per interface. Tested and OK norby@ | |||
2007-03-21 | tweak a sentence; | Jason McIntyre | |
2007-03-21 | Add RFC 3137 and remove the caveats section. Ospfd will now automaticaly | Claudio Jeker | |
switch to "stub router yes" if the forwarding sysctl is set to something differently than 1. This can be overruled by a later "stub router no" in ospfd.conf. More work is needed here. OK norby@ | |||
2007-03-21 | Document "stub router (yes|no)" and how/why it is used. | Claudio Jeker | |
Also modify the fib-update block a bit because "fib-update no" implies "stub router yes". OK norby@ | |||
2007-03-21 | Add support for RFC 3137: OSPF Stub Router Advertisement | Claudio Jeker | |
This allows ospfd to announce networks without the need to transit traffic. stub router is enabled if the fib is not coupled, net.inet.ip.forwarding is not 1 or if the stub router global config option is set to yes. OK norby@ | |||
2007-03-21 | in addition to the host retry option in tables, add support for the | Reyk Floeter | |
optional connection "retry" to the forward to, service, and nat lookup options. for example, "nat lookup retry 3" is useful when running hoststated as a transparent proxy when connecting to unreliable frontend/backend servers. ok pyr@ | |||
2007-03-20 | document the args to the "timezone" command; | Jason McIntyre | |
fixes documentation/5403: dst argument not defined in config manpage from James Hartley | |||
2007-03-20 | various text improvements to make this page read better. also add in | Jason McIntyre | |
a little of afterboot(8)'s wisdom to prepare for my killing the kernel building section in afterboot(8) (which is here replicated); | |||
2007-03-20 | make synopsis/usage() a little nicer; | Jason McIntyre | |
2007-03-20 | remove some bogus *p tests from charles longeau | Ted Unangst | |
ok deraadt millert | |||
2007-03-20 | remove some bogus *p tests from charles longeau | Ted Unangst | |
ok deraadt millert | |||
2007-03-20 | remove some bogus *p tests from charles longeau | Ted Unangst | |
ok deraadt millert | |||
2007-03-20 | remove some bogus *p tests from charles longeau | Ted Unangst | |
ok deraadt millert | |||
2007-03-19 | Doh! If we support "redistribute rtlabel" we should actually track the | Claudio Jeker | |
routing labels in ripd's kroute code. Just steal the code from ospfd which does it right. OK michele@ | |||
2007-03-19 | do not signal "connection closed" upstream on EINTR/EAGAIN, from bgpd et al | Henning Brauer | |
2007-03-19 | do not signal "connection closed" upstream on EINTR/EAGAIN, from bgpd et al | Henning Brauer | |
2007-03-19 | do not signal "connection closed" upstream on EINTR/EAGAIN, from bgpd et al | Henning Brauer | |
2007-03-19 | when our red/recv/recvmsg in imsg_read gives EINTR or EAGAIN, do not | Henning Brauer | |
signal "connection closed" upstream. spotted by Valentin Kozamernik <tin@komna.com> | |||
2007-03-19 | make `no @owner', `weird mode' and `@dirrm' into errors. | Marc Espie | |
2007-03-18 | handle more errors during package creation. | Marc Espie | |
- if archiving discovers issues, then go into high speed mode where stuff doesn't get written. - in case of errors or fatal signals, make sure to remove a partially written archive. | |||
2007-03-18 | do not use section names for locating a string tab; miod@ ok | Michael Shalayeff | |
2007-03-18 | use strtonum() to avoid out of range values, way simpler than the | Theo de Raadt | |
12-line song and dance that standard functions need; bret.lambert@gmail | |||
2007-03-18 | remove some unnecessary sanity checks. /var/db/pkg is supposed to contain | Marc Espie | |
only packages, so it's not really necessary to check for file existence and rights. Besides, actual use of package stuff will try reading +CONTENTS in a guarded way, so it will error out sanely... Trims out hundreds of stat() under /var/db/pkg, which are largely responsible for the slow start time of pkg_* tools. | |||
2007-03-17 | remove a debug message | Reyk Floeter | |
2007-03-17 | fix a bug in the initial setup of the pfe2relay communication sockets | Reyk Floeter | |
which prevented the pfe to accept statistics updates and natlookups from any other process then the first one. in other words, this will show you the total relay statistics off _all_ preforked processes (hoststatectl show relays) and it will unbreak the natlookup mode with more than one running relay process. | |||
2007-03-17 | Exchange a strlcpy() with a strncpy(). A similar change was done in parse.y | Claudio Jeker | |
some time ago. The simple password needs to be nul extended and is allowed to fill the full buffer the perfect job for stncpy(). Found and tested by Jon Morby. | |||
2007-03-17 | move some elements in the relay imsg ctl structures (just for the style) | Reyk Floeter | |
2007-03-17 | close unused relay2pfe privsep sockets correctly | Reyk Floeter | |
2007-03-17 | fix the natlook mode. | Reyk Floeter | |
2007-03-16 | Missed to remove SAFI_BOTH here. Informed about it by Steven Mestdagh. | Claudio Jeker | |
2007-03-16 | remove unused variable; ok millert@ | Kevin Steves | |
2007-03-16 | Recognise more vendor payloads (taken from IKE Scan) | Tom Cosgrove | |
2007-03-16 | A few more s/2858/4760/ and use RFC <number> everywhere. | Claudio Jeker | |
2007-03-16 | Multiprotocol Extensions for BGP-4 is now RFC 4760 | Claudio Jeker | |
2007-03-16 | Update multiprotocol extension code to RFC 4760. This actually removes | Claudio Jeker | |
a few things we actually never realy cared about. OK henning@ | |||
2007-03-16 | Don't forget to set the metric in the REDIST_LABEL case. OK pyr@ | Claudio Jeker | |
2007-03-16 | Make sure that the metric on redistributed prefixes is always != 0. | Claudio Jeker | |
If no metric was specified for it to DEFAULT_REDIST_METRIC. While this was checked for the simple case it was not done if only a metric type was specified. OK pyr@ | |||
2007-03-15 | simplify synopsis/usage() and sort options; | Jason McIntyre | |
from Igor Sobrado | |||
2007-03-15 | simplify synopsis/usage() and sort options; | Jason McIntyre | |
from Igor Sobrado | |||
2007-03-15 | use warnx and not logerror in monitor, logerror is for the slave; | Damien Miller | |
ok henning@ while in lock | |||
2007-03-14 | do the adjustment of arbitrary 128 -> BLF_MAXUTILIZED in userland as well, | Alexander von Gernler | |
also discussed on tech@ a while ago. ok pedro@ tedu@ thib@ | |||
2007-03-13 | Don't call rtlabel_unref() twice on RTM_DELETE. kroute_remove() does it | Claudio Jeker | |
so don't unref before calling kroute_remove() or we end up with wrong reference counts. |