Re: Acme-client error getting validation data when updating LetsEncrypt certs on 7.5

2024-04-15 Thread Mike Fischer
The location { … } block in the port 80 server is non-functional because all requests are redirected to HTTPS. Add a `pass` to make it functional. Note: If you do then you don’t need the corresponding location { … } block in the port 443 server any more. Also, instead of: > block return 301

Re: New postfix-3.8.20221007p12 broken TLS for Gmail servers?

2024-02-03 Thread Mike Fischer
> Am 03.02.2024 um 03:44 schrieb Brian Conway : > >> Why do you run such an outdated postfix snapshot? > > That is the latest version that is supported/available in packages-stable: > > https://cdn.openbsd.org/pub/OpenBSD/7.4/packages-stable/amd64/ While we have not encountered the TLS issue

Re: Script doesn't stop opensearch

2024-01-03 Thread Mike Fischer
> Am 04.01.2024 um 00:06 schrieb Mik J : > > However when I want to stop the process > # /etc/rc.d/opensearch stop > Nothing happens try: # rcctl stop opensearch You are not supposed to ever call the /etc/rc.d/* scripts directly. HTH Mike

Re: OpenBSD_one_site_web_hosting_software_recommendation

2023-11-09 Thread Mike Fischer
Yep, WordPress is doable. I’ve never used Joomla, so I can’t say for sure. One thing to note is that OpenBSD httpd does not have the .htaccess mechanism. So sites relying on Apache httpd .htaccess features might need some thought. OTOH there is a port for Apache httpd… HTH Mike > Am

Re: mount softdep — does it improve the situation for unexpected shutdowns?

2023-11-05 Thread Mike Fischer
Thanks! End of discussion ;-) (Except for a potential update of the man page.) Mike > Am 05.11.2023 um 19:39 schrieb Martin Schröder : > > Am So., 5. Nov. 2023 um 19:33 Uhr schrieb Mike Fischer > : >> However the default /etc/fstab does not make use of it. > >>

mount softdep — does it improve the situation for unexpected shutdowns?

2023-11-05 Thread Mike Fischer
OpenBSD 7.4 amd64 I have just noticed that mount(8) has a softdep option for FFS file systems. And I saw this: https://en.wikipedia.org/wiki/Soft_updates where OpenBSD is mentioned. However the default /etc/fstab does not make use of it. We have been discussing how to deal with unexpected

Re: What could cause high CPU load averages (no actual CPU usage)?

2023-10-25 Thread Mike Fischer
> Am 25.10.2023 um 17:57 schrieb Theo de Raadt : > > Mike Fischer wrote: > >>> Am 25.10.2023 um 17:29 schrieb Theo de Raadt : >>> >>> Mike Fischer wrote: >>> >>>> True. But like I said, this was noticed because of the sudden incr

Re: What could cause high CPU load averages (no actual CPU usage)?

2023-10-25 Thread Mike Fischer
> Am 25.10.2023 um 19:01 schrieb Janne Johansson : > > > I process that is started every 5 seconds and exits after 10ms > > computation can cause the load to go up by 1. It just matters if it runs > > during the sampling time or not. This is why the load avarage is not > > accurate, it is an

Re: What could cause high CPU load averages (no actual CPU usage)?

2023-10-25 Thread Mike Fischer
> Am 25.10.2023 um 17:59 schrieb Claudio Jeker : > > I process that is started every 5 seconds and exits after 10ms > computation can cause the load to go up by 1. It just matters if it runs > during the sampling time or not. This is why the load avarage is not > accurate, it is an indication

Re: What could cause high CPU load averages (no actual CPU usage)?

2023-10-25 Thread Mike Fischer
> Am 25.10.2023 um 17:29 schrieb Theo de Raadt : > > Mike Fischer wrote: > >> True. But like I said, this was noticed because of the sudden increase on >> the same (OpenBSD) machine without any obvious reason. > > The reason is obvious. > > You ins

