Re: SNMP reporting on VXLAN interfaces

2018-08-16 Thread Jason Tubnor
On Fri, 17 Aug 2018 at 11:48, David Gwynne wrote: > On Thu, Aug 16, 2018 at 10:51:25AM +1000, Jason Tubnor wrote: > > > > > Am I missing something here or could it be a potential bug in the VXLAN > > code in how it reports into snmpd? > > The vxlan driver counts something that the network stack d

Re: php 5.6 and php 7 using php-fpm ?

2018-08-16 Thread Elias M. Mariani
That hit the spot. Thanks! 2018-08-16 18:57 GMT-03:00 Stuart Henderson : > To run the two versions concurrently, use the rc.conf.local flags variables > (php56_fpm_flags/php70_fpm_flags) to give them different config files (-y > /path/to/fpm.conf). > > -- > Sent from a phone, apologies for poor fo

Re: SNMP reporting on VXLAN interfaces

2018-08-16 Thread David Gwynne
On Thu, Aug 16, 2018 at 10:51:25AM +1000, Jason Tubnor wrote: > Hi, > > Not sure if anyone else here is using SNMP for obtaining VXLAN(4) adapter > throughput but after some testing (clamping with PF queues), I have > discovered that throughput on VXLAN interfaces via SNMP are reporting > exactly

Re: Cannot make update on updated ports on a fresh install

2018-08-16 Thread lea.chescotta
Thank you! Ill look up for that setting, so its best to make as normal user and then install i assume. Removing all those vars from /etc/mk.conf solved the issue, i got used to put those there in previous installs but now i have a bigger disk and i dont need them  as the /usr partition is bigger

Re: Cannot make update on updated ports on a fresh install

2018-08-16 Thread Daniel Jakots
On Thu, 16 Aug 2018 23:41:52 +0200 (CEST), wrote: Probably not helping much but > lea@openbsd:/usr/ports/net/curl $ doas make update You shouldn't run this as root if you don't have PORTS_PRIVSEP > On my /etc/mk.conf i have: > SUDO=/usr/bin/doas > WRKOBJDIR=/usr/ports/build/wrkobjdir > DISTDIR

Re: php 5.6 and php 7 using php-fpm ?

2018-08-16 Thread Stuart Henderson
To run the two versions concurrently, use the rc.conf.local flags variables (php56_fpm_flags/php70_fpm_flags) to give them different config files (-y /path/to/fpm.conf). -- Sent from a phone, apologies for poor formatting. On 16 August 2018 22:09:57 "Elias M. Mariani" wrote: Hi, Somebody kn

Cannot make update on updated ports on a fresh install

2018-08-16 Thread lea.chescotta
Hi! im getting this error on a fresh install of openbsd 6.3 -stable, when trying to update any package after getting the ports tree and update it,  i surely missed something but cannot figure out what. Never happened to me on other installations that i can remember. lea@openbsd:/usr/ports/net/c

php 5.6 and php 7 using php-fpm ?

2018-08-16 Thread Elias M. Mariani
Hi, Somebody knows how to set up 2 different socks, one with php56 and another with php70 ? Yo can just run rcctl start php56_fpm php70_fpm Because they would use the same fpm.sock. And this is configured in /etc/php-fpm.conf, I did not found another place to configure this. Cheers. Elias.

Re: x260 hang at halt/reboot

2018-08-16 Thread Frank Groeneveld
On Wed, Aug 15, 2018, at 15:02, Stuart Henderson wrote: > Thanks for the suggestion, currently OpenBSD and UEFI only. > I'll give it a try with MBR when I can afford a better SSD and rebuild it > on that. > I need CSM mode enabled on my X260 to get it working correctly. Is it disabled for you?

Re: Can unveil pledge to only reduce?

2018-08-16 Thread Luke Small
Ok. Thanks. On Thu, Aug 16, 2018 at 1:59 PM Theo de Raadt wrote: > Luke Small wrote: > > Could you have a promise for unveil reductions only? > > That won't actually help much, and people will fall into some > pretty significant traps. > > Sorry it would require a really long explanation. >

Re: Can unveil pledge to only reduce?

2018-08-16 Thread Theo de Raadt
Luke Small wrote: > Could you have a promise for unveil reductions only? That won't actually help much, and people will fall into some pretty significant traps. Sorry it would require a really long explanation.

Can unveil pledge to only reduce?

2018-08-16 Thread Luke Small
Could you have a promise for unveil reductions only?

Re: perlish question

2018-08-16 Thread edgar
On Aug 16, 2018 1:41 AM, Ed wrote: > > On Tue, Aug 07, 2018 at 05:40:21pm -0500, Edgar Pettijohn III wrote: > > I am attempting to create and verify password hashes from within perl. The > > easiest way I saw was to use Inline::C like this: > > > > __C__ > > > > int checkpass(const char *p, co

SuperMicro A2SDi-4C-HLN4F

2018-08-16 Thread Rupert Gallagher
https://www.supermicro.com/products/motherboard/atom/A2SDi-4C-HLN4F.cfm # OpenBSD 6.3 on SuperMicro SYS-E200-9A /usr/bin/ssh ADMIN@192.168.1.2 ATEN SMASH-CLP System Management Shell, version 1.05 Copyright (c) 2008-2009 by ATEN International CO., Ltd. All Rights Reserved -> cd /system1/sol1 /s

Re: Python script using /proc

2018-08-16 Thread butresin
On 0816 1541, Ingo Schwarze wrote: > Hi, > > butresin wrote on Thu, Aug 16, 2018 at 03:28:57PM +0200: > > > There is a python script, what is using the /proc/ directory. > [...] > > Should i worry? > > Yes, you should: /proc is a mostly broken concept. > Any software using it is probably unrelia

Re: routing traffic to transparent squid cluster

2018-08-16 Thread Joerg Streckfuss
Am 15.08.2018 um 18:26 schrieb Stuart Henderson: On 2018-08-15, George wrote: I believe you may be looking for a redirect not a relay. It all really depends on your network topology and what you are trying to do but in general something like this is what you are looking at: For directing traf

Re: perlish question

2018-08-16 Thread Ed
On Tue, Aug 07, 2018 at 05:40:21pm -0500, Edgar Pettijohn III wrote: > I am attempting to create and verify password hashes from within perl. The > easiest way I saw was to use Inline::C like this: > > __C__ > > int checkpass(const char *p, const char *h) { >     printf("%s: %s\n", p, h); >     r