Newest bootloader commits cause restart on amd64 EFI

2017-06-01 Thread Henrik Friedrichsen
Hey, I just updated to the latest snapshot and can't run the EFI bootloader anymore. I used to chainload the bootx64.efi with GRUB2, which worked fine until today. Now it just reboots after chainloading the bootloader. I don't know if loading the OpenBSD bootx64.efi directly will solve this, but

Re: Newest bootloader commits cause restart on amd64 EFI

2017-06-01 Thread Henrik Friedrichsen
On Thu, Jun 01, 2017 at 11:11:09AM +0200, David Skantz wrote: > I have no chainloader but the same problem and solution. Looks like a fix is already in the works: http://marc.info/?l=openbsd-tech&m=149630569323456&w=2 http://marc.info/?l=openbsd-tech&m=149630653223750&w=2

Re: OpenSMTP and OpenLDAP

2017-07-25 Thread Henrik Friedrichsen
Hey, On Tue, Jul 25, 2017 at 10:50:32AM +0200, Markus Rosjat wrote: > I was just wondering if does two work together at all? I saw examples with > ldapd that ships with the OS but not with OpenLDAP. Since I try to get my > user table defined, and the man only has options for db and file, whats the

Re: touchpad input driver: testing needed

2017-08-03 Thread Henrik Friedrichsen
No apparent problems here on my ThinkPad x220i. Base pointer speed was slightly slower which I was able to adjust by setting mouse.tp.scaling. This did, however, not affect the two-finger-scrolling, which required more mileage on my trackpad to scroll compared to the synaptics driver. Nice work!

Re: sysmerge is not needed when updating to 6.2?

2017-10-12 Thread Henrik Friedrichsen
On Thu, Oct 12, 2017 at 09:34:44AM +, C. L. Martinez wrote: > But I have only one question: Is sysmerge not longer needed for updating > process like in previous releases? sysmerge will be run when booting the system after the upgrade.

Router advertisements for dynamic IPv6 prefix

2020-10-11 Thread Henrik Friedrichsen
Hey, my ISP provides connectivity via PPPoE. An IPv6 prefix is handed out via DHCPv6 PD, which my OpenBSD gateway passes on to clients with the help of router advertisements using rad. This works fine until the ISP disconnects me after 24h (force disconnect on ISP side). The gateway receives a ne

Re: Router advertisements for dynamic IPv6 prefix

2020-10-15 Thread Henrik Friedrichsen
Hey, On Wed, Oct 14, 2020 at 02:30:04PM -0300, Fernando Gont wrote: > And you may also look at this other one, which has recommendations for CPEs, > which in your case accounts for your DHCPv6-PD and RA daemons: > https://tools.ietf.org/html/draft-ietf-v6ops-cpe-slaac-renum-05 Looks like it's a p

iwn WiFi slow in CURRENT

2016-02-03 Thread Henrik Friedrichsen
Hey, I recently upgraded 5.8 to CURRENT to test the new 802.11n WiFi additions which I am very excited about. I noticed that in CURRENT the WiFi throughput is much slower. The environment I am testing it in is at my university with wall-mounted Cisco APs (sorry, not very detailled). Trying to co

Re: iwn WiFi slow in CURRENT

2016-02-04 Thread Henrik Friedrichsen
Hey, manually setting the mode helps with the speed problems, thanks! On Wed, Feb 03, 2016 at 08:54:51PM +0100, Stefan Sperling wrote: > Does this diff help? This diff + the one you posted in tech@ this morning does not seem to help with the 11n mode, though. Anything I can provide to help? dm

Re: iwn WiFi slow in CURRENT

2016-02-04 Thread Henrik Friedrichsen
Sorry, wrong dmesg. OpenBSD 5.9 (GENERIC.MP) #0: Thu Feb 4 11:31:35 CET 2016 r...@kobol.lan:/usr/src/sys/arch/amd64/compile/GENERIC.MP real mem = 8335577088 (7949MB) avail mem = 8078761984 (7704MB) mpath0 at root scsibus0 at mpath0: 256 targets mainbus0 at root bios0 at mainbus0: SMBIOS rev. 2

