Re: Wg description ifconfig change removed -wgpsk in head?

2023-06-08 Thread Janne Johansson
Seems like it,

http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sbin/ifconfig/ifconfig.c.diff?r1=1.464=1.465=h


Den fre 9 juni 2023 kl 00:09 skrev Bradley Latus :
>
> Hi,
>
>
> Looks like recent diff adding wgdesc accidentally removed -wgpsk entry.
>
> Noticed while looking over recent commits
>
>
> Cheers



-- 
May the most significant bit of your life be positive.



Re: tmux only possible as root and not as normal user in 7.3?

2023-06-08 Thread Anton Konyahin

On 09/06, Thomas Schnell wrote:

Hi there,

I have three new installed machines, that show the same strange behaviour: tmux is only startable as root, if I want to 
start it with command "tmux" as normal user (which is in wheel group, btw), I get the error "no 
sessions", if I try to start it with command "tmux start-server", the error is "no server running 
on /tmp/tmux-1000/default".
On another machine, where OpenBSD has been installed and upgraded since version 
6.7, tmux starts without problems as said user.
I searched FAQ, manpages, www up and down and can not figure out, what goes 
wrong.
Is there anything I missed in manual or release notes? Was there any change in 
tmux startup?
Any hints would be highly appreciated!

thanks in advance
sarag




Do you have any special in your .tmux.conf? The main difference between
root tmux and your own it is a loaded config file.



tmux only possible as root and not as normal user in 7.3?

2023-06-08 Thread Thomas Schnell
Hi there,

I have three new installed machines, that show the same strange behaviour: tmux 
is only startable as root, if I want to start it with command "tmux" as normal 
user (which is in wheel group, btw), I get the error "no sessions", if I try to 
start it with command "tmux start-server", the error is "no server running on 
/tmp/tmux-1000/default".
On another machine, where OpenBSD has been installed and upgraded since version 
6.7, tmux starts without problems as said user.
I searched FAQ, manpages, www up and down and can not figure out, what goes 
wrong.
Is there anything I missed in manual or release notes? Was there any change in 
tmux startup?
Any hints would be highly appreciated!

thanks in advance
sarag




Wg description ifconfig change removed -wgpsk in head?

2023-06-08 Thread Bradley Latus
Hi,


Looks like recent diff adding wgdesc accidentally removed -wgpsk entry.

Noticed while looking over recent commits


Cheers


Re: relayd filter

2023-06-08 Thread Kapetanakis Giannis
On 06/06/2023 16:49, Paul Pace wrote:
> On 6/5/23 3:15 PM, Nick Bouliane wrote:
>> Hi,
>>
>> in relayd.conf I'm trying to do :
>>
>> pass from 192.168.1.1 path "/something.html"
>>
>> If I individually specify the "from" or the "path", it works
>> but when I combine both, it doesn't work.
>
> Nowadays, when I come upon this I just use tags and move on.
>
> Something like this might work:
>
> match path "/something.html" tag something
> pass from 192.168.1.1 tagged something
>
>>
>> Am I missing something or if it's just not possible ?
>> Or is there another way to express this another way ?
>>
>> thank you,
>> Nick

Although this is probably a more elegant solution, relayd also supports 
filtering.

I'm doing this in my http protocol {}

pass quick from _admin_ip_address
block quick path "/admin"
block quick path "/admin.html"
block quick path "/admin/"

G