Re: What could cause high CPU load averages (no actual CPU usage)?

2023-10-25 Thread Mike Fischer
> Am 25.10.2023 um 17:07 schrieb Theo de Raadt : > > Claudio Jeker wrote: > >> On Wed, Oct 25, 2023 at 11:57:54AM +0200, Mike Fischer wrote: >>> I have been observing occasional bouts of high load averages on several >>> servers I administer and I am

Re: What could cause high CPU load averages (no actual CPU usage)?

2023-10-25 Thread Mike Fischer
> Am 25.10.2023 um 14:32 schrieb Dave Voutila : > > > Mike Fischer writes: > >> I have been observing occasional bouts of high load averages on >> several servers I administer and I am trying to find the cause. (I >> monitor these machines so that I

What could cause high CPU load averages (no actual CPU usage)?

2023-10-25 Thread Mike Fischer
I have been observing occasional bouts of high load averages on several servers I administer and I am trying to find the cause. (I monitor these machines so that I can implement corrective measures in case of any malicious or abnormal activity. I think this is benign, but I’d still like to find

Re: Dokuwiki

2023-09-07 Thread Mike Fischer
> Am 08.09.2023 um 00:38 schrieb latin...@vcn.bc.ca: > > Hello > > Does somebody can help? OpenBSD 7.3 Dokuwiki > # ps ax |grep dokuwiki > 27461 p0 S+p 0:00.01 grep dokuwiki DokuWiki is not a process. So the above does not make any sense. > The error.log at /www/log is full of this

Re: Dokuwiki

2023-08-23 Thread Mike Fischer
> Am 23.08.2023 um 19:16 schrieb latin...@vcn.bc.ca: > I found the error, it is not OpenBSD, the first page after installation is > in English, but if i change language to es, the link does not go to the > wiki; it goes to the information web page. > > Thanks. Too little information to follow

Re: Dokuwiki

2023-08-22 Thread Mike Fischer
> Am 23.08.2023 um 00:45 schrieb latin...@vcn.bc.ca: > > Hello > > I have installed dokuwiki on OBSD 7.3, but i can not run install.php from > my Browser. > > php 8.1 is running. > > Permissions after installation: > > ls -la /var/www/dokuwiki/ > total 240 > drwxr-xr-x 8 root daemon

Re: Maintaining multiple PHP-FPM versions on the same host

2023-07-10 Thread Mike Fischer
I’ll answer both of your replies here. But please note that Stuart provided the feedback I needed so from my point of view this issue is closed. > Am 10.07.2023 um 14:30 schrieb Daniele B. : > > However, I passed a small amount of time with 5.6 and 7.3 from source loading > together. > In

Maintaining multiple PHP-FPM versions on the same host

2023-07-10 Thread Mike Fischer
Hi! I’m trying to figure out the best way to maintain multiple php-fpm setups at the same time and ran into a somewhat annoying issue. I’m not sure how many other users might have a similar situation? If this something too non-standard, let me know and I’ll shut up ;-) Background ==

Re: dhcpleased losing route

2023-05-11 Thread Mike Fischer
ote: >> i think that putput does not help mmuch because it does not show the DHCP >> packet contents. >> >> You could write the capture to a file with "-w filename" and then copy the >> file to the OpenBSD box for printing with "-r filename". Or send the raw >> pcap file. >> >> /B. -- Mike Fischer fisc...@lavielle.com

Re: dhcpleased losing route

2023-05-10 Thread Mike Fischer
x.1) >>> May 10 12:33:28 openbsd-gateway dhcpleased[77979]: adding nameservers >>> x.x.x.x x.x.x.x (lease from x.x.x.1 on cnmac2) >>> May 10 12:38:28 openbsd-gateway dhcpleased[77979]: deleting nameservers >>> x.x.x.x x.x.x.x (lease from x.x.x.1 on cnmac2) >>> May 10 12:38:28 openbsd-gateway dhcpleased[77979]: deleting x.x.x.30 from >>> cnmac2 (lease from x.x.x.1) >>> May 10 12:38:30 openbsd-gateway dhcpleased[77979]: adding x.x.x.30 to >>> cnmac2 (lease from x.x.x.1) >>> May 10 12:38:30 openbsd-gateway dhcpleased[77979]: adding nameservers >>> x.x.x.x x.x.x.x (lease from x.x.x.1 on cnmac2) >>> >> -- Mike Fischer fisc...@lavielle.com

