Re: How to use VM as router to other VMs or Host?

2023-03-11 Thread Gleydson Soares
> The idea is to use alpine as a vpn to my host browser.
> I've been able to get PIA wireguard working on alpine vm, and I would like to 
> redirect my host browser through it.

Create a SOCKS tunnel and hook up your browser to proxy traffic through it.

$ ssh -fN -D 1024 vm

Refer to your browser settings to setup the proxy, and make sure of
proxying DNS requests over it as well.

ie. for chromium, 
https://www.chromium.org/developers/design-documents/network-stack/socks-proxy/

gsoares



Re: WhatsApp Web in Chromium under OpenBSD 7.1

2022-05-09 Thread Gleydson Soares
> Now the question is: why WebAssembly is disabled by default under OpenBSD?
> Is there any contraindication to activate it?

do you want to run someone else's binary on your browser?

by disabling WebAssembly, the browser will have less shit running to handle 
therefore decreases
the attack surface.

i prefer enabling it carefully and manually where appropriate, if no 
alternative!



Re: CWM + Web Browser Navigation

2021-04-23 Thread Gleydson Soares
On Fri, Apr 23, 2021 at 08:56:00AM -0400, David Anthony wrote:
> Hello,
> 
> I'm curious how CWM users mange to "Go Back" in Firefox / Chromium when the
> Alt key has been assigned usage within CWM. I've found Alt+LeftArrow was a
> keyboard shortcut I relied upon when browsing the web. Is there a mechanism
> / workaround, or how do others accomplish this?
> 
> Respectfully,
> 
> -David
> 

David,

1. You can remap the alt key to other mod, see cwn(1);
2. Shift+H does not work?
3. maybe adding vimium addon, most of us use it since we hate
mouse at all.

- gsoares



Re: Authenticating Location in HTTPD

2020-10-28 Thread Gleydson Soares
On Wed, Oct 28, 2020 at 09:40:24AM -0400, ben wrote:
> Hello, Misc;
> 
> I'm attempting to configure authentication for a location in httpd...
> 
> server "example.com" {
> listen on * port 80
> root "/htdocs/example.com/"
> location "/" {
> authenticate with "/passwds"

this file should have r bit to "www" group

chown root:www /var/www/passwds && chmod 0640 /var/www/passwds

> }
> }
> 
> However upon navigating to the designated url and entering the password I
> receive the same prompt again and again. I generated the password using
> htpasswd(1) and am storing it in the passwds file in the root of my chroot. Am
> I missing something? Has anyone else encountered this problem? Thank you in
> advance.
> 
> 
> Ben Raskin.
> 



Re: multiple simultaneous X sessions?

2020-08-24 Thread Gleydson Soares
Hi Luke,

On Mon, Aug 24, 2020 at 09:24:35AM -0600, Luke A. Call wrote:
> What would it take for me to run more than one simultanous X session, each 
> as a different user? -- I tried once a few years ago, searching, reading
> man pages, and chasing error messages, and failed at the time.
> Is it known whether it is reasonably possible with the current code?
> 
> (This is so I can take advantage of the privilege separation
> provided by the OS, while doing different activities and programs
> programs with different informal trust levels, as separate
> users, but without the cpu overhead of using "ssh -[X|Y] ...".  This was
> my normal practice in my Debian days, switching among them with
> Ctrl-Alt-FN.)
>  
> Either way, thanks much for any info.
> 
> Luke Call

Maybe you are looking for a nested X11 via Xephyr.

See this script as example [1]

[1] https://github.com/gleydsonsoares/xdroprun



Re: build with DEBUG defined

2019-08-08 Thread Gleydson Soares
yes, it is crystal-clear in bsd.own.mk
Even though maybe the man page and bsd.README should be tweaked, or we should 
handle it in bsd.own.mk for reflecting the current manual. But I think it 
doesn’t worth it,

Sent from my iPhone

