Re: Memory upgrade

2024-10-17 Thread Philip Guenther
On Thu, Oct 17, 2024 at 2:16 PM Stuart Henderson wrote: > On 2024-10-17, Christian Schulte wrote: > > > > I just don't get the point for trying to support 32bit hardware on a > > 64bit system. If the hardware does not support 64bit but is limited to > > 32bit, use i386. If the hardware supports 6

Re: "Connection refused" for everything except port 80

2024-10-17 Thread Mike
Just read my post it'll answer your questions.. On Fri, Oct 18, 2024, 1:27 AM Jan Stary wrote: > On Oct 17 19:24:54, sunqingyao19970...@icloud.com wrote: > > I am a Ph.D. student at Cornell ORIE. I saw a Dell Optiplex 7050 SFF > lying around in our department and decided to install OpenBSD on it

Re: "Connection refused" for everything except port 80

2024-10-17 Thread Jan Stary
On Oct 17 19:24:54, sunqingyao19970...@icloud.com wrote: > I am a Ph.D. student at Cornell ORIE. I saw a Dell Optiplex 7050 SFF lying > around in our department and decided to install OpenBSD on it. The machine > does not have WiFi connectivity, but there is an RJ45 Ethernet jack, so I > plugged

Re: "Connection refused" for everything except port 80

2024-10-17 Thread Qingyao Sun
Dear Aaron, Thanks for the reply! See inline below. > On Oct 17, 2024, at 22:40, Aaron Mason wrote: > > Do you get the same response when trying to connect to port 443 on the > Windows machine? Yes, the Windows machine can access https://www.google.com/ through the web browser, so it must be

Re: "Connection refused" for everything except port 80

2024-10-17 Thread Mike
It seems like your server is not directly on the internet Do this: In one terminal: doas tcpdump -nettti pflog0 port 443 (This command will literally say BLOCKED or ALLOWED for traffic. It is the absolute best feature of pf when I was using BSD). In a separate window: curl https://google.com

Re: "Connection refused" for everything except port 80

2024-10-17 Thread Aaron Mason
Do you get the same response when trying to connect to port 443 on the Windows machine? A standard config would block it if there isn't a service running on that port that was allowed, resulting in a connection timeout.

Re: "Connection refused" for everything except port 80

2024-10-17 Thread Qingyao Sun
Sorry, forget to CC myself. (Is this the only way to get a reply from the list?) > On Oct 17, 2024, at 19:24, Qingyao Sun wrote: > > Dear List, > > I am a Ph.D. student at Cornell ORIE. I saw a Dell Optiplex 7050 SFF lying > around in our department and decided to install OpenBSD on it. The ma

"Connection refused" for everything except port 80

2024-10-17 Thread Qingyao Sun
Dear List, I am a Ph.D. student at Cornell ORIE. I saw a Dell Optiplex 7050 SFF lying around in our department and decided to install OpenBSD on it. The machine does not have WiFi connectivity, but there is an RJ45 Ethernet jack, so I plugged a cable in, and wrote a standard hostname.em0 wereb

Re: Ncurses vert/horiz lines rendering after upgrade to 7.6

2024-10-17 Thread Jeremy Mates
On 2024-10-17 12:39:22 -0700, Joseph Olatt wrote: > After upgrading to OpenBSD 7.6, the rendering of vertical and horizontal > separator lines in ncurses based application like tmux and cmus seems to > be messed up. I have attached a screenshot to show the issue. A link to > view the screenshot is

Re: Memory upgrade

2024-10-17 Thread Stuart Henderson
On 2024-10-17, Christian Schulte wrote: >> > > I just don't get the point for trying to support 32bit hardware on a > 64bit system. If the hardware does not support 64bit but is limited to > 32bit, use i386. If the hardware supports 64bit, just don't limit it to > 32bit. Does not make sense to me

Ncurses vert/horiz lines rendering after upgrade to 7.6

2024-10-17 Thread Joseph Olatt
Hello. After upgrading to OpenBSD 7.6, the rendering of vertical and horizontal separator lines in ncurses based application like tmux and cmus seems to be messed up. I have attached a screenshot to show the issue. A link to view the screenshot is also available at: https://www.eskimo.com/~joji

Re: clever grep..

2024-10-17 Thread Dan
Thank you both, Mike and Steve, also due to the late time I thought to the most complicated stuff. -Dan Steve Williams : > Mike Fischer wrote: > >> grep "return 301 $host$request_uri" *.conf > > Hi, > > I think you missed the point. > > grep "return 301 $host$request_uri" *.conf > > $host eval

Re: Email Rendering Utility

2024-10-17 Thread Robert B. Carleton
Omar Polo writes: > On 2024/10/17 11:56:31 -0500, "Robert B. Carleton" > wrote: >> I've been hunting around for some kind of utility that I can use from >> mail(1) that can be fed emails on the stdin and convert MIME, TNEF, >> HTML, and the like into text. I haven't had much luck finding that k

Re: Email Rendering Utility