Re: pkg_info -Q confusion

2023-04-15 Thread Mike Fischer
> Am 15.04.2023 um 23:44 schrieb Antun Matanović : > >> I'm generally interested in what is available for the exact machine I am >> running on. > > You could use `pkg_info -a -Q` which searches all the repositories. >> From the pkg_info man page: > -Q substring > Show the

Re: pkg_info -Q confusion

2023-04-14 Thread Mike Fischer
> Am 14.04.2023 um 18:24 schrieb Allan Streib : > > On Fri, Apr 14, 2023, at 05:50, Stuart Henderson wrote: >> I never found pkg_info -Q to be a useful tool. >> >> Try pkglocate instead ("pkg_add pkglocatedb" first) which allows >> searching on an index that is built from : - as a >> result it

Re: pkg_info -Q confusion

2023-04-14 Thread Mike Fischer
Inline… > Am 14.04.2023 um 12:50 schrieb Stuart Henderson : > > On 2023-04-14, Mike Fischer wrote: >> Usually when looking for a port to install I use `pkg_info -Q name` to >> search for the the port. >> >> Strangely this does not completely work for PHP on

pkg_info -Q confusion

2023-04-14 Thread Mike Fischer
Usually when looking for a port to install I use `pkg_info -Q name` to search for the the port. Strangely this does not completely work for PHP on OpenBSD 7.3: `pkg_info -Q php` does not list PHP 7.4.33 and related ports which are clearly available. It seems that -Q only finds ports in

Re: acme-client fails to renew certificate

2023-04-12 Thread Mike Fischer
Well as long as you always use the sane challenge directory /var/www/acme/ then I would first simplify this by only defining one server block for all port 80 access: server "www.example.com“ { listen on $www_v4 port 80 listen on $www_v6_a port 80 alias "example.com" block return

Re: how tail waits for file to appear again?

2023-02-17 Thread Mike Fischer
> Am 17.02.2023 um 06:23 schrieb Maksim Rodin : > > Hello, > Sorry if I chose the wrong place to ask such a question. > I have been learning C for a couple of months and along with reading > "C Primer Plus" by Stephen Prata and doing some exercises from it I took > a hard (for me) task to

After upgrade to 7.2 snmpd fails

2023-01-21 Thread Mike Fischer
I have just upgraded a VM from OpenBSD 7.1 to 7.2. Looks good so far except for snmpd which suddenly fails shortly after starting up: >From /var/log/daemon: Jan 21 22:59:56 wo snmpd[86168]: legacy backend: Registering 1.3.6.1.6.3.15.1.1.6.0(instance) context() priority(1) timeout(1.50s) Jan 21

Re: After upgrade to 7.2 snmpd fails

2023-01-21 Thread Mike Fischer
Nevermind! # userdel _rtadvd # groupdel _rtadvd # groupadd -g 92 _agentx Solved the problem. Apparently I failed to follow the instructions in https://www.openbsd.org/faq/upgrade64.html when I did that upgrade ;-) Sorry for the noise! Mike > Am 21.01.2023 um 23:59 schrieb Mike Fisc

Re: After upgrade to 7.2 snmpd fails