> On 8 Aug 2019, at 04:26, Stuart Henderson  wrote:
> 
>> On 2019-08-07, Edgar Pettijohn  wrote:
>> 
>>> On Aug 6, 2019 8:51 PM, Gleydson Soares  wrote:
>>> 
>>>> On Tue, Aug 06, 2019 at 06:55:15PM -0500, Edgar Pettijohn wrote:
>>>> I'm trying to build smtpd with `-g'. I tried the following:
>>>> 
>>>> deathstar$ make -DDEBUG
>>>> ===> smtpd
>>>> yacc  -o parse.c /usr/src/usr.sbin/smtpd/smtpd/../parse.y
>>>> cc -O2 -pipe 1 -fstack-protector-all -I/usr/src/usr.sbin/smtpd/smtpd/.. 
>>>> -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations 
>>>> -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare 
>>>> -Werror-implicit-function-declaration -DIO_TLS -DQUEUE_PROFILING  -MD -MP  
>>>> -c /usr/src/usr.sbin/smtpd/smtpd/../aliases.c
>>>> cc: error: no such file or directory: '1'
>>>> *** Error 1 in smtpd (:87 'aliases.o')
>>>> *** Error 1 in /usr/src/usr.sbin/smtpd (:48 'all')
>>>> 
>>>> I then tried:
>>>> 
>>>> deathstar$ cat /etc/mk.conf
>>>> DEBUG=1
>>>> 
>>>> deathstar$ make
>>>> ===> smtpd
>>>> yacc  -o parse.c /usr/src/usr.sbin/smtpd/smtpd/../parse.y
>>>> cc -O2 -pipe 1 -fstack-protector-all -I/usr/src/usr.sbin/smtpd/smtpd/.. 
>>>> -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations 
>>>> -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare 
>>>> -Werror-implicit-function-declaration -DIO_TLS -DQUEUE_PROFILING  -MD -MP  
>>>> -c /usr/src/usr.sbin/smtpd/smtpd/../aliases.c
>>>> cc: error: no such file or directory: '1'
>>>> *** Error 1 in smtpd (:87 'aliases.o')
>>>> *** Error 1 in /usr/src/usr.sbin/smtpd (:48 'all')
>>>> 
>>>> It builds without DEBUG defined. Any suggestions?
>>> 
>>> DEBUG=-g
>>> see mk.conf manpage.
>>> 
>> 
>> The manual says that defining DEBUG adds -g to assembly not that DEBUG 
>> should be set to -g.  Either way I will give it a shot tomorrow. If it works 
>> seems like the manual could be a little more informative.
> 
> The wording in mk.conf(5) seems a little off, but that is exactly what
> you should do. For a one-off, you can use "make DEBUG=-g" instead of
> setting it in /etc/mk.conf.
> 



Re: build with DEBUG defined

2019-08-06 Thread Gleydson Soares
On Tue, Aug 06, 2019 at 06:55:15PM -0500, Edgar Pettijohn wrote:
> I'm trying to build smtpd with `-g'. I tried the following:
> 
> deathstar$ make -DDEBUG
> ===> smtpd
> yacc  -o parse.c /usr/src/usr.sbin/smtpd/smtpd/../parse.y
> cc -O2 -pipe 1 -fstack-protector-all -I/usr/src/usr.sbin/smtpd/smtpd/.. -Wall 
> -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow 
> -Wpointer-arith -Wcast-qual -Wsign-compare 
> -Werror-implicit-function-declaration -DIO_TLS -DQUEUE_PROFILING  -MD -MP  -c 
> /usr/src/usr.sbin/smtpd/smtpd/../aliases.c
> cc: error: no such file or directory: '1'
> *** Error 1 in smtpd (:87 'aliases.o')
> *** Error 1 in /usr/src/usr.sbin/smtpd (:48 'all')
> 
> I then tried:
> 
> deathstar$ cat /etc/mk.conf
> DEBUG=1
> 
> deathstar$ make
> ===> smtpd
> yacc  -o parse.c /usr/src/usr.sbin/smtpd/smtpd/../parse.y
> cc -O2 -pipe 1 -fstack-protector-all -I/usr/src/usr.sbin/smtpd/smtpd/.. -Wall 
> -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow 
> -Wpointer-arith -Wcast-qual -Wsign-compare 
> -Werror-implicit-function-declaration -DIO_TLS -DQUEUE_PROFILING  -MD -MP  -c 
> /usr/src/usr.sbin/smtpd/smtpd/../aliases.c
> cc: error: no such file or directory: '1'
> *** Error 1 in smtpd (:87 'aliases.o')
> *** Error 1 in /usr/src/usr.sbin/smtpd (:48 'all')
> 
> It builds without DEBUG defined. Any suggestions?

