The case of the phantom reboot

2021-03-27 Thread David Newman
OpenBSD 6.8 GENERIC#5 i386 One of my systems rebooted at 03:01 local time today. I've seen kernel panics and bad hardware but I've never seen OpenBSD "just reboot" by itself, ever. There's no cron job that would do this. last(1) is no help; it shows the reboot command but not the shutdown that

Re: vmm page fault with VM upgraded from Ubuntu 18LTS to 20LTS

2021-03-27 Thread Dave Voutila
Noah writes: > vmm crashes during boot after upgrading a VM from Ubuntu 18 to Ubuntu 20. > Host is running 6.8 with all syspatches > > vmd -dvvv output provides a log entry of: > vcpu_run_loop: vm 7 / vcpu 0 run ioctl failed: Bad address > > and this coincides with a kernel message: >

vmm page fault with VM upgraded from Ubuntu 18LTS to 20LTS

2021-03-27 Thread Noah
vmm crashes during boot after upgrading a VM from Ubuntu 18 to Ubuntu 20. Host is running 6.8 with all syspatches vmd -dvvv output provides a log entry of: vcpu_run_loop: vm 7 / vcpu 0 run ioctl failed: Bad address and this coincides with a kernel message: vmx_fault_page: uvm_fault returns 14,

Re: Intel wifi ipw showing up but not working

2021-03-27 Thread Stefan Sperling
Hi Riccardo, Any feedback regarding the proposed patch below? Thanks, Stefan On Wed, Mar 17, 2021 at 04:09:32PM +0100, Stefan Sperling wrote: > On Mon, Mar 15, 2021 at 02:11:39PM +0100, Riccardo Mottola wrote: > > Stefan Sperling wrote: > > > > That means there is another bug. I will try to

Re: Split-horizon dns

2021-03-27 Thread Gregory Edigarov
just run a second nsd on separate (ip)/port, then use unbound as a router On 3/25/21 12:52 PM, Родин Максим wrote: > Hello, > Is there a way to do split horizon dns using NSD? > I did not find anything similar in man nsd.conf

Layer2 Tunneling Over pppoe(4)

2021-03-27 Thread Valdrin Muja
Hi Misc, Can we set up egre(4), etherip(4) or vxlan(4) tunnel over pppoe ? Sent with [ProtonMail](https://protonmail.com) Secure Email.

Re: Layer2 Tunneling Over pppoe(4)

2021-03-27 Thread Stuart Henderson
On 2021-03-27, Valdrin Muja wrote: > Can we set up egre(4), etherip(4) or vxlan(4) tunnel over pppoe ? Yes, but watch out for MTU problems especially if you have pppoe on one endpoint and ethernet at the other. See pppoe(4) about RFC 4638, if your provider supports this it may be useful. If not

Re: Go programs only using one CPU core

2021-03-27 Thread Otto Moerbeek
On Sat, Mar 27, 2021 at 06:44:52PM +1100, john slee wrote: > Hi, > > > On 2021-03-26, Richard Ulmer wrote: > > > The `go` directive starts a new goroutine, which I would expect to be > > > put into it's own process here. However, using htop(1) I can see, that > > > only one of my two cores gets

Re: Go programs only using one CPU core

2021-03-27 Thread john slee
Hi, > On 2021-03-26, Richard Ulmer wrote: > > The `go` directive starts a new goroutine, which I would expect to be > > put into it's own process here. However, using htop(1) I can see, that > > only one of my two cores gets load. Running the same program on Linux, > > two cores are utilized.