Re: DNS-01 challenge in acme-client

2018-03-02 Thread Consus
On 19:27 Fri 02 Mar, Stuart Henderson wrote: > On 2018-03-01, Consus wrote: > > Let's Encrypt is going to support wildcard certificates soon enough, but > > only through DNS-01 challenge, but acme-client(1) does not support it. > > Have you guys considered implemeting DNS challenges? Maybe someon

Re: iwi0: fatal firmware error

2018-03-02 Thread Xianwen Chen
Dear Stefan, Thank you. I guess the first step is to find out a way to ask iwi0 driver to output more details of the error, before it could be fixed. I don't have prior experiences with the iwi0 driver. Do you know how I can enable a debugger mode, if there is one? Yours sincerely, Xianwen On 3/

Re: ReText Python Based Mardown Composer on OpenBSD

2018-03-02 Thread Juan Francisco Cantero Hurtado
On Thu, Mar 01, 2018 at 08:59:44PM -0500, Z Ero wrote: > Does anyone have experience running ReText on OpenBSD? Anything to > watch out for when installing or any tips? > > Generally Python packages work well on OpenBSD. I am having some > trouble with this one in terms of missing module(s) / etc.

Re: interrupt at 50% on dell E5450

2018-03-02 Thread vincent delft
Hello, I've remarked that the speakers of the laptop are doing a small noise when I do not listen music. If I mute the speaker (mixerctl outputs.master.mute) this little noise disappear. I thought this was an Hardware issue. So, I've re-installed the orignial disk I've received with the machine (

Re: Can you specify which interface DHCP should serve on, in /etc/dhcpd.conf , or only via arg?

2018-03-02 Thread Marcus MERIGHI
Hello, t1...@protonmail.ch (Tinker), 2018.03.02 (Fri) 02:36 (CET): > Err, that became too wordy. This is what I wanted to ask: > > The common sense way to run a machine is to run it minimalistic, if not > else then for sleeping well at night. > > Now running DHCPD, I like it not to touch any othe

Re: DNS-01 challenge in acme-client

2018-03-02 Thread Stuart Henderson
On 2018-03-01, Consus wrote: > Let's Encrypt is going to support wildcard certificates soon enough, but > only through DNS-01 challenge, but acme-client(1) does not support it. > Have you guys considered implemeting DNS challenges? Maybe someone is > already working on the implementation? If not

Re: py3-qt5

2018-03-02 Thread Stuart Henderson
On 2018-03-02, frantisek holop wrote: > Daniel Jakots, 01 Mar 2018 21:50: >> On Thu, 1 Mar 2018 21:40:57 -0500, Z Ero >> wrote: >> >> > Not showing in pip3 --list after installed with pkg_add. Not available >> > module. Why? >> > >> >> pip and pkg_add are two different package manager. If you

Re: httpd howto redirect port 80 to 443 in vm