DEBUG=-g
see mk.conf manpage.

> 
> Thanks,
> 
> Edgar
> 



Re: Compilations errors with plan9port on 2018/04/05 snapshot

2018-04-09 Thread Gleydson Soares
On Sun, Apr 08, 2018 at 07:26:50PM -0400, Patrick Marchand wrote:
> On 04/08, Gleydson Soares wrote:
> > Hi Patrick,
> > could you please test this diff?
> > https://marc.info/?l=openbsd-ports=152160090624047=2
> 
> The diff worked, I was able to run plumber, factotum and acme without
> any aborts. 
> 
> Thanks!

i've committed it.
thanks for testing,



Re: is there foomatic-rip for lpd on openBSD 6.3?

2018-04-09 Thread Gleydson Soares
On Mon, Apr 09, 2018 at 04:52:36PM +0200, Rudolf Sykora wrote:
> Hello,
> 
> I want to print from openBSD 6.3. I tried to use lpd and found
> some information on the web about setting up /etc/printcap.
> Many texts use the foomatic-rip program. I can't find one
> in ports. Is there anything instead? What's the recommended
> way to set up printing?

i've been using cups and works.

> 
> Thanks for any comments
> Ruda
> 



Re: Compilations errors with plan9port on 2018/04/05 snapshot

2018-04-08 Thread Gleydson Soares
Hi Patrick,
could you please test this diff?
https://marc.info/?l=openbsd-ports=152160090624047=2



Re: light browsers

2016-05-12 Thread Gleydson Soares
Hi,

On Wed, May 11, 2016 at 7:26 PM,
<3sad68+aivzh013i5...@guerrillamail.com> wrote:
> Hi,
>
> did anyone try Midori or other light browsers with good results ?

I've been using www/luakit for a long time on a thinkpad x40/i386. It
is running fast and works just fine.

html5 support was fixed in -current [1] a few days ago by me and
abieber@ and it works like a charm, so you may to watch videos on
youtube without effort...

If you are looking either that suckless and functional browser, luakit
is over there.

[1] - http://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/www/luakit/Makefile

// gsoares



Re: ftp.openbsd.org was down

2016-05-04 Thread Gleydson Soares
it was disabled. just use http instead.

http://ftp.openbsd.org

On Wed, May 4, 2016 at 12:03 PM, freeunix freeunix  wrote:
> I tried connect to ftp.openbsd.org
>
> ftp -V ftp://ftp.openbsd.org/
> ftp: connect: Connection refused
> ftp: Can't connect or login to host `ftp.openbsd.org'



Re: just a friendly request

2016-01-23 Thread Gleydson Soares
Hi,

> I am looking for tutorials on developing any and every aspect of OpenBSD,
> from bootloaders to device drivers to writing a raspberry pi image of
> OpenBSD.
>
> The more tutorials the better, because it allows the end user to not only
> provide useful feedback to the developers, it allows the user to customize
> their install in a safe and easy manner.
>
> You could post tutorials for writing custom audio and graphics frameworks
> too as I am looking to write a few frameworks myself.
>
> so literally tutorials on any and every aspect of developing openBSD,
> including how to get software to run under openbsd would be great tutorials
> for the entire world of computers.

do you learn how to ride a bike by reading a tutorial ? :)

If you already know C, this is good enough to start reading OpenBSD src/
You will notice a high quality of code and documentation(manpages).



Re: Relayd mail notification