2024-10-17 Thread Omar Polo
On 2024/10/17 11:56:31 -0500, "Robert B. Carleton" wrote: > I've been hunting around for some kind of utility that I can use from > mail(1) that can be fed emails on the stdin and convert MIME, TNEF, > HTML, and the like into text. I haven't had much luck finding that kind > of thing. I'm familiar

Email Rendering Utility

2024-10-17 Thread Robert B. Carleton
I've been hunting around for some kind of utility that I can use from mail(1) that can be fed emails on the stdin and convert MIME, TNEF, HTML, and the like into text. I haven't had much luck finding that kind of thing. I'm familiar with mpack from packages, but I'm looking for something that can h

Re: Memory upgrade

2024-10-17 Thread Christian Schulte
On 10/17/24 18:10, Christian Schulte wrote: > On 10/17/24 17:03, Stuart Henderson wrote: >> On 2024-10-17, Christian Schulte wrote: >>> On 10/17/24 09:40, Stuart Henderson wrote: On 2024-10-16, Christian Schulte wrote: > > No. That's what seems to went wrong when going from i386 to a

Re: clever grep..

2024-10-17 Thread Steve Williams
On 13/10/2024 9:44 p.m., Mike Fischer wrote: grep "return 301 $host$request_uri" *.conf Hi, I think you missed the point. grep "return 301 $host$request_uri" *.conf $host evaluates to the empty string $request_uri evaluates to the empty string resulting in: grep "return 301 " *.conf You wa

Re: Network card not seen (not even from dmesg)

2024-10-17 Thread Dave Voutila
Jan Stary writes: > On Oct 16 23:46:22, d1.and...@icloud.com wrote: >> OpenBSD running on a MacBook Pro (M1, 2020). >> It’s not about the drivers, I don’t even see the wifi card at the dmesg! >> The strange fact is that on previous installations everything went >> smoothly, I installed OpenBSD an

Re: Memory upgrade

2024-10-17 Thread Christian Schulte
On 10/17/24 17:03, Stuart Henderson wrote: > On 2024-10-17, Christian Schulte wrote: >> On 10/17/24 09:40, Stuart Henderson wrote: >>> On 2024-10-16, Christian Schulte wrote: No. That's what seems to went wrong when going from i386 to amd64. The 3GB hard limit of i386 was in the ra

Re: ipsecctl -s & no traffic flow across enc0

2024-10-17 Thread Boyd Stephens
On 10/2/24 12:11, Boyd Stephens wrote: On 9/28/24 04:10, Janne Johansson wrote: Den fre 27 sep. 2024 kl 20:05 skrev Boyd Stephens : I desired to destroy and recreate enc0 but if memory serves me correctly the enc0 interface always exists and cannot be destroyed using ifconfig.    I have inferr

Re: Memory upgrade

2024-10-17 Thread Stuart Henderson
On 2024-10-17, Christian Schulte wrote: > On 10/17/24 09:40, Stuart Henderson wrote: >> On 2024-10-16, Christian Schulte wrote: >>> >>> No. That's what seems to went wrong when going from i386 to amd64. >>> The 3GB hard limit of i386 was in the range of available physical >>> memory (4GB) without

Re: Network card not seen (not even from dmesg)

2024-10-17 Thread Jan Stary
On Oct 16 23:46:22, d1.and...@icloud.com wrote: > OpenBSD running on a MacBook Pro (M1, 2020). > It’s not about the drivers, I don’t even see the wifi card at the dmesg! > The strange fact is that on previous installations everything went smoothly, > I installed OpenBSD and then the bwi firmware d

Re: multicast relay?

2024-10-17 Thread Stuart Henderson
On 2024-10-17, Nick Owens wrote: >> What piece of software would relay the broadcasts and multicasts. >> Also those rewrites would be nice as some devices are a little bit picky >> about the packets. > > for mDNS, avahi-daemon allows this in some form via the > `enable-reflector` option in the co

Re: Memory upgrade

2024-10-17 Thread Christian Schulte
On 10/17/24 09:40, Stuart Henderson wrote: > On 2024-10-16, Christian Schulte wrote: >> >> No. That's what seems to went wrong when going from i386 to amd64. >> The 3GB hard limit of i386 was in the range of available physical >> memory (4GB) without swap. The 128GB on amd64 do not. Changing this

Re: multicast relay?

2024-10-17 Thread Zé Loff
On Wed, Oct 16, 2024 at 10:26:38PM -0700, Nick Owens wrote: > On Wed, Oct 16, 2024 at 3:57 PM Hannu Vuolasaho wrote: > > > > Hello everyone, > > > > I'm trying to get mDNS and other multicast protocols from IoT LAN to > > computer LAN. > > I did this with Linux with https://github.com/marjohn56/u

Re: Memory upgrade

2024-10-17 Thread Stuart Henderson
On 2024-10-16, Christian Schulte wrote: > > No. That's what seems to went wrong when going from i386 to amd64. The > 3GB hard limit of i386 was in the range of available physical memory > (4GB) without swap. The 128GB on amd64 do not. Changing this to what > "memory" reads, makes no difference, th