Re: fix bgpd route-reflector without cluster id

2019-09-26 Thread clau...@openbsd.org
On Thu, Sep 26, 2019 at 07:38:51PM +, Rivo Nurges wrote: > Hi! > > Before bgpd.c:1.225 bgpd ran merge_config on startup and set the > cluster-id to router-id when needed. This is not the case anymore and if > cluster-id is not explicitly specified its not picked up on startup > causing bgp to

fix bgpd route-reflector without cluster id

2019-09-26 Thread Rivo Nurges
Hi! Before bgpd.c:1.225 bgpd ran merge_config on startup and set the cluster-id to router-id when needed. This is not the case anymore and if cluster-id is not explicitly specified its not picked up on startup causing bgp to use 0.0.0.0 as the cluster-id. Rivo Index: usr.sbin/bgpd/config.c ==

bgp show covering routes aka or-shorter

2019-09-26 Thread Claudio Jeker
bgpctl can show all routes under a prefix. For example bgpctl show rib 8/8 all but there was no way to do the inverse, show all routes which cover a certain prefix. Since bgpd.conf has or-longer for the same as the all keywork in bgpctl the idea was to call this or-shorter (and add or-longe

Re: patch: libtool: copte with potentially undefined dependency_libs and libdir

2019-09-26 Thread Christian Weisgerber
Sebastien Marie: > Due to special nature of libtool, and current position in the release cycle, I > would like to have feedback for this diff with a bulk build, to be sure to not > breaking anything. I have started an amd64 bulk build with this. -- Christian "naddy" Weisgerber

Menu Behaviour / Geometry

2019-09-26 Thread su-
Hi guys, moved over very recently to cwm and was wondering: 1) could one set / define a geometry for the various menu's "menu-exec, menu-cmd, menu-window" eg xterm can be defined by "xterm --geometry  73x31+100+300" 2) with menu-window can one set the default behaviour to list / show all open

Re: smtpd: mail.* tempfail vs permfail

2019-09-26 Thread Todd C . Miller
On Wed, 25 Sep 2019 15:23:06 +0200, Martijn van Duren wrote: > I talked to gilles@ about this and he's somewhat inclined to agree with > me that this is a TEMPFAIL situation. Even if the directory where the > mail is supposed to be delivered is permanently not accessible I'd > argue that we should

Re: pretty borders for slitherins

2019-09-26 Thread Ted Unangst
Nicholas Marriott wrote: > OK seems like it is always using ACS which is correct. > > I just remembered jmc asked me about this before and it turned out that > ACS doesn't work with the DRM console - I don't think the font have the > right symbol for either ACS or UTF-8 line drawing, but there may

Re: smtpd: mail.* tempfail vs permfail

2019-09-26 Thread gilles
September 25, 2019 3:23 PM, "Martijn van Duren" wrote: > EHLO, EHLO, > Recently I moved my mailserver to a new HD resulting in temporary > inaccessibility of my maildir (temporarily root owned because of > recursive copy), leaving smtpd running thinking nothing of it. > This resulted in a few

Re: snmp(1): Add set command

2019-09-26 Thread Martijn van Duren
On 9/26/19 9:54 AM, Martijn van Duren wrote: > Hello, > > I reckon this will be on of the last major additions. > Adding "snmp set" allows us to run snmpd's regress without installing > netsnmp. :-) > > Tested with snmpd's regress test. > > Majority of diff is moving oid/value parsing from snmp

patch: libtool: copte with potentially undefined dependency_libs and libdir

2019-09-26 Thread Sebastien Marie
Hi, Latest version of librsvg (2.46.0) uses libtool-rust, which produce .la file a bit different from gnu libtool. in particular, dependency_libs and libdir could be undefined. but us libtool version doesn't like that: when libdir is undefined it makes warnings, and just die for dependency_libs

bgpd move pf table commits out of prefix_update and _withdraw

2019-09-26 Thread Claudio Jeker
This diff moves the rde_send_pftable_commit() out of the prefix update and withdraw functions and up into the functions calling them. This will result in bigger batches being committed to pf(4) but the main reason is that this is needed to allow pipelining of RIB tables. I move the early returns f

Re: pretty borders for slitherins

2019-09-26 Thread Nicholas Marriott
OK seems like it is always using ACS which is correct. I just remembered jmc asked me about this before and it turned out that ACS doesn't work with the DRM console - I don't think the font have the right symbol for either ACS or UTF-8 line drawing, but there may be other problems in there as well

snmp(1): Add set command

2019-09-26 Thread Martijn van Duren
Hello, I reckon this will be on of the last major additions. Adding "snmp set" allows us to run snmpd's regress without installing netsnmp. :-) Tested with snmpd's regress test. Majority of diff is moving oid/value parsing from snmp trap to a separate function. OK? martijn@ Index: snmp.1

Re: iked(8): fix some leaks in parse.y

2019-09-26 Thread Sebastian Benoit
Tobias Heider(tobias.hei...@stusta.de) on 2019.09.25 22:34:53 +0200: > > Your fix reads ok, but: > > > > please write null-pointer checks explicitly, i.e. != NULL or == NULL. > > Sure. > > > and a suggestion: how about putting a > > > > if (head == NULL) > > return; > > > > at the top of i