2015-11-26 Thread Gleydson Soares
On Fri, Nov 27, 2015 at 12:56:22AM -0200, Luiz Gustavo Costa wrote:
> Hi list !
> 
> My question is simple, but i can not have a horizon !
> 
> I want to notify by email when a host of redirect or relay list goes
> offline, but could not know where i have to change.
> 
> Where can i get this status change log?
> 
> there is an option "log" in relayctl command, but have not found
> documentation about it.
> 
> Can anyone help me on this ?

the output of `relayctl show summary' isn't enough?

relayd supports send SNMP trap when the state of a host changes.
so it seems easy to integrate with any NMS solution.

// gsoares



Re: www.openbsd.dk is not up to date

2015-07-09 Thread Gleydson Soares
On Thu, Jul 9, 2015 at 6:32 AM, Max Fillinger
maximilian.fillin...@uni-duesseldorf.de wrote:
 However, until 90 minutes ago, openbsd.dk was linked as a mirror on the
 *official* website. I sent the e-mail to either get the mirror admin's
 attention (I could not find his e-mail address) or to get it removed
 from the official website. I thought misc@ would be the right place for
 that.

Oh! sorry, It was linked in main site. sthen@ already removed it.
Thanks for spotting this out.
gsoares



Re: Microsoft Now OpenBSD Foundation Gold Contributor

2015-07-08 Thread Gleydson Soares
Great news !

On Wed, Jul 8, 2015 at 11:12 AM, Kenneth R Westerback
kwesterb...@gmail.com wrote:
 The OpenBSD Foundation is happy to announce that Microsoft has made
 a significant financial donation to the Foundation. This donation
 is in recognition of the role of the Foundation in supporting the
 OpenSSH project. This donation makes Microsoft the first Gold level
 contributor in the OpenBSD Foundation's 2015 fundraising campaign.

 Donations to the Foundation can be made on our Donations Page at

 www.openbsdfoundation.org/donations.html

 We can be contacted regarding corporate sponsorship at

 fundrais...@openbsdfoundation.org.



Re: www.openbsd.dk is not up to date

2015-07-08 Thread Gleydson Soares
OpenBSD's *official* FAQ is up to date and available at:
http://www.openbsd.org/faq/index.html
Just use it.

cheers,
gsoares

On Wed, Jul 8, 2015 at 6:04 PM, Max Fillinger
maximilian.fillin...@uni-duesseldorf.de wrote:
 www.openbsd.dk is not up to date. E.g, www.openbsd.dk/faq/current.html
 has no entries after May 18.



Re: Dual Booting OpenBSD vs Windows7

2015-06-27 Thread Gleydson Soares
This have been documented in FAQ:

http://www.openbsd.org/faq/faq4.html#Multibooting

cheers,
gsoares

Em 27/06/2015 11:11 AM, Mohammad BadieZadegan mbzade...@gmail.com
escreveu:

 Hi,
 I want to dual booting OpenBSD with Windows7 and read many more pages
about
 customizing windows *bcdedit* tools to booting dual OS like
 *http://cromwell-intl.com/linux/multiboot-windows-openbsd/
 http://cromwell-intl.com/linux/multiboot-windows-openbsd/*
 *BUT*, all of these pages nothing changed and could not running dual OS.
 Is that any hints about dual booting OpenBSD vs Windows7?



Re: Missing FAQ 10.16 section

2015-05-20 Thread Gleydson Soares
Felipe Scarel fbsca...@gmail.com writes:

 Hello all,

 I was just reviewing the femail-chroot-1.0p0 post-install README, which reads:

 # cat /usr/local/share/doc/pkg-readmes/femail-chroot-1.0p0 | grep 'By
 default' -A2
 By default, femail will use `localhost' for smtphost.  Make sure to
 review FAQ Section 10.16 discussing name resolution with httpd(8)'s
 default chroot(2).

 Section 10.16 seems missing from the OpenBSD FAQ, though.
 http://www.openbsd.org/faq/faq10.html goes from section 10.15 straight to 
 10.17.

 Regards,
 fbscarel