Re: iwn WiFi slow in CURRENT

2016-02-04 Thread Henrik Friedrichsen
Hey, On Thu, Feb 04, 2016 at 11:56:30AM +0100, Stefan Sperling wrote: > For starters, beacons from this AP. > > While associated: tcpdump -n -i iwn0 -y IEEE802_11_RADIO -vvv subtype beacon > > Send me one of the lines this prints. Here you go: 14:52:00.658304 802.11 flags=0<>: beacon, timestam

Re: iwn WiFi slow in CURRENT

2016-02-04 Thread Henrik Friedrichsen
On Thu, Feb 04, 2016 at 03:15:25PM +0100, Stefan Sperling wrote: > Sorry, this capture is incomplete. Can you please add the -s 1500 option? No problem: 15:57:46.601094 802.11 flags=0<>: beacon, timestamp 164743741446, interval 102, caps=10021, ssid (eduroam), rates 18M 24M 36M 48M 54M, tim 0x000

Re: iwn WiFi slow in CURRENT

2016-02-04 Thread Henrik Friedrichsen
Hey, On Thu, Feb 04, 2016 at 06:24:42PM +0100, Stefan Sperling wrote: > This AP does not comply with the 11n standard I'm reading (802.11 2012) > because it does not support all of MCS 0-7. > > We currently require RxMCS starting with 0xff (MCS 0 to 7 supported). > Looks like we need a better str

Re: iwn WiFi slow in CURRENT

2016-02-04 Thread Henrik Friedrichsen
Beacon from my home AP in case it helps: 20:29:53.785848 802.11 flags=0<>: beacon, timestamp 6134271936059, interval 100, caps=21, ssid (DATENMOPED), rates 6M 9M 12M 18M 24M 36M 48M 54M, ds (chan 36), tim 0x0002, country 'US ', channels 36-39 limit 17dB, channels 52-55 limit 23dB, channels 149

Re: Migrating nginx config to OpenBSD's httpd

2018-04-16 Thread Henrik Friedrichsen
On Fri, Apr 13, 2018 at 02:30:18PM +0300, Pavel Korovin wrote: > Hi Carlos, > > There's no analog of proxy_pass in httpd(8). relayd(8) is your friend. So far I have not been able to emulate proxy_pass with relayd. I came across two issues: - relayed HTTP requests resulted in cut off responses, s

Re: Migrating nginx config to OpenBSD's httpd