2018-03-02 Thread contact - ulysse lab
Put into /etc/httpd.conf : types { include "/usr/share/misc/mime.types" } server "default" {     listen on * tls port 443     tls certificate "/etc/letsencrypt/live/example.com/fullchain.pem"     tls key "/etc/letsencrypt/live/example.com/privkey.pem"     root "/htdocs/example.

Can't build new base system on HP 2133

2018-03-02 Thread Patrick Harper
Hi All, I'm trying to upgrade from 6.2 to current on an HP 2133. Kernel installation seemed fine except for a 'don't know how to make install' on the first attempt with the 'make && make install' command, using a standalone 'make install' seemed to complete with no errors. The following is the

Re: httpd howto redirect port 80 to 443 in vm

2018-03-02 Thread michael
‎Don't test redirects with firefox not any other browser. Use curl or any other tool so you can see exactly what happened (e.g. curl with -i to see the header)   Originalnachricht   Von: niya Gesendet: Donnerstag, 1. März 2018 13:04 An: Solène Rapenne; obs...@high5.nl; misc@openbsd.org Betreff

Re: DNS-01 challenge in acme-client

2018-03-02 Thread Consus
On 15:46 Fri 02 Mar, Consus wrote: > On 11:45 Fri 02 Mar, Etienne wrote: > > Well, really, what you're asking for is having acme-client offload the > > complicated stuff (set the TXT records, then check for verification) to a > > script, which to me looks pretty much the same as writing a script to

Re: httpd howto redirect port 80 to 443 in vm

2018-03-02 Thread Base Pr1me
Crap, naturally, don't forget "tls" in front of "port 443". Apologies. On Fri, Mar 2, 2018 at 7:54 AM, Base Pr1me wrote: > I should mention for clarification there are two server sections. The > second listens on 443 and does the tls and location heavy lifting. > So, there are two: > > server "e

Re: httpd howto redirect port 80 to 443 in vm

2018-03-02 Thread Base Pr1me
I should mention for clarification there are two server sections. The second listens on 443 and does the tls and location heavy lifting. So, there are two: server "example.com" { listen on $ext_if port 80 alias "www.example.com" block return 301 "https://example.com/"; } se

Re: httpd howto redirect port 80 to 443 in vm

2018-03-02 Thread Base Pr1me
I simply have a block in my httpd.conf for my redirects: server "example.com" { listen on $ext_if port 80 alias "www.example.com" block return 301 "https://example.com/"; } On Fri, Mar 2, 2018 at 7:40 AM, Solène Rapenne wrote: > Le 2018-03-02 15:33, Matt M a écrit : > >>

Re: httpd howto redirect port 80 to 443 in vm

2018-03-02 Thread Solène Rapenne
Le 2018-03-02 15:33, Matt M a écrit : Why not use a .htaccess redirect? https://www.sslshopper.com/apache-redirect-http-to-https.html .htaccess file is a feature of Apache web server while we are talking about httpd.

Re: httpd howto redirect port 80 to 443 in vm

2018-03-02 Thread Matt M
Why not use a .htaccess redirect? https://www.sslshopper.com/apache-redirect-http-to-https.html On Thu, Mar 1, 2018 at 7:18 AM Bryan Harris wrote: > Alternate?: go back to original config and change > > server "default" > > to > > server "example.com" > > And maybe an alias for "www.example.com

Re: iwi0: fatal firmware error

2018-03-02 Thread Stefan Sperling
On Fri, Mar 02, 2018 at 12:14:14PM +, Xianwen Chen wrote: > Dear OpenBSD users, > > I am running OpenBSD 6.2 i386 on ThinkPad R52. The system has been > complaining "iwi0: fatal firmware error" in the past two or three > days. I was not aware of the problem before that. > > The problem can us

Re: DNS-01 challenge in acme-client

2018-03-02 Thread Consus
On 11:45 Fri 02 Mar, Etienne wrote: > Well, really, what you're asking for is having acme-client offload the > complicated stuff (set the TXT records, then check for verification) to a > script, which to me looks pretty much the same as writing a script to do > everything. I'm not. Writing TXT ent

iwi0: fatal firmware error

2018-03-02 Thread Xianwen Chen
Dear OpenBSD users, I am running OpenBSD 6.2 i386 on ThinkPad R52. The system has been complaining "iwi0: fatal firmware error" in the past two or three days. I was not aware of the problem before that. The problem can usually be worked around by "ifconfig iwi0 -inet -wpakey -nwkey down" and set

Re: DNS-01 challenge in acme-client

2018-03-02 Thread Etienne
On 01/03/18 14:39, Consus wrote: It is more complicated than creating a file in a folder. With a little luck it's not. Both NSD and BIND allow you to include files in zone configuration like this: [...] The only problem here is #3, but it's possible to create e.g. another pledged process tha

Re: py3-qt5

2018-03-02 Thread frantisek holop
Daniel Jakots, 01 Mar 2018 21:50: > On Thu, 1 Mar 2018 21:40:57 -0500, Z Ero > wrote: > > > Not showing in pip3 --list after installed with pkg_add. Not available > > module. Why? > > > > pip and pkg_add are two different package manager. If you run pkg_info, > you should see the package list w

Re: block MAC addr, bridge(4), vether(4), carp(4)

2018-03-02 Thread Tom Smyth
check your pf.conf configuration also, as Pf works on Bridged Packets also, another approach would be to tag packets comming in on em2 from bad mac lets call the tag bad-dhcp-requests have a look a puting something like this in your hostname.bridgeX rule pass in on em2 src tag BAD-DHCP

block MAC addr, bridge(4), vether(4), carp(4)

2018-03-02 Thread Marcus MERIGHI
Hello, in my quest to silence a misbehaving wifi access point spamming the log files by getting dhcp leases it does not accept I tried the following to be able to "ifconfig bridge2 rule block in on em2 src ...": wlan_ap \ em(4) (up) \ bridge(4) (a