seems this faq section presumably got removed when somebody was in a rush to
delete apache.

i have been sent a diff that fix femail bits. it is now waiting okan@
(maintainer) ok/review.

Thanks,
gsoares



Re: libfuse - is it real ?

2013-08-06 Thread Gleydson Soares
mike-...@yandex.ru writes:

 Hi!

 Now (in 5.4 and current) libfuse included in source tree,
 but does not included in libs Makefile, is it functional ?
 Just want to try ntfs-3g.

 Mike.

libfuse isn't hooked up yet.

it is a work in progress in active development which still not
completely bug-free.

feel free to hook up and build it yourself
send us possible bugs reports 

thanks.
Gleydson.



Re: Recommended ANSI C language coding standard compliance checker

2012-11-27 Thread Gleydson Soares
+1.

On Wed, Nov 28, 2012 at 12:46 AM, Philip Guenther guent...@gmail.com wrote:
 On Mon, Nov 26, 2012 at 8:10 PM, Tito Mari Francis Escaño
 titomarifran...@gmail.com wrote:
 I'm trying to re-learn ANSI C as part of the effort to write a book for
 beginners or intermediate level. I'm thinking of including the use of ANSI
 C code compliance checker, similar to PHP CodeSniffer, that detects whether
 a given C program file complies with a coding standard. Can you please give
 me pointers what tools OpenBSD developers use for this purpose? I
 understand that indent is used to format a given program file, but how
 about detecting whether a given file is coding standard compliant?

 The only tool *this* OpenBSD developer uses for checking *coding
 standard* compliance is his brain.  For KNF stuff (c.f. style(9)) you
 just read enough of it and the stuff that's wrong starts to stick out.
  But really, that's just the bottom level: syntax is important only
 because it can obscure the semantics.  It's like when reading a book:
 the font it was printed in doesn't matter unless it distracts you from
 the *words*.

 What's important in coding style are things like clarity, portability,
 and efficiency.  While a few aspects of portability can be checked
 mechanically, those mostly have to be checked *and balanced* by a
 brain.


 I recommend the book The Practice of Programming, by Brian W.
 Kernighan and Rob Pike, for those interested in these sorts of
 considerations.


 Philip Guenther



Re: OBSD51: using macros with reply-to

2012-11-01 Thread Gleydson Soares
the syntax should be like this:
pass in on $int_if from VoIP to ! redeOscar route-to ($int_if $cosmo)

On Thu, Nov 1, 2012 at 1:28 PM, Fernando Braga fermbr...@gmail.com wrote:
 Hi,

 I had this pf rules

 int_if = trunk1
 cosmo = 172.16.99.249

 pass in on $int_if from VoIP to ! redeOscar route-to $cosmo@$int_if

 However, when I issue a pfctl -sr, I get

 pass in on trunk1 inet from VoIP to ! redeOscar flags S/SA route-to
 172.16.99.249@$int_if

 Shouldn't this @$int_if be translated to trunk1 ?

 Is there another way to acomplish this ?

 Best regards,

 --
 Fernando M. Braga
 +55 82 9636-2810



Re: all freezes when I move windows in twm

2012-04-18 Thread Gleydson Soares
On Wed, Apr 18, 2012 at 06:29:46PM +0400, Alexei Malinin wrote:
 Hello.
 
 Please give me an advice how to resolve this annoying problem.
 
 At a time when I listen to music on the xmms
 and simultaneously begin to move any X window,
 the sound stops. The sound resumes after finishing
 of moving of the window .
 
 I have i386 OpenBSD-4.9 and twm as the X window manager.
 
 There is no such problem in the same environment
 on i386 OpenBSD-4.2.
 
 
 -- 
 Alexei Malinin


try to upgrade to a most recent openbsd release or -current.
and let us know if the problem still happen.



Re: adding icewm

2012-02-02 Thread Gleydson Soares
cwm, fvwm, twm ?
i like cwm