2023-01-21 Thread Mike Fischer
rd fast real-time compression algorithm # Thanks! Mike > Am 21.01.2023 um 23:21 schrieb Mike Fischer : > > I have just upgraded a VM from OpenBSD 7.1 to 7.2. > > Looks good so far except for snmpd which suddenly fails shortly after > starting up: > From /var/log/daemon

Re: Documentation of wsconsctl keyboard.map format?

2022-11-29 Thread Mike Fischer
> Am 27.11.2022 um 19:48 schrieb Vlad Meșco : > > On Fri, Nov 25, 2022 at 03:32:20AM +0100, Mike Fischer wrote: >> >>> Am 24.11.2022 um 15:07 schrieb u...@disroot.org: >>> >>> Hello! >>> >>> I would like to find some

Re: Documentation of wsconsctl keyboard.map format?

2022-11-24 Thread Mike Fischer
> Am 24.11.2022 um 15:07 schrieb u...@disroot.org: > > Hello! > > I would like to find some supporting documentation too, if anything is > available, but for certain other reasons > (https://github.com/letoram/arcan/issues/263). Basically, this "desktop > engine" has problems with figuring

Re: Documentation of wsconsctl keyboard.map format?

2022-11-23 Thread Mike Fischer
> Am 23.11.2022 um 11:43 schrieb Vlad Meșco : > > On Wed, Nov 23, 2022 at 06:57:17AM +, Jason McIntyre wrote: >> On Wed, Nov 23, 2022 at 12:21:26AM +0100, Mike Fischer wrote: >>> Hi! >>> >>> I???m trying to use a German Apple Mac keyboard wit

Re: Documentation of wsconsctl keyboard.map format?

2022-11-23 Thread Mike Fischer
> Am 23.11.2022 um 07:57 schrieb Jason McIntyre : > > On Wed, Nov 23, 2022 at 12:21:26AM +0100, Mike Fischer wrote: >> Hi! >> >> I???m trying to use a German Apple Mac keyboard with OpenBSD 7.2 and I???d >> like to match the mapping to that of macOS. >&

Documentation of wsconsctl keyboard.map format?

2022-11-22 Thread Mike Fischer
Hi! I’m trying to use a German Apple Mac keyboard with OpenBSD 7.2 and I’d like to match the mapping to that of macOS. `wsconsctl keyboard.encoding=de` helps, but several mappings are different/missing. For example the pipe character | should be alt-7 but isn’t. Mostly the alt-combinations

Re: 7.2 and iwm/amdgpu Firmware?

2022-11-11 Thread Mike Fischer
failed to load ucode RLC_RESTORE_LIST_SRM_MEM(0x13) [drm] psp gfx command LOAD_IP_FW(0x6) failed and response status is (0x000F) amdgpu0: RAVEN2 3 CU rev 0x09 amdgpu0: 1024x768, 32bpp wsdisplay0 at amdgpu0 mux 1: console (std, vt100 emulation) wsdisplay0: screen 1-5 added (s

7.2 and iwm/amdgpu Firmware?

2022-11-10 Thread Mike Fischer
On a newly installed Mini PC (NiPoGi AM02) I noticed the following messages in dmesg: iwm0: could not read firmware iwm-7265-17 (error 2) iwm0: failed to load init firmware and: drm:pid0:amdgpu_device_parse_gpu_info_fw *ERROR* Failed to load gpu_info firmware "amdgpu/raven2_gpu_info.bin"

Re: PHP not updated on some machines

2022-10-06 Thread Mike Fischer
> Am 06.10.2022 um 21:30 schrieb Stuart Henderson : > > In cases where the CDN or mirror does appear to be all in sync then > we might be looking at a problem with pkg_add or with the packages > themselves. For either of those cases it would help to collect > output from "pkg_add -u -vv" under

PHP not updated on some machines

2022-10-06 Thread Mike Fischer
I have some local VMs running OpenBSD 7.1 stable, amd64 as well as some remote VMs running the same. When I did pkg_add -u today two of my three local machines updated PHP to versions 7.4.32, 8.0.24 and 8.1.11 as expected. However the remote machines and a very basic local machine, while

Re: httpd error.log

2022-09-02 Thread Mike Fischer
Hi Paul! > Am 02.09.2022 um 14:52 schrieb Paul Pace : > > On 2022-09-01 13:20, Mike Fischer wrote: >>> Am 01.09.2022 um 21:49 schrieb latin...@vcn.bc.ca: >>>>> Am 01.09.2022 um 11:13 schrieb latin...@vcn.bc.ca: >>>>> historia.agroena.o

Re: httpd error.log

2022-09-02 Thread Mike Fischer
ail -f /var/www/logs/error.log /var/www/logs/access.log to see which requests led to these entries. (Having timestamps in error.log would make this so much easier!) Mike > > Mischa > > On 2022-09-01 10:41, Mike Fischer wrote: >> This happens when PHP-FPM can’t find the

Re: httpd error.log

2022-09-01 Thread Mike Fischer
> Am 01.09.2022 um 21:49 schrieb latin...@vcn.bc.ca: > >> >>> Am 01.09.2022 um 11:13 schrieb latin...@vcn.bc.ca: >>> >>> historia.agroena.org >> >> Right, try something like this and watch the error.log: >> >> curl --url 'https://historia.agroena.org/i-dont-exist.php' >/dev/null >> >> HTH

Re: httpd error.log

2022-09-01 Thread Mike Fischer
> Am 01.09.2022 um 11:13 schrieb latin...@vcn.bc.ca: > > historia.agroena.org Right, try something like this and watch the error.log: curl --url 'https://historia.agroena.org/i-dont-exist.php' >/dev/null HTH Mike

Re: httpd error.log

2022-09-01 Thread Mike Fischer
This happens when PHP-FPM can’t find the script to execute. One reason could be that you fiddled with the settings and let PHP-FPM run without chroot(2), while httpd(8) is running with chroot(2). But it might also be a misconfiguration of in httpd.conf. Not sure about all of the potential

Re: How to compact partitions (disklabel)?

2022-06-13 Thread Mike Fischer
> Am 13.06.2022 um 10:21 schrieb Stuart Henderson : > > On 2022-06-13, Mike Fischer wrote: >> After solving a recent problem on a VM where the /usr/local was full I was >> left with a disklabel that had a hole of unused space in it (see below for >>

How to compact partitions (disklabel)?

2022-06-13 Thread Mike Fischer
Hi! After solving a recent problem on a VM where the /usr/local was full I was left with a disklabel that had a hole of unused space in it (see below for details). I was wondering if there is a way to compact the partitions, i.e. move the partitions following the deleted one up to fill the

Re: Running multiple instances of pflogd

2022-06-02 Thread Mike Fischer
> Am 02.06.2022 um 22:42 schrieb Pantelis Roditis : > > Hi everyone, > > I recently started running multiple pflogd instances and noticed that > /etc/rc.d/pflogd killed/restarted every running instance. > The same happened from newsyslog rotations as well. I think the issue is more general.

Re: Capturing redirected packets?

2022-02-11 Thread Mike Fischer
> Am 10.02.2022 um 19:01 schrieb Stuart Henderson : > > On 2022-02-10, Mike Fischer wrote: >>> The redirection to an address on the local machine is just internal to >>> the machine; those would only show a second time in tcpdump if they were >>> bein

Re: Capturing redirected packets?

2022-02-10 Thread Mike Fischer
> Am 10.02.2022 um 09:55 schrieb Stuart Henderson : > > On 2022-02-08, Mike Fischer wrote: >> Hi! >> >> I have PF rules redirecting packets to an IP on one interface (rdomain 1) to >> the IP of another interface (rdomain 0): >> >> pass in log

Capturing redirected packets?

2022-02-08 Thread Mike Fischer
Hi! I have PF rules redirecting packets to an IP on one interface (rdomain 1) to the IP of another interface (rdomain 0): pass in log on rdomain 1 inet proto tcp to $ipv4b port 80 rdr-to $ipv4a port 8080 rtable 0 pass in log on rdomain 1 inet6 proto tcp to $ipv6b port 80 rdr-to $ipv6a port

Re: httpd.conf: 2 interfaces, 2 listen, IPv6, only one server works

2022-02-07 Thread Mike Fischer
HTTPS also sends host header, but SNI is still used to choose correct > certificate. > Am 07.02.2022 um 18:15 schrieb Matthew Ernisse : > > On Mon, Feb 07, 2022 at 05:23:03PM +0100, Mike Fischer said: >> >> Not quite true. I do use DNS and for practical applications I a

Re: httpd.conf: 2 interfaces, 2 listen, IPv6, only one server works

2022-02-07 Thread Mike Fischer
> Am 06.02.2022 um 22:48 schrieb Brian Brombacher : > > At this point I would reconfigure httpd to use two separate ports (80, 81) > for each site, or two local IP addresses (::1, ::2, I wouldn’t personally do > this, I would go multi port), and then use PF rules to forward the (em0) port >

Re: httpd.conf: 2 interfaces, 2 listen, IPv6, only one server works

2022-02-06 Thread Mike Fischer
> Am 06.02.2022 um 21:13 schrieb Brian Brombacher : > >>> You can work around it by putting both interfaces in diffrent rdomains, >>> then running two httpd instances, one in rdomain with first IP, second in >>> rdomain with second IP. >> > > This will work. You can use PF rules to cross

Re: httpd.conf: 2 interfaces, 2 listen, IPv6, only one server works

2022-02-06 Thread Mike Fischer
Hi Łukasz, > Am 06.02.2022 um 12:08 schrieb Łukasz Moskała : > > W dniu 6.02.2022 o 05:28, Mike Fischer pisze: >> OpenBSD 7.0 stable amf64 >> My host has two ethernet interfaces, em0 and em1. >> Note: The host is a VM with two virtual interfaces. >> Bo

httpd.conf: 2 interfaces, 2 listen, IPv6, only one server works

2022-02-05 Thread Mike Fischer
OpenBSD 7.0 stable amf64 My host has two ethernet interfaces, em0 and em1. Note: The host is a VM with two virtual interfaces. Both interfaces are configured like this for IPv6 in the /etc/hostname.em0 and /etc/hostname.em1 files: inet6 autoconf -temporary -soii They are connected to the same

Re: Networking error or bad System configuration.

2022-01-31 Thread Mike Fischer
> Am 31.01.2022 um 23:38 schrieb latin...@vcn.bc.ca: > >> Some things to consider: >> >> - Have you established whether the IPs configured inside your host are >> actually reachable from the outside? (And whether they reach your host and >> not something else?) >> You could check this using

Re: Networking error or bad System configuration.

2022-01-31 Thread Mike Fischer
Some things to consider: - Have you established whether the IPs configured inside your host are actually reachable from the outside? (And whether they reach your host and not something else?) You could check this using SSH which you say is working. Can you connect using both IPv4 and IPv6? -

Re: OpenSMTPd: Unable to use TLS/SSL over IPv6

2022-01-11 Thread Mike Fischer
Hi Leo, > Am 11.01.2022 um 19:10 schrieb Leo Unglaub : > > Hey friends, > i am running OpenBSD 7.0 with all patches applied. Some weeks ago i noticed a > very strange issue with my OpenSMTPd instance. People are unable to use TLS > when connecting via IPv6. This is not just my observation,

Re: IPv6 autoconf with static IID?

2021-12-29 Thread Mike Fischer
Ok, ignore my previous mail. The solution is to use -soii: # ifconfig em0 autoconf eui64 -soii lladdr f2:b6:71:e6:11:7e This makes the non temporary public and ULA addresses use the EUI-64 IID based on the lladdr. Thanks! Mike > Am 29.12.2021 um 19:37 schrieb Mike Fischer : > > On

Re: IPv6 autoconf with static IID?

2021-12-29 Thread Mike Fischer
On Tue, Dec 28, 2021, at 21:05, Mike Fischer wrote: >> Am 28.12.2021 um 13:09 schrieb Paul de Weerd : >> Seems like the simplest way, especially using the lladdr option. > Yes, I’ll give that a try. Ok, I have tried the following: Remove my current IPv6 configuration from em0:

Re: IPv6 autoconf with static IID?

2021-12-28 Thread Mike Fischer
Hi Thomas! Am 28.12.2021 um 16:24 schrieb Thomas Bohl : > > Hello, > >> My Internet connection is using dynamic IPv6 prefixes. I want to configure a >> local (OpenBSD) machine so its public IPv6 address adjusts to changes in the >> network prefix but keeps a static Interface Identifier (IID).

Re: IPv6 autoconf with static IID?

2021-12-28 Thread Mike Fischer
e. Still have to make sure no two interfaces on the same network segment use the same MAC though, but the odds are pretty good. Mike > > G.day > diana > KI5PGJ > > On December 28, 2021 6:05:54 AM MST, Mike Fischer > wrote: >> >>> Am 28.12.2021 um 13:09 schrieb P

Re: IPv6 autoconf with static IID?

2021-12-28 Thread Mike Fischer
> Am 28.12.2021 um 13:09 schrieb Paul de Weerd : > > On Tue, Dec 28, 2021 at 12:35:07PM +0100, Mike Fischer wrote: > | So I guess the only way to get a stable IID with dynamic prefixes is > | to use the eui64 method? (Which is based on the MAC-address and > | leaks infor

Re: IPv6 autoconf with static IID?

2021-12-28 Thread Mike Fischer
Thanks Stuart! > Am 28.12.2021 um 10:01 schrieb Stuart Henderson : > > On 2021-12-27, Mike Fischer wrote: >> After reading man pages for slaacd(8), hostname.if(5) and ifconfig(8) the >> only way to combine a static IID with a dynamic prefix seems to be the eui64 >>

IPv6 autoconf with static IID?

2021-12-27 Thread Mike Fischer
Hi! Maybe I’m completely off track with my idea, so please let me know if that is the case. I’ve done some reading and experimenting with IPv6 but wouldn’t consider myself an expert yet. Goal: = My Internet connection is using dynamic IPv6 prefixes. I want to configure a local (OpenBSD)

Re: PHP 7.4: SSL routines:CONNECT_CR_CERT:certificate verify failed

2021-12-23 Thread Mike Fischer
Hi Leo, Am 23.12.2021 um 00:51 schrieb Leo Unglaub : > >> openssl s_client -tls1_2 -connect mail.foobar.com:587 >> openssl s_client -tls1_3 -connect mail.foobar.com:587 (both 1.2 and 1.3 work) Kind of strange that this works. Port 587 (submission) is usually set up to use STARTTLS, just like

Re: IPv6: how to trigger script when address prefix changes?

2021-10-07 Thread Mike Fischer
form of the old IP to remove it. Anyway, thanks for your suggestions. Mike > Am 07.10.2021 um 04:34 schrieb Daniel Jakots : > > On Thu, 7 Oct 2021 02:52:13 +0200, Mike Fischer > wrote: > >> Would a IPv6 address prefix change be something the hotplug(4) / >>

IPv6: how to trigger script when address prefix changes?

2021-10-06 Thread Mike Fischer
Hi! I have a need to update DNS records, and potentially pf(4) rules or tables when a public routable IPv6 address of my host changes. Such a change is expected whenever slaacd receives a change in the advertised IPv6 address prefix(es) from the router(s). Other than regularly polling