2018-04-16 Thread Henrik Friedrichsen
Hey Pavel, thanks for your response. I have adapted my configuration and came up with this: ext4="51.15.10.194" ext6="2001:bc8:2d08::1" table { "127.0.0.1" } table { "127.0.0.1" } http protocol "monit" { match request header "Host" value "status.affekt.org" forward to match request

Re: Migrating nginx config to OpenBSD's httpd

2018-04-16 Thread Henrik Friedrichsen
Thanks again. This worked in case anyone is looking for it: http protocol "monit" { match request forward to match request header "Host" value "status.affekt.org" forward to } The order is important, if put in reversed the "status.affekt.org" forward will be overwritten. Now all I nee

How to control multiple line channels in USB audio

2019-01-18 Thread Henrik Friedrichsen
Hey, I have an ESI MAYA44 USB+ (https://www.esi-audio.com/products/maya44usb+/) with 8 channels (2 stereo input + 2 stereo output) and a headphone jack: uaudio0 at uhub0 port 3 configuration 1 interface 0 "ESI Audiotechnik GmbH MAYA44 USB+" rev 1.00/3.01 addr 2 uaudio0: audio rev 1.00, 8 mixer c

Re: Thinkpad X220, can't control screen brightness via keyboard

2016-09-17 Thread Henrik Friedrichsen
Try suspending to RAM and waking it up again. Sometimes, the brightness keys don't work for me either. Suspending + waking up once seems to fix it.

X220 Backlight Buttons stopped working in 5.6

2014-11-05 Thread Henrik Friedrichsen
Hey, I just did a fresh install of 5.6 on my ThinkPad x220i and it seems that the brightness buttons stopped working. I know they worked on 5.5. Is there anything that changed in terms of this? Best regards Henrik

Re: X220 Backlight Buttons stopped working in 5.6

2014-11-05 Thread Henrik Friedrichsen
Okay, a suspend & resume cycle seems to have fixed it somehow.

Re: 5.6, IPv6: is autoconf set by default?

2014-12-30 Thread Henrik Friedrichsen
On Tue, Dec 30, 2014 at 06:16:04PM +0100, Harald Dunkel wrote: > I wonder if autoconf > is set or cleared by default, if inet6 is configured for the > network interfaces and if net.inet6.ip6.forwarding is enabled? It certainly doesn't seem to be enabled by default as I just had to enable it to get

httpd SNI

2015-01-28 Thread Henrik Friedrichsen
Hello, are there plans to implement SNI for httpd so that multiple virtual hosts can be assigned to a single IP? I couldn't find any commits related to this in -CURRENT. Henrik

Re: touchpad slight regression (snap: 20141121->20150217)

2015-02-25 Thread Henrik Friedrichsen
I can confirm this on my Thinkpad X220i.

Re: touchpad slight regression (snap: 20141121->20150217)

2015-02-25 Thread Henrik Friedrichsen
On Wed, Feb 25, 2015 at 11:50:55AM -0600, joshua stein wrote: > Can you try recompiling that driver with that last revision backed > out and see if it fixes the problem? Done. Problem is gone.

Re: touchpad slight regression (snap: 20141121->20150217)

2015-02-25 Thread Henrik Friedrichsen
On Thu, Feb 26, 2015 at 01:21:23AM +0100, Martin Pieuchot wrote: > Do you guys mind sharing a dmesg? On which touchpad/firmware version do > you see this regression? Sure: OpenBSD 5.7-beta (GENERIC.MP) #860: Sun Feb 22 03:14:54 MST 2015 t...@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/

Re: touchpad slight regression (snap: 20141121->20150217)

2015-02-27 Thread Henrik Friedrichsen
That does seem to fix it in my case.

Re: httpd tls - what am i missing?

2015-05-11 Thread Henrik Friedrichsen
I've got the same problem OP has with a freshly generated key and signed cert from wosign.com on OpenBSD 5.7-stable. The cert/key work fine with nginx, but with httpd the client simply times out when trying to open a session with the server. OpenSSL s_client stops right after connecting to the se

Re: httpd tls - what am i missing?

2015-05-11 Thread Henrik Friedrichsen
Hey! Thanks for getting back to me. Unfortunately that does not seem to be the problem in my case. :( On Mon, May 11, 2015 at 09:45:13PM -0500, Theodore Wynnychenko wrote: > From: Joel Sing > Sent: Sunday, March 29, 2015 5:13 AM > Subject: Re: httpd tls - what am i missing? > Okay, I've at least

Re: httpd tls - what am i missing?

2015-05-11 Thread Henrik Friedrichsen
Ok, so a little followup. I found out what the problem was: The server certificate bundle given to me by my CA contained a SHA1 certificate along with the other SHA256 certificates. Apparently httpd didn't like that. Removing this certificate from the bundle fixed my problem.

Re: Major improvement in CPU temperatures for -current

2015-06-14 Thread Henrik Friedrichsen
Can confirm this. Quite a significant change on my Thinkpad X220. Thanks a lot!

Re: httpd stops accepting connections after a few hours on current

2015-07-08 Thread Henrik Friedrichsen
I have encountered the same problem as has the guy in [1]. Maybe it is worth a bug report? Could this be related to FastCGI and exhaustion of some ressource? [1]: https://www.facebook.com/groups/2210554563/permalink/10153383131319564/

Re: dovecot startup failure (5.7-stable)

2015-07-25 Thread Henrik Friedrichsen
Hey! This is known: http://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/ports/mail/dovecot/pkg/README-server?rev=1.2 Henrik

Re: Sluggish/laggy browser behaviour

2015-07-26 Thread Henrik Friedrichsen
Hey, On Sun, Jul 26, 2015 at 12:56:53PM -0700, Nathan Van Ymeren wrote: > Unfortunately my problem persists even when tabs are not using sounds. > Scrolling e.g. the front page of Reddit is choppy and stuttery. Using > apmd -A and hw.perfpolicy=auto helps a little with the tabbing issue > but not

Re: Sluggish/laggy browser behaviour

2015-07-26 Thread Henrik Friedrichsen
Hey On Sun, Jul 26, 2015 at 10:46:30PM +0100, Dimitris Papastamos wrote: > Try viewtube[0] and gecko-mediaplayer instead. No hangs on my system > at all. Yeah, that is a workaround. Sometimes I use youtube_dl with mpv. That was just one example, though ;p

Re: Native EFI Bootloader Support

2015-09-04 Thread Henrik Friedrichsen
On Fri, Sep 04, 2015 at 11:22:48AM -0700, Chris Cappuccio wrote: > Since the purpose of Secure Boot provide little to no benefit to users (in > fact > quite the opposite), the question becomes why? UEFI does not always imply Secure Boot. There are modern systems which do not feature legacy b

Synaptics/Chrome two-finger scrolling behaviour

2016-06-06 Thread Henrik Friedrichsen
Hey, I'm not sure, but something seems to have changed two-finger-scrolling on Synaptics touchpads in the latest snapshots. My snapshot is from June 2nd. The following is what happens: In Chromium, if I click somewhere and subsequently scroll the website using two-finger-scrolling, it scrolls mo

Re: Synaptics/Chrome two-finger scrolling behaviour

2016-06-06 Thread Henrik Friedrichsen
On Mon, Jun 06, 2016 at 02:24:37PM +0200, Nicklas Mikkelinen wrote: > I have the same issue in both openbsd, win10 and mac os x yosemite. > > Thought it was my mouse though. Good to know. Looks like it is a Chromium problem then.

Re: Synaptics/Chrome two-finger scrolling behaviour

2016-06-06 Thread Henrik Friedrichsen
On Mon, Jun 06, 2016 at 04:08:32PM +0200, Matej Nanut wrote: > I noticed the option to navigate by overscrolling was turned on by > default in version 51. Maybe it has something to do with this? Maybe > common code changes? > > I disabled it immediately because I find it annoying. > > You can fin

Re: Synaptics/Chrome two-finger scrolling behaviour

2016-06-19 Thread Henrik Friedrichsen
On Mon, Jun 06, 2016 at 02:17:00PM +0200, Henrik Friedrichsen wrote: > Hey, > > I'm not sure, but something seems to have changed two-finger-scrolling > on Synaptics touchpads in the latest snapshots. > > My snapshot is from June 2nd. The following is what happens: >

py-pip for python3 on OpenBSD 5.5

2014-07-08 Thread Henrik Friedrichsen
Hey, So I'm currently trying to install pip for Python 3 on a 5.5 system. The port devel/py-pip has a python3 flavor which would theoretically allow me to do this. However, one of its dependencies (py-setuptools) does not, which is why I cannot install py-pip with the python3 flavor. What wo

Re: py-pip for python3 on OpenBSD 5.5

2014-07-08 Thread Henrik Friedrichsen
Nevermind. This was due to a dependency that did not get installed for some reason..

Re: py-pip for python3 on OpenBSD 5.5

2014-07-09 Thread Henrik Friedrichsen
On 2014-07-08 19:49, Juan Francisco Cantero Hurtado wrote: Which dependency? if a package needs some missing dependency, we can fix the package. Thanks, but the dependency is not missing in the ports tree. It simply did not get installed in the first run, although I'm not yet entirely sure wh

Re: weird problem in Germany / TCP related

2014-10-29 Thread Henrik Friedrichsen
Hey, On Wed, Oct 29, 2014 at 09:42:21AM +0100, Peter J. Philipp wrote: > So I'm looking for more people who use DTAG who have experienced > degragations (mostly noticed in running screen or tmux and having > switched windows and it's doggedly slow due to retransmissions). What > sort of home rout