On Fri, Feb 3, 2012 at 12:29 AM, Richard Thornton
thornton.rich...@gmail.com wrote:
 How do I add this window manager?

 RT



Re: network interface not recognized on Intel S3420GPLC board

2010-03-02 Thread Gleydson Soares
or just to use sendbug to pcidump, dmesg, and acpidump

On Tue, Mar 2, 2010 at 5:07 PM, Tomas Bodzar tomas.bod...@gmail.com wrote:
 pcidump -v and complete dmesg will be more useful for developers

 On Tue, Mar 2, 2010 at 8:07 PM, Ross Davis rda...@ffame.org wrote:
 Ah, I didn't know about that command, here it is:

 # pcidump
 Domain /dev/pci0:
  0:0:0: Intel unknown
  0:5:0: Intel unknown
  0:8:0: Intel unknown
  0:8:1: Intel unknown
  0:8:2: Intel unknown
  0:8:3: Intel unknown
  0:16:0: Intel unknown
  0:16:1: Intel unknown
  0:25:0: Intel unknown
  0:26:0: Intel unknown
  0:28:0: Intel unknown
  0:28:4: Intel unknown
  0:28:6: Intel unknown
  0:28:7: Intel unknown
  0:29:0: Intel unknown
  0:30:0: Intel 82801BA Hub-to-PCI
  0:31:0: Intel unknown
  0:31:2: Intel unknown
  0:31:3: Intel unknown
  0:31:5: Intel unknown
  1:0:0: Intel PRO/1000 MT (82574L)
  3:0:0: Intel PRO/1000 MT (82574L)
  4:0:0: Matrox MGA G200e (ServerEngines)

 On 03/02/2010 02:01 PM, Gleydson Soares wrote:
 can you show the out of the command pcidump !

 On Tue, Mar 2, 2010 at 3:53 PM, Ross Davis rda...@ffame.org wrote:
 I installed OpenBSD 4.6 on an Intel SR1630HGP server that has an Intel
 S3420GPLC board. There are three network interfaces on the server: one
 card, and two on the motherboard.

 The card is recognized:

 em0 at pci1 dev 0 function 0 Intel PRO/1000 MT (82574L) rev 0x00: apic
 8 int 16
  (irq 11), address 00:1b:21:49:8d:8c

 As is one of the interfaces on the board:

 em1 at pci3 dev 0 function 0 Intel PRO/1000 MT (82574L) rev 0x00: apic
 8 int 16
  (irq 10), address 00:15:17:ad:e4:20

 Looking at dmesg, the devices flanking pci3 are:

 ppb1 at pci0 dev 28 function 0 vendor Intel, unknown product 0x3b42
 rev 0x05: a
 pic 8 int 16 (irq 10)
 pci2 at ppb1 bus 2
 ppb2 at pci0 dev 28 function 4 vendor Intel, unknown product 0x3b4a
 rev 0x05
 pci3 at ppb2 bus 3
 em1 at pci3 dev 0 function 0 Intel PRO/1000 MT (82574L) rev 0x00: apic
 8 int 16
  (irq 10), address 00:15:17:ad:e4:20
 ppb3 at pci0 dev 28 function 6 vendor Intel, unknown product 0x3b4e
 rev 0x05
 pci4 at ppb3 bus 4
 vga1 at pci4 dev 0 function 0 Matrox MGA G200e (ServerEngines) rev
0x02

 I would expect there to be an em2 for the second onboard interface,
 but there is none. `ifconfig -a` doesn't show any additional interfaces.

 Any magic hacks I can try to get that second onboard interface working?

 Thanks,
 Ross



 --
 Ross P. Davis
 Software Engineer / IT Specialist
 The Foundation for Applied Molecular Evolution
 Phone: 352.271.7005
 Fax: 352.271.7076
 www.ffame.org





 --
 http://www.openbsd.org/lyrics.html



Re: network interface not recognized on Intel S3420GPLC board

2010-03-02 Thread Gleydson Soares
http://www.openbsd.org/cgi-bin/man.cgi?query=sendbugsektion=1format=html

