Re: crippled my laptop trying to reclaim root space

2024-06-12 Thread Crystal Kolipe
On Thu, Jun 13, 2024 at 03:47:26AM +0400, shadrock uhuru wrote: > i tried bioctl -c C -l /dev/sd0a softraid0 > which returned the following errors > > softraid0: sd2 was not shutdown properly > softraid0: sd2 was not shutdown properly > bioctl: KDF hint has invalid size You are getting this error

Re: mouse cursor no longer changes over hyperlinks in Firefox on OpenBSD 7.5

2024-06-12 Thread Andy Bradford
Thus said Stuart Henderson on Tue, 11 Jun 2024 21:41:00 -: > > widget.gtk.legacy-cursors.enabled to true > > That is the hack they added that is supposed to undo this change. > It doesn't do anything for me though. I noticed that it worked for me on one system and not another. Both syst

Re: mouse cursor no longer changes over hyperlinks in Firefox on OpenBSD 7.5

2024-06-12 Thread Chris Bennett
On Wed, Jun 12, 2024 at 10:27:15PM -0700, Chris Bennett wrote: > > For fixing problems with tiny pointers in just xterm under fvwm3 I did this: > in .Xresources > XTerm*pointerShape: left_ptr > XTerm*cursorThem: Adwaita Oops XTerm*cursorTheme: Adwaita > Xcursor.size: 32 > > Xcursor.size can be 6

Re: Rate limit the httpd web server for signup requests

2024-06-12 Thread Chris Bennett
On Tue, Jun 11, 2024 at 10:41:33PM +, Martin wrote: > I already do some rate limiting with stateful tracking options for PF, > which works really great for the stuff I use it for. > > I also use block lists of known bad IP addresses etc. > > But what useful methods exists that prevent spammin

Re: mouse cursor no longer changes over hyperlinks in Firefox on OpenBSD 7.5

2024-06-12 Thread Chris Bennett
On Tue, Jun 11, 2024 at 09:41:00PM -, Stuart Henderson wrote: > > On Mon, Jun 10, 2024 at 03:07:24PM -0600, Andy Bradford wrote: > >> Hello, > >> > >> I'm not sure if this is expected behavior or not, but it seems that > >> after upgrading to OpenBSD 7.5 the mouse cursor no longer chang

Re: How to configure vlans with vmm

2024-06-12 Thread jrmu
> TL,DR: add the VLAN interface to the veb device configured in /etc/vm.conf > > It depends a bit on the role you want your vmm host to play in that > network. Everything written below refers to the host, unless otherwise > specified. Thanks. I think I follow the basic idea of the setup. Howev

Re: How to configure vlans with vmm

2024-06-12 Thread jrmu
One more question I forgot to ask: How do you get the virtual machines to use your vport800/vport880 interfaces? From what I see in vm.conf(5), the virtual machines are required to use tap(4) interfaces. -- jrmu IRCNow (https://ircnow.org) signature.asc Description: PGP signature

Re: How to configure vlans with vmm

2024-06-12 Thread jrmu
Thanks for your help. I think I follow your logic. If I understand correctly, each virtual machine needs its own vlan and its own virtual switch? So the host running vmm needs to create N number of vlans for its interface (in your example mcx0) for each of the N vitrual machines, and we need to cr

Re: crippled my laptop trying to reclaim root space

2024-06-12 Thread Brian Conway
On Wed, Jun 12, 2024, at 6:47 PM, shadrock uhuru wrote: > the story start with my root partition being totally out of space which > caused me great problem when i came to using sysupgrade, > most of the space was taken up by the /dev directory, A note on how you got into the original situation w

crippled my laptop trying to reclaim root space

2024-06-12 Thread shadrock uhuru
hi everyone i've managed to cripple my laptop after trying to restore some space on my root partition using techniques based on flawed ideas, the story start with my root partition being totally out of space which caused me great problem when i came to using sysupgrade, most of the space was taken

Re: Rate limit the httpd web server for signup requests

2024-06-12 Thread Dan
Jun 12, 2024 00:56:47 Martin : > A simple CAPTCHA reduces some of the irrelevant noise, but the more > sophisticated bots solves the CAPTCHA. > > Using Cloudflare's or Google's CAPTCHA is frowned upon by the real > users, which I fully understand. > > So I was wondering, if some other clever metho

pf tables questions

2024-06-12 Thread Kapetanakis Giannis
Hi, I have a couple of questions about pf tables. 1) Does it use radix tree and especially Patricia tree? Trying to read the code and searches on web pointed to that. 2) I've found this tool yesterday (iprange) that it's job is to optimize large sets of IPs/Networks https://github.com/firehol/i

Re: Missing vlan interfaces in OPENBSD-PF-MIB::pfIfTable

2024-06-12 Thread Martijn van Duren
On Wed, 2024-06-12 at 08:22 +0300, Kapetanakis Giannis wrote: > On 11/06/2024 15:34, Martijn van Duren wrote: > > On Tue, 2024-06-11 at 14:56 +0300, Kapetanakis Giannis wrote: > > > On 10/06/2024 18:43, Marc Boisis wrote: > > > > Hello, > > > > > > > > I've a 7.5 openBSD router, when I'm asking OP

Re: Rate limit the httpd web server for signup requests

2024-06-12 Thread Rubén Llorente
No perfect solution exists, but the following may help. 1) Parse the logs of your web application and ban any IP that attempts to create multiple accounts. Not great because you may have multiple users sharing the same public IP. It only works ok if you automate it via cronjob scripts. 2) Re