On Tue, Mar 2, 2010 at 5:11 PM, Gleydson Soares gleyd...@trusted.com.br
wrote:
 or just to use sendbug to pcidump, dmesg, and acpidump

 On Tue, Mar 2, 2010 at 5:07 PM, Tomas Bodzar tomas.bod...@gmail.com
wrote:
 pcidump -v and complete dmesg will be more useful for developers

 On Tue, Mar 2, 2010 at 8:07 PM, Ross Davis rda...@ffame.org wrote:
 Ah, I didn't know about that command, here it is:

 # pcidump
 Domain /dev/pci0:
  0:0:0: Intel unknown
  0:5:0: Intel unknown
  0:8:0: Intel unknown
  0:8:1: Intel unknown
  0:8:2: Intel unknown
  0:8:3: Intel unknown
  0:16:0: Intel unknown
  0:16:1: Intel unknown
  0:25:0: Intel unknown
  0:26:0: Intel unknown
  0:28:0: Intel unknown
  0:28:4: Intel unknown
  0:28:6: Intel unknown
  0:28:7: Intel unknown
  0:29:0: Intel unknown
  0:30:0: Intel 82801BA Hub-to-PCI
  0:31:0: Intel unknown
  0:31:2: Intel unknown
  0:31:3: Intel unknown
  0:31:5: Intel unknown
  1:0:0: Intel PRO/1000 MT (82574L)
  3:0:0: Intel PRO/1000 MT (82574L)
  4:0:0: Matrox MGA G200e (ServerEngines)

 On 03/02/2010 02:01 PM, Gleydson Soares wrote:
 can you show the out of the command pcidump !

 On Tue, Mar 2, 2010 at 3:53 PM, Ross Davis rda...@ffame.org wrote:
 I installed OpenBSD 4.6 on an Intel SR1630HGP server that has an Intel
 S3420GPLC board. There are three network interfaces on the server: one
 card, and two on the motherboard.

 The card is recognized:

 em0 at pci1 dev 0 function 0 Intel PRO/1000 MT (82574L) rev 0x00:
apic
 8 int 16
  (irq 11), address 00:1b:21:49:8d:8c

 As is one of the interfaces on the board:

 em1 at pci3 dev 0 function 0 Intel PRO/1000 MT (82574L) rev 0x00:
apic
 8 int 16
  (irq 10), address 00:15:17:ad:e4:20

 Looking at dmesg, the devices flanking pci3 are:

 ppb1 at pci0 dev 28 function 0 vendor Intel, unknown product 0x3b42
 rev 0x05: a
 pic 8 int 16 (irq 10)
 pci2 at ppb1 bus 2
 ppb2 at pci0 dev 28 function 4 vendor Intel, unknown product 0x3b4a
 rev 0x05
 pci3 at ppb2 bus 3
 em1 at pci3 dev 0 function 0 Intel PRO/1000 MT (82574L) rev 0x00:
apic
 8 int 16
  (irq 10), address 00:15:17:ad:e4:20
 ppb3 at pci0 dev 28 function 6 vendor Intel, unknown product 0x3b4e
 rev 0x05
 pci4 at ppb3 bus 4
 vga1 at pci4 dev 0 function 0 Matrox MGA G200e (ServerEngines) rev
0x02

 I would expect there to be an em2 for the second onboard interface,
 but there is none. `ifconfig -a` doesn't show any additional
interfaces.

 Any magic hacks I can try to get that second onboard interface working?

 Thanks,
 Ross



 --
 Ross P. Davis
 Software Engineer / IT Specialist
 The Foundation for Applied Molecular Evolution
 Phone: 352.271.7005
 Fax: 352.271.7076
 www.ffame.org





 --
 http://www.openbsd.org/lyrics.html



Re: bad address for f...@openbsd.org?

2010-02-26 Thread Gleydson Soares
yes. i already sent it to millert@ alerting about a few days ago. i
guess, he is the sysadmin of the maillists.

On Thu, Feb 25, 2010 at 6:56 PM, Mark Nipper ni...@bitgnome.net wrote:
I got this while trying to e-mail f...@openbsd.org just
 now:
 ---
 The original message was received at Thu, 25 Feb 2010 14:22:51 -0700 (MST)
 from lists.openbsd.org [192.43.244.163]

   - The following addresses had permanent fatal errors -
 joel
(reason: 550 5.1.1 User unknown)
(expanded from: f...@cvs.openbsd.org)

   - Transcript of session follows -
 550 5.1.1 joel... User unknown
 ... while talking to gmail-smtp-in.l.google.com.:
 DATA
  451 4.3.0 Mail server temporarily rejected message. 33si22682393vws.78
 ---

I don't know if that is the only user/address associated
 with that alias, so I'm not sure how important this really is.

Just thought I'd let someone know.  Thanks.

 --
 Mark Nipper
 ni...@bitgnome.net (XMPP)
 +1 979 575 3193
 -
 Any technology distinguishable from magic is insufficiently
 advanced.



Re: how get colour mutt when ssh from OBSD?

2007-09-10 Thread Gleydson Soares
On 9/10/07, Douglas A. Tutty [EMAIL PROTECTED] wrote:
 Hello,

 I have a box that runs OpenBSD that sshes into my Debian box.  On
 OpenBSD, the default colour term is vt220 so when I ssh to debian, TERM
 is set to vt220.

env TERM=xterm-color [EMAIL PROTECTED]



Re: Web mail

2006-07-19 Thread Gleydson Soares
On Wed, Jul 19, 2006 at 07:22:13AM -0500, Eric Johnson wrote:
 Which web mail package is easiest to install and use on
 OpenBSD?  Are there any gaping security holes?
 
 Eric Johnson


http://www.squirrelmail.org/

// gsoares



Re: Web mail

2006-07-19 Thread Gleydson Soares
On Wed, Jul 19, 2006 at 07:26:01PM +0200, FTP wrote:
 one problem though, it doesn't support the maildir format :-(

there is a unofficial/suckz patch/openwebmail to make maildir support at
http://www.agneau.org/openwebmail/

*the squirrelmail is a better choice*

// gsoares



Re: Package configurations

2006-06-09 Thread Gleydson Soares

On 6/9/06, Allen Theobald [EMAIL PROTECTED] wrote:

Hello!

For installing a package how can I tell what the configure
script (./configure) or command line arguments to the build were?

Take care,

Allen
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com




http://www.openbsd.org/faq/faq15.html#PortsFlavors

--
Gleydson Soares
http://gleydson.name



Re: Recommended window manager for OpenBSD

2006-05-31 Thread Gleydson Soares
 On 5/30/06, akonsu [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
  hello
 
  has anyone tried evilwm (http://www.6809.org.uk/evilwm/)? is it any
good?
 Try it yourself. Its one of the smallest wms I have ever used. It
 doesn't do much, but it does all it claims well. I've used it in the
 past when I just wanted a bunch of xterms and I have no complaints.

 -Sam

i am using the fvwm, default on OpenBSD.
you can to try ion3, is a good choice as well.
http://www.modeemi.fi/~tuomov/ion/

gsoares




Re: squid mime-type blocking

2005-10-05 Thread Gleydson Soares
 When I try to allow only a few mime-types, I only get an access denied
 Is there a way ?

yes

 http_access deny !allowed_mime

http_reply_access deny !allowed_mime



Re: How to lock a user in his home.

2005-09-13 Thread Gleydson Soares
On Tue, Sep 13, 2005 at 11:05:20AM -0300, Leonardo Marques wrote:
 Hello people,
 
 I wanna how to lock a user in his home, he cannot see any other
 directory, just his home. Someone how can i do this?
 

ftp ? ssh ? local access ? what is the type access ? 



Re: Snort-Inline with OpenBSD

2005-09-06 Thread Gleydson Soares
 Now my question: Is there any way to install snort with inline functionality
 ??
i dont know, snort inline need netfilter API.
you can to use snortsam. - http://www.snortsam.net