pf and aliases

2006-02-04 Thread David Newman
Looking for guidance on pf and aliases. I have an OBSD 3.8 box running 
pf in front of two SMTP servers.


Here's my setup:


Net - 1.2.3.4- pf box - box1 9.8.7.6
   1.2.3.5 (alias)-- box2 9.8.7.7


Problem is, pf sends all requests to box1, even those addressed to 1.2.3.5.

Here are the relevant bits from pf.conf:

ExtIf=xl1
ExtIfa=1.2.3.5
IntIf=xl0

box1=9.8.7.6
box2=9.8.7.7

nat on $ExtIf from $IntIf:network to any - ($ExtIf)

rdr on $ExtIfa inet proto tcp from any to $ExtIfa port 25 - $box2
rdr on $ExtIf inet proto tcp from any to $ExtIf port 25 - $box1

pass in quick on $ExtIfa proto tcp from any to $box2 \
port 25 flags S/SA keep state
pass in quick on $ExtIf proto tcp from any to $box1 \
port 25 flags S/SA keep state

Again, I'm looking to get requests to two public addresses mapped to two 
private addresses. Right now, everything goes to the box1.


Thanks in advance for clues on this.

dn



Re: nmap Issue on 3.8-release?

2006-02-04 Thread Tobias Ulmer
On Fri, Feb 03, 2006 at 10:02:32PM -0500, Melameth, Daniel D. wrote:
 I don't get it--it appears nmap is broken.  Perhaps I'm overlooking
 something obvious, but any thoughts appreciated...
 
 
 An nmap scan gives me this:
 
 $ sudo nmap 208.139.x.x
 
 Starting nmap 3.81 ( http://www.insecure.org/nmap/ ) at 2006-02-03 19:45
 MST
 Note: Host seems down. If it is really up, but blocking our ping probes,
 try -P0
 Nmap finished: 1 IP address (0 hosts up) scanned in 2.109 seconds
 
 Which I follow up with a:
 
 $ ping -c 5 208.139.x.x
 PING 208.139.x.x (208.139.x.x): 56 data bytes
 64 bytes from 208.139.x.x: icmp_seq=0 ttl=239 time=91.979 ms
 64 bytes from 208.139.x.x: icmp_seq=1 ttl=239 time=84.497 ms
 64 bytes from 208.139.x.x: icmp_seq=2 ttl=239 time=82.354 ms
 64 bytes from 208.139.x.x: icmp_seq=3 ttl=239 time=87.825 ms
 64 bytes from 208.139.x.x: icmp_seq=4 ttl=239 time=85.699 ms
 --- 208.139.x.x ping statistics ---
 5 packets transmitted, 5 packets received, 0.0% packet loss
 round-trip min/avg/max/std-dev = 82.354/86.470/91.979/3.295 ms
 
 Running while the above is happening, tcpdumps yield:
 
 $ sudo tcpdump -nqi pppoe0 src host 208.139.x.x and dst host 209.180.x.x
 tcpdump: listening on pppoe0, link-type PPP_ETHER
 19:45:49.671358 208.139.x.x  209.180.x.x: icmp: 0 0
 19:45:49.674068 208.139.x.x.80  209.180.x.x.57989: tcp 0 (DF)
 19:45:50.683407 208.139.x.x  209.180.x.x: icmp: 0 0
 19:45:50.691346 208.139.x.x.80  209.180.x.x.57985: tcp 0 (DF)
 19:46:00.565862 208.139.x.x  209.180.x.x: icmp: 0 0
 19:46:01.565834 208.139.x.x  209.180.x.x: icmp: 0 0
 19:46:02.573631 208.139.x.x  209.180.x.x: icmp: 0 0
 19:46:03.589132 208.139.x.x  209.180.x.x: icmp: 0 0
 19:46:04.596986 208.139.x.x  209.180.x.x: icmp: 0 0
 
 $ sudo tcpdump -qni pflog0
 tcpdump: WARNING: pflog0: no IPv4 address assigned
 tcpdump: listening on pflog0, link-type PFLOG
 
 
 I'm not certain where to look next.
 


This is normal behaviour (at least with the many 3.* versions I have 
used). Nmap checks for open ports like http (look at your tcpdump 
output) and does not always rely on icmp.  Nothing OpenBSD
specific, you have that on a linux box, too.

Tobias 



Re: nmap Issue on 3.8-release?

2006-02-04 Thread Melameth, Daniel D.
Sorry if I wasn't clear--I agree.  The issue here is not the behavior of
nmap, but the fact that nmap does not see the icmp and http responses
from the target and assumes the host is offline.

Tobias Ulmer wrote:
 On Fri, Feb 03, 2006 at 10:02:32PM -0500, Melameth, Daniel D. wrote:
  I don't get it--it appears nmap is broken.  Perhaps I'm overlooking
  something obvious, but any thoughts appreciated...
  
  
  An nmap scan gives me this:
  
  $ sudo nmap 208.139.x.x
  
  Starting nmap 3.81 ( http://www.insecure.org/nmap/ ) at 2006-02-03
  19:45 MST Note: Host seems down. If it is really up, but blocking
  our ping probes, try -P0 Nmap finished: 1 IP address (0 hosts up)
  scanned in 2.109 seconds 
  
  Which I follow up with a:
  
  $ ping -c 5 208.139.x.x
  PING 208.139.x.x (208.139.x.x): 56 data bytes
  64 bytes from 208.139.x.x: icmp_seq=0 ttl=239 time=91.979 ms
  64 bytes from 208.139.x.x: icmp_seq=1 ttl=239 time=84.497 ms
  64 bytes from 208.139.x.x: icmp_seq=2 ttl=239 time=82.354 ms
  64 bytes from 208.139.x.x: icmp_seq=3 ttl=239 time=87.825 ms
  64 bytes from 208.139.x.x: icmp_seq=4 ttl=239 time=85.699 ms
  --- 208.139.x.x ping statistics ---
  5 packets transmitted, 5 packets received, 0.0% packet loss
  round-trip min/avg/max/std-dev = 82.354/86.470/91.979/3.295 ms
  
  Running while the above is happening, tcpdumps yield:
  
  $ sudo tcpdump -nqi pppoe0 src host 208.139.x.x and dst host
  209.180.x.x tcpdump: listening on pppoe0, link-type PPP_ETHER
  19:45:49.671358 208.139.x.x  209.180.x.x: icmp: 0 0
  19:45:49.674068 208.139.x.x.80  209.180.x.x.57989: tcp 0 (DF)
  19:45:50.683407 208.139.x.x  209.180.x.x: icmp: 0 0
  19:45:50.691346 208.139.x.x.80  209.180.x.x.57985: tcp 0 (DF)
  19:46:00.565862 208.139.x.x  209.180.x.x: icmp: 0 0
  19:46:01.565834 208.139.x.x  209.180.x.x: icmp: 0 0
  19:46:02.573631 208.139.x.x  209.180.x.x: icmp: 0 0
  19:46:03.589132 208.139.x.x  209.180.x.x: icmp: 0 0
  19:46:04.596986 208.139.x.x  209.180.x.x: icmp: 0 0
  
  $ sudo tcpdump -qni pflog0
  tcpdump: WARNING: pflog0: no IPv4 address assigned
  tcpdump: listening on pflog0, link-type PFLOG
  
  
  I'm not certain where to look next.
 
 This is normal behaviour (at least with the many 3.* versions I have
 used). Nmap checks for open ports like http (look at your tcpdump
 output) and does not always rely on icmp.  Nothing OpenBSD
 specific, you have that on a linux box, too.



Re: pf and aliases

2006-02-04 Thread Melameth, Daniel D.
man pf.conf

xl1 represents all the IPs on x1 so either use the IP specifically or
use xl1:0

David Newman wrote:
 Looking for guidance on pf and aliases. I have an OBSD 3.8 box running
 pf in front of two SMTP servers.
 
 Here's my setup:
 
 
 Net - 1.2.3.4- pf box - box1 9.8.7.6
 1.2.3.5 (alias)-- box2 9.8.7.7
 
 
 Problem is, pf sends all requests to box1, even those addressed to
 1.2.3.5. 
 
 Here are the relevant bits from pf.conf:
 
 ExtIf=xl1
 ExtIfa=1.2.3.5
 IntIf=xl0
 
 box1=9.8.7.6
 box2=9.8.7.7
 
 nat on $ExtIf from $IntIf:network to any - ($ExtIf)
 
 rdr on $ExtIfa inet proto tcp from any to $ExtIfa port 25 - $box2
 rdr on $ExtIf inet proto tcp from any to $ExtIf port 25 - $box1
 
 pass in quick on $ExtIfa proto tcp from any to $box2 \
  port 25 flags S/SA keep state
 pass in quick on $ExtIf proto tcp from any to $box1 \
  port 25 flags S/SA keep state
 
 Again, I'm looking to get requests to two public addresses mapped to
 two private addresses. Right now, everything goes to the box1.



note

2006-02-04 Thread Taylors234
Hello,

Dr. Judd's research  works! The dental profession, as it is 
currently, $ drilling for dollars. BEWARE when you go to the dentist office 
a 
lot of them steal right out of your mouth!l Report it!

Patricia



Re: SpamD, Postfix and mobile users

2006-02-04 Thread Nils.Reuvers
Thanks for all the advice.

I've setup TLS on port 587 like Peter suggested and it's working great.

Only thing you have to keep in mind when you use Microsoft Outlook. It
needs a restart after the e-mail account settings change. Go figure :).

Thanks again guys.

Nils

-Original Message-
From: Peter Hessler [mailto:[EMAIL PROTECTED] 
Sent: vrijdag 3 februari 2006 20:44
To: [EMAIL PROTECTED]
Subject: Re: SpamD, Postfix and mobile users

Have them send to port 587.  That will bypass greylisting, as well as
port 25 blocking.

enable the following line in your master.cf file.
submission inet n  - - - - smtpd -o smtpd_enforce_tls=yes -o
smtpd_sasl_auth_enable=yes



On Fri, 3 Feb 2006 20:07:18 +0100
[EMAIL PROTECTED] wrote:

: Hi all,
: 
: I'm running Postfix 2.3.20050716-sasl2 (chrooted) and
: cyrus-sasl-2.1.20p4 on OpenBSD 3.8 stable. Everything is running
: peachy. My roaming users are able to connect and send e-mail.
: Now I wish to enable the fantastic SpamD feature in OpenBSD. However,
: I'm foreseeing a problem. I do not want my roaming users to be
: greylisted every time they send e-mail. They are roaming and do not
: have a static IP.
: 
: Is there a way for SASL authenticated users to bypass the SpamD
: daemon?
: 
: Thanks for your thoughts.
: 
: Nils
: 
:

=
: A disclaimer applies to this email and any attachments. 
: Refer to http://www.sparkholland.com/emaildisclaimer for the full
: text of this disclaimer.
: 


--
The human mind ordinarily operates at only ten percent of its capacity
-- the rest is overhead for the operating system.



Re: Inappropriate processes being 'stopped' when the system is busy.. - mystery solved.

2006-02-04 Thread Andrew Smith
I had built and installed dbus to test some things.

It seems that there is a feature that dbus tries to help the system out by
suspending processes with -STOP when a user changes away from a vt and an
issue where this sometimes happens even when the user doesn't switch VTs..
unfortunately when this happens the processes don't get a -CONT signal so
stay in a stopped state.

dbus is now off again and the issue is gone.

- Andy

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
Andrew Smith
Sent: 03 February 2006 12:12
To: misc@openbsd.org
Subject: Inappropriate processes being 'stopped' when the system is busy..

Hi,

 

I'm wondering if anyone can make a suggestion here.

 

I have been pushing my X server on my Zaurus, logged in as a regular user
whilst running a large compile in the background. This is really to test the
stability of the ws_drv patches that just came through on [EMAIL PROTECTED]

 

In doing this I ran up xfce4 and loaded AbiWord as a regular user to
generate some system load from that session.

 

What I noticed after a couple of mins (with a large port compile going on as
root from an ssh session) was that AbiWord, xfwm, xfce-panel, xfce-desktop
etc.. had all been put into a 'stop' state on the process list.

 

I can understand that the system may want to do this for certain processes
to protect against thrashing but I honestly don't have a clear idea about
what part of the system does this and if it is configurable.

 

Strictly speaking I would have thought that you don't want X Window Manager
processes like xfwm being put into a stopped state at all so I was wondering
if there is a way of flagging (or listing) processes which should never be
kill -STOP'ed by whatever is doing this.

 

I ended up having to kill -STOP my compilation, kill -CONT all my user
processes to wake em up and log out then kill -CONT my compilation to
continue in the end. I suppose it may be possible to do this from a second
vt if it's not convenient to go in over the network but maybe not always.

 

So is this a configurable feature??

 

(apologies if you think this should be in [EMAIL PROTECTED])

 

- Andy



Re: OpenBSD hardware router

2006-02-04 Thread Claudio Jeker
On Fri, Feb 03, 2006 at 07:32:31PM -0500, Chris Zakelj wrote:
 Joe S wrote:
  Be careful with Soekris. While DSL speed is stuck at 1.5 MB for you,
  many users are getting 6MB and higher is some parts of the world. It
  would not be advantageous to buy something like a soekris and grow out
  of it in 2 years when your ISP gets around to offering REAL speeds.
 Has anyone ever actually pushed a Soekris all out to see when it begins
 to choke?  If so, where did it/they top out?  It's great to remind us
 yanks that our residential broadband sucks compared to EUR and asia, but
 as you say, we'll catch up eventually.
 

It maxes out at around 50Mbps doing just forwarding (no filtering).
And this is with a 4801 (the fastest soekris (266MHz)).
I don't think that better interfaces matter that much. The HW seems to max
out around 10-12k interrupts per second (forwarding 5000 packets/sec).
Perhaps you can reduce the number of interrupts with fxp(4) that do
interrupt mitigation but I did not test it.

-- 
:wq Claudio



Re: OpenBSD hardware router

2006-02-04 Thread Stuart Henderson
On 2006/02/03 20:34, Josh Tolley wrote:
 All that being said, we 1) didn't have an encryption accelerator
 in the box

that would tend to make things worse anyway - you'll just increase the
rate of interrupts and that seems to be the main problem.



Is unix domain UDP reliable?

2006-02-04 Thread Alexander Farber
Do datagrams arrive in order and without loss
when using unix domain on OpenBSD?



Re: About a USB CD-RW (USB 2.0) drive. Firefox/Mozilla security problems

2006-02-04 Thread Joachim Schipper
On Fri, Feb 03, 2006 at 09:01:57PM -0500, Nick Guenther wrote:
 I saw on Secunia Advisories that very heavy security problems have
  occured in Mozilla Firefox and Thunderbird.
  Usually WHO is patching these programs (the porters?)? Should I wait for
  a new binary port? Should I patch myself
  Thunderbird and Firefox? Patches come from porters or from Mozilla
  Foundation?
 
 The +DESC file says just 'Maintainer: The OpenBSD ports mailing-list
 ports@openbsd.org' so I'm guessing that means no one in particular.
 it seems like your only option is to use ports to get the source (I
 assume) and then patch by hand.

Nah, keep up with -stable and you'll get the important fixes. Keep up
with -current, and you get both all the newest fixes and the newest
bugs.

However, unless you decide to keep at -release, there's no reason to
patch by hand. And even if you do, just import the patches from -stable.

The ports system usually incorporates the official patches. Only when
there is a very good reason to patch something quickly, and the official
patch isn't fast enough, a known issue is patched only by OpenBSD.

Of course, this is different from the patches used to make something
build at all and fix into the ports system - those typically are
OpenBSD-specific.

Joachim



Re: nmap Issue on 3.8-release?

2006-02-04 Thread Joachim Schipper
On Fri, Feb 03, 2006 at 10:02:32PM -0500, Melameth, Daniel D. wrote:
 I don't get it--it appears nmap is broken.  Perhaps I'm overlooking
 something obvious, but any thoughts appreciated...
 
 
 An nmap scan gives me this:
 
 $ sudo nmap 208.139.x.x
 
 Starting nmap 3.81 ( http://www.insecure.org/nmap/ ) at 2006-02-03 19:45
 MST
 Note: Host seems down. If it is really up, but blocking our ping probes,
 try -P0
 Nmap finished: 1 IP address (0 hosts up) scanned in 2.109 seconds
 
 Which I follow up with a:
 
 $ ping -c 5 208.139.x.x
 PING 208.139.x.x (208.139.x.x): 56 data bytes
 64 bytes from 208.139.x.x: icmp_seq=0 ttl=239 time=91.979 ms
 64 bytes from 208.139.x.x: icmp_seq=1 ttl=239 time=84.497 ms
 64 bytes from 208.139.x.x: icmp_seq=2 ttl=239 time=82.354 ms
 64 bytes from 208.139.x.x: icmp_seq=3 ttl=239 time=87.825 ms
 64 bytes from 208.139.x.x: icmp_seq=4 ttl=239 time=85.699 ms
 --- 208.139.x.x ping statistics ---
 5 packets transmitted, 5 packets received, 0.0% packet loss
 round-trip min/avg/max/std-dev = 82.354/86.470/91.979/3.295 ms
 
 Running while the above is happening, tcpdumps yield:
 
 $ sudo tcpdump -nqi pppoe0 src host 208.139.x.x and dst host 209.180.x.x
 tcpdump: listening on pppoe0, link-type PPP_ETHER
 19:45:49.671358 208.139.x.x  209.180.x.x: icmp: 0 0
 19:45:49.674068 208.139.x.x.80  209.180.x.x.57989: tcp 0 (DF)
 19:45:50.683407 208.139.x.x  209.180.x.x: icmp: 0 0
 19:45:50.691346 208.139.x.x.80  209.180.x.x.57985: tcp 0 (DF)
 19:46:00.565862 208.139.x.x  209.180.x.x: icmp: 0 0
 19:46:01.565834 208.139.x.x  209.180.x.x: icmp: 0 0
 19:46:02.573631 208.139.x.x  209.180.x.x: icmp: 0 0
 19:46:03.589132 208.139.x.x  209.180.x.x: icmp: 0 0
 19:46:04.596986 208.139.x.x  209.180.x.x: icmp: 0 0
 
 $ sudo tcpdump -qni pflog0
 tcpdump: WARNING: pflog0: no IPv4 address assigned
 tcpdump: listening on pflog0, link-type PFLOG
 
 
 I'm not certain where to look next.

Look into what the return packets actually contain. If, for instance,
the remote end is a OpenBSD firewall that has been configured explicitly
to drop nmap (using pf's passive OS recognition feature, for instance),
you'd see exactly what you see now.
(Discarding OpenBSD for a while, almost any decent firewall can be
configured to drop traffic that looks like it came from nmap.)

And the return packets are not too useful - is that first icmp packet an
echo reply or a destination-unreachable notice? And the TCP packet - is
it a SYN/ACK or RST packet?

Joachim



sunfire v120 net installation problem

2006-02-04 Thread Chris B
Hi all,
I'm trying to install 3.8 on a sunfire v120

I am able to net boot it from an i386 using linux and openbsd38.
Things seem ok up to booting bsd.rd, but then output stops after:
..
rd0: fixed, 6144 blocks
root on rd0a
rootdev=0x500 rrootdev=0x3d00 rawdev=0x3d02
(note that the last 2 lines take a long time to come up)

The samsung removable cd0 recognised below by bsd is not usable for
booting since openboot's probe-ide shows all 4 devices as Not Present
and so:
ok boot cdrom fails.

The only output i can provide is the serial console log:
==
lompoweron
lom
LOM event: +2h14m38s host power on

Sun Fire V120 (UltraSPARC-IIe 648MHz), No Keyboard
OpenBoot 4.0, 1024 MB memory installed, Serial #53825868.
Ethernet address 0:3:ba:35:51:4c, Host ID: 8335514c.


ok boot net bsd.rd
Boot device: /pci'1f,0/pci'1,1/network'c,1  File and args: bsd.rd
Timeout waiting for ARP/RARP packet
10800  OpenBSD 3.8 (obj) #1: Thu Sep  1 17:32:43 MDT 2005
   
deraadt'sparc64.openbsd.org:/usr/src/sys/arch/sparc64/stand/ofwboot.net/obj
Using BOOTPARAMS protocol: ip address: 10.0.0.200, hostname: sunny
root addr=10.0.0.118 path=/export
Booting /pci'1f,0/pci'1,1/network'c,1/bsd.rd
2325112'0x100+3256616'0x180+937688'0x1b1b128 
symbols ' 0xfff44200 42 start=0x100
console is /pci'1f,0/pci'1,1/isa'7/serial'0,3f8
Copyright (c) 1982, 1986, 1989, 1991, 1993
The Regents of the University of California.  All rights
reserved.
Copyright (c) 1995-2005 OpenBSD. All rights reserved. 
http://www.OpenBSD.org

OpenBSD 3.8 (RAMDISK) #459: Sat Sep 10 16:41:34 MDT 2005
   
deraadt'sparc64.openbsd.org:/usr/src/sys/arch/sparc64/compile/RAMDISK
total memory = 1073741824
avail memory = 971956224
using 6553 buffers containing 53682176 bytes of memory
bootpath: /pci'1f,0/pci'1,1/network'c,1
mainbus0 (root): Sun Fire V120 (UltraSPARC-IIe 648MHz)
cpu0 at mainbus0: SUNW,UltraSPARC-IIe ' 648 MHz, version 0 FPU
cpu0: physical 32K instruction (32 b/l), 16K data (32 b/l), 2048K
external (64 b/l)
psycho0 at mainbus0
SUNW,sabre: impl 0, version 0: ign 7c0 bus range 0 to 3; PCI bus 0
DVMA map: c000 to e000
IOTDB: 4d02000 to 4d82000
pci0 at psycho0
ppb0 at pci0 dev 1 function 1 vendor 0x108e product 0x5000 rev 0x13
pci1 at ppb0 bus 1
ebus0 at pci1 dev 12 function 0 vendor 0x108e product 0x1100 rev 0x01
flashprom at ebus0 addr 0-f not configured
clock1 at ebus0 addr 0-1fff: mk48t59: hostid 8335514c
ebus_attach: idprom: incomplete
SUNW,lomh at ebus0 addr 20-23 ipl 42 not configured
gem0 at pci1 dev 12 function 1 vendor 0x108e product 0x1101 rev 0x01:
ivec 3006, address 00:03:ba:35:51:4c
ukphy0 at gem0 phy 1: Generic IEEE 802.3u media interface
ukphy0: OUI 0x0010dd, model 0x0002, rev. 1
ohci0 at pci1 dev 12 function 3 vendor 0x108e product 0x1103 rev 0x01:
ivec 24, version 1.0, legacy support
usb0 at ohci0: USB revision 1.0
uhub0 at usb0
uhub0: vendor 0x108e OHCI root hub, rev 1.00/1.00, addr 1
uhub0: 4 ports with 4 removable, self powered
vendor 0x10b9 product 0x7101 (class prehistoric subclass miscellaneous,
rev 0x00) at pci1 dev 3 function 0 not configured
vendor 0x10b9 product 0x7101 (class prehistoric subclass miscellaneous,
rev 0x00) at pci1 dev 3 function 0 not configured
ebus1 at pci1 dev 7 function 0 vendor 0x10b9 product 0x1533 rev 0x00
power at ebus1 addr 2000-2007 ipl 37 not configured
com0 at ebus1 addr 3f8-3ff ipl 43: ns16550a, 16 byte fifo
com0: console
com1 at ebus1 addr 2e8-2ef ipl 43: ns16550a, 16 byte fifo
pciide0 at pci1 dev 13 function 0 vendor 0x10b9 product 0x5229 rev
0xc3: DMA, channel 0 configured to native-PCI, channel 1 configured to
native-PCI
pciide0: using ivec 180c for native-PCI interrupt
atapiscsi0 at pciide0 channel 0 drive 1
scsibus0 at atapiscsi0: 2 targets
cd0 at scsibus0 targ 0 lun 0: SAMSUNG, CD-ROM SN-124, N102 SCSI0
5/cdrom removable
cd0(pciide0:0:1): using PIO mode 4, Ultra-DMA mode 2
pciide0: channel 1 disabled (no drives)
gem1 at pci1 dev 5 function 1 vendor 0x108e product 0x1101 rev
0x01interrupt_vector: spurious vector 7df at pil 13
: ivec 301c, address 00:03:ba:35:51:4d
ukphy1 at gem1 phy 1: Generic IEEE 802.3u media interface
ukphy1: OUI 0x0010dd, model 0x0002, rev. 1
ohci1 at pci1 dev 5 function 3 vendor 0x108e product 0x1103 rev 0x01:
ivec 26, version 1.0, legacy support
usb1 at ohci1: USB revision 1.0
uhub1 at usb1
uhub1: vendor 0x108e OHCI root hub, rev 1.00/1.00, addr 1
uhub1: 4 ports with 4 removable, self powered
ppb1 at pci0 dev 1 function 0 vendor 0x108e product 0x5000 rev 0x13
pci2 at ppb1 bus 2
siop0 at pci2 dev 8 function 0 vendor 0x1000 product 0x000b rev 0x07:
ivec 1820, using 8K of on-board RAM
scsibus1 at siop0: 16 targets
sd0 at scsibus1 targ 0 lun 0: FUJITSU, MAP3367N SUN36G, 0301 SCSI4
0/direct fixed
sd0: 34732MB, 24622 cyl, 27 head, 107 sec, 512 bytes/sec, 71132959 sec
total
siop1 at pci2 dev 8 function 1 vendor 0x1000 product 0x000b rev 0x07:
ivec 1820, using 8K of on-board RAM
scsibus2 at siop1: 

Re: Is unix domain UDP reliable?

2006-02-04 Thread Andreas Kahari
On 04/02/06, Alexander Farber [EMAIL PROTECTED] wrote:
 Do datagrams arrive in order and without loss
 when using unix domain on OpenBSD?



I think it's safest to say that when you use SOCK_DGRAM, you get
unreliable messages.  The socket(2) manual says so and unix(4) doesn't
say otherwise for the UNIX domain.

--
Andreas Kahari



Re: OpenBSD hardware router

2006-02-04 Thread Claudio Jeker
On Sat, Feb 04, 2006 at 11:25:15AM +, Stuart Henderson wrote:
 On 2006/02/03 20:34, Josh Tolley wrote:
  All that being said, we 1) didn't have an encryption accelerator
  in the box
 
 that would tend to make things worse anyway - you'll just increase the
 rate of interrupts and that seems to be the main problem.
 

If you plan to do extensive crypto on a soekris then you better add an
encryption accelerator to the box because the little CPU is not capable of
doing more than 8MB of AES-128 per second (tested via openssl speed).
With scp I never got more than 1MB/s throughput.
The soekris has such a slow CPU that any kind of work is expensive.
Forwarding packets does not need a lot of CPU power and even in this case
the soekris CPU is maxed out. In this specific case it seems that the
interrupt processing spends the most time on the CPU (so one should try to
optimise that part to get more forwarding speed).

-- 
:wq Claudio



trunk with virtual interfaces

2006-02-04 Thread Celso Fernandes
I would like to know why I can't trunk virtual interfaces on 3.8 realease?
what is the real reason for this? I took a look at the trunk manual, but I
found nothing.. thanks in any way.



Any conclusions on the uvisor STALLED status with CLIE devices?

2006-02-04 Thread Andrew Smith
I have an old CLIE PEG-T625C device that I have been trying to make work
with the uvisor driver to get ucom endpoints mapped to cuaUx with a USB
cable.

 

The device IDs itself to the driver (based upon the standard table in the
driver) as USB_PRODUCT_SONY_CLIE_40 which is mapped to the PALM4 handler,
however, when the usbd_do_request_flags call is made in the PALM4 section of
the uvisor_init function I always get back USBD_STALLED as status.

 

I have been down two routes to try to fix this (although I am not familiar
with the kernel debug features of OpenBSD yet).

 

i. I have set up a VMWare machine running Windows XP, CLIE
Palmdesktop and installed 'snoopypro' from http://usbsnoop.sourceforge.net
http://usbsnoop.sourceforge.net/  with this I have examined the USB
conversation that the commercial Sony driver has with the CLIE. - not
particularly different from the uvisor init but some extra vendor endpoint
stuff.

ii.I have compared the working Linux 2.6 visor driver (I
have a Gentoo system running this driver and it works well) - I have made
the minimal changes to the uvisor driver necessary to change the 03 command
that is normally used to 04 as used by this driver and checked that the data
structures are the same as the ones used in the Linux driver. They are byte
for byte the same (unless there is a packing issue of course).

 

Both experiments still result in the call to usbd_do_request_flags returning
the STALLED status - where I was previously convinced that the device was
stalling because it was being sent a command it didn't recognise now I am
not so sure.. I'm beginning to speculate that something in the USB transfer
handler is fouling up.

 

The question is, has anybody else tried this with this model or any other
model showing the STALLED status on init and what conclusions/speculations
did you come to if you didn't fix it?

 

- Andy



Re: trunk with virtual interfaces

2006-02-04 Thread Reyk Floeter
On Sat, Feb 04, 2006 at 11:37:34AM -0200, Celso Fernandes wrote:
 I would like to know why I can't trunk virtual interfaces on 3.8 realease?
 what is the real reason for this? I took a look at the trunk manual, but I
 found nothing.. thanks in any way.
 

why?

what kind of virtual interface?

pppoe trunk vlan tun sl ppp lo gre gif carp bridge

nonsense.

but indeed, you can add trunk interfaces as trunk ports to trunk
interfaces...

reyk



Re: OpenBSD hardware router

2006-02-04 Thread Stuart Henderson
On 2006/02/04 14:07, Claudio Jeker wrote:
 On Sat, Feb 04, 2006 at 11:25:15AM +, Stuart Henderson wrote:
  On 2006/02/03 20:34, Josh Tolley wrote:
   All that being said, we 1) didn't have an encryption accelerator
   in the box
  
  that would tend to make things worse anyway - you'll just increase the
  rate of interrupts and that seems to be the main problem.
 
 If you plan to do extensive crypto on a soekris then you better add an
 encryption accelerator to the box because the little CPU is not capable of
 doing more than 8MB of AES-128 per second (tested via openssl speed).
 With scp I never got more than 1MB/s throughput.

I see pretty similar cpu use from Blowfish in software compared to
3des-cbc in hardware on a 4801 with scp. Software AES-128 is a little
slower. I don't have an AES accelerator to try.

http://memberwebs.com/nielsen/freebsd/slow-cpu-routers.html implements
polling for hifn, which the author has found to help for some cases
(notably IPSEC: 9.95 Mbit with polling vs. 7.2 MBit without polling).

 The soekris has such a slow CPU that any kind of work is expensive.

True, and the MHz is only part of the story.



Need for a benchmark recommendation

2006-02-04 Thread Andrés Delfino
I need to run a benchmark for testing the temperature of my system,
which of these 
(http://www.openbsd.org/cgi-bin/cvsweb/ports/benchmarks/?only_with_tag=OPENBSD_3_8)
do you recommend?

Thanks



Re: pf and aliases

2006-02-04 Thread Darrin Chandler

David Newman wrote:


ExtIf=xl1
ExtIfa=1.2.3.5




rdr on $ExtIfa inet proto tcp from any to $ExtIfa port 25 - $box2
rdr on $ExtIf inet proto tcp from any to $ExtIf port 25 - $box1



Forget for a second what you *want* to have happen, and look at the 
above snippets of your pf.conf. What's the *last* matching rule for 
something on $ExtIfa?


--
Darrin Chandler|  Phoenix BSD Users Group
[EMAIL PROTECTED]   |  http://bsd.phoenix.az.us/
http://www.stilyagin.com/  |



Re: pf and aliases

2006-02-04 Thread Darrin Chandler

Darrin Chandler wrote:

Forget for a second what you *want* to have happen, and look at the 
above snippets of your pf.conf. What's the *last* matching rule for 
something on $ExtIfa?


Doh! Nevermind.

--
Darrin Chandler|  Phoenix BSD Users Group
[EMAIL PROTECTED]   |  http://bsd.phoenix.az.us/
http://www.stilyagin.com/  |



Re: Need for a benchmark recommendation

2006-02-04 Thread David Higgs
There is a DESCR file in each port that describes what each one does. 
It all depends what component you expect to generate the most heat.

Personally, I've found that CPUburn does a pretty good job of
stressing processors (i386s only) and thus driving up temps. 
http://pages.sbcglobal.net/redelm/

--david

On 2/4/06, Andris Delfino [EMAIL PROTECTED] wrote:
 I need to run a benchmark for testing the temperature of my system,
 which of these 
 (http://www.openbsd.org/cgi-bin/cvsweb/ports/benchmarks/?only_with_tag=OPENBSD_3_8)
 do you recommend?

 Thanks



Re: pf and aliases

2006-02-04 Thread Stuart Henderson
 ExtIfa=1.2.3.5
 rdr on $ExtIfa inet proto tcp from any to $ExtIfa port 25 - $box2

That says rdr on 1.2.3.5: I doubt you have an interface named
1.2.3.5 ;)

I was surprised to see that pfctl parser doesn't reject this.



Re: pf and aliases

2006-02-04 Thread Stuart Henderson
 Forget for a second what you *want* to have happen, and look at the 
 above snippets of your pf.conf. What's the *last* matching rule for 
 something on $ExtIfa?

For nat/rdr rules, it's the *first* match.



httpd question

2006-02-04 Thread Dave Feustel
I am now starting httpd at boot. It reports that it cannot
determine the fully qualified domain name and listens to
only 127.0.0.1. How can I set the ip address to which httpd
listens to the address assigned to me by verizon's dhcp server?

Thanks,
Dave Feustel
-- 
Lose, v., experience a loss, get rid of, lose the weight
Loose, adj., not tight, let go, free, loose clothing



Re: pf and aliases

2006-02-04 Thread David Newman

Darrin Chandler wrote:


rdr on $ExtIfa inet proto tcp from any to $ExtIfa port 25 - $box2
rdr on $ExtIf inet proto tcp from any to $ExtIf port 25 - $box1



Forget for a second what you *want* to have happen, and look at the 
above snippets of your pf.conf. What's the *last* matching rule for 
something on $ExtIfa?


Ah, good point, thanks. I tried flipping the order (and adding the :0 
parameter) but the following still forwards box2's requests to box1:


ExtIf=xl1
ExtIfa=1.2.3.5
IntIf=xl0
box1=9.8.7.6
box2=9.8.7.7

nat on $ExtIf:0 from $IntIf:network to any - ($ExtIf:0)

rdr on $ExtIf inet proto tcp from any to $ExtIf:0 port 22 - $box1
rdr on $ExtIfa inet proto tcp from any to $ExtIfa port 22 - $box2

pass in quick on $ExtIf proto tcp from any to $box1 \
 port 22 flags S/SA keep state
pass in quick on 1.2.3.5 proto tcp from any to $box2 \
 port 22 flags S/SA keep state

Changing to $ExtIf:0 on the first pass rule just blocks traffic.

Commenting out the nat rule has no effect, at least for inbound traffic.

I've looked for examples of :0 in use, but haven't found anything relevant.

Thanks much for any further clues.

dn



Re: S5120 Tomcat weirdness

2006-02-04 Thread Chris
(sorry, was out of town for a couple weeks, back now.)

Yes, I have tried the 3.9 snapshot, and the same thing happens.

Did something break between distros?



Ted Unangst wrote:

On 1/23/06, Chris [EMAIL PROTECTED] wrote:
  

I am trying to install OBSD 3.8 on my new Tyan S5120 tomcat i915 mobo.
I have a pIV chip and 2gb of ram.  It has an ICH6 chipset in it.

So I bought a 250 gb IDE drive.  After a strugle, I finally got the
thing in there, and the mobo detects it. So I reboot, and I'll be damned
if I didn't get the same error!  I had removed the other drive
completely, so how is it that I get the same error?

So, eventually I bump into an Obsd 3.6 disk, and I figure, What the
hell.  I boot to it, and low and behold the damn thing works!



have you tried a snapshot?



Re: pf and aliases

2006-02-04 Thread Darrin Chandler

David Newman wrote:

Forget for a second what you *want* to have happen, and look at the 
above snippets of your pf.conf. What's the *last* matching rule for 
something on $ExtIfa?


Ah, good point, thanks. I tried flipping the order (and adding the :0 
parameter) but the following still forwards box2's requests to box1:



I was wrong. Nat/rdr keeps the *first* matching rule, while filtering 
keeps the *last* matching rule. So you had it in the right order before. 
Sorry about that. I need to finish my morning coffee before I post.


See Stuart Henderson's remarks regarding IP address vs. interface (and 
anything else he has to say).


--
Darrin Chandler|  Phoenix BSD Users Group
[EMAIL PROTECTED]   |  http://bsd.phoenix.az.us/
http://www.stilyagin.com/  |



Re: Problem with HP NetRAID Controller

2006-02-04 Thread Marco Peereboom
I have replied to this type of email several times before.  The short  
answer is that I don't know why it is broken and have not been able  
to fix it yet.  The message is there to warn and protect you from bad  
things.


On Feb 3, 2006, at 7:28 AM, Dirk Fohrenkamm wrote:


Hi,

I'm trying to install OpenBSD 3.8 on a (i386)-box with a HP NetRaid
controller (three SCSI channels) which is - of course - supported  
via the

ami(4) driver.

The problem is that during boot OpenBSD limits access to only one  
of the

two virtual disks. During boot OpenBSD is complaining about a buggy
firmware:

-snip-

ami0 at pci0 dev 12 function 0 AMI MegaRAID Series 428 rev 0x03:  
irq11

AMI 428/32b1632
ami0: FW A.04.03, BIOS vA.04.03, 4MB RAM
ami0: 3 channels, 16 targets, 2 logical drives
ami0: firmware buggy, limiting access to first logical disk
scsibus0 at ami0: 1 targets

-snip-

Is there any workaround which allows me to get access to both logical
disks anyway?

Many thanks in advance

Dirk




make obj regress tests clarification.

2006-02-04 Thread Edd Barrett
Hi,

I noticed today that make obj on -current was trying to download an egcs
pkg and failing. It seems un-critical, as the build completes perfectly if
ignored.

Having spoke to some people on #openbsd on freenode they managed to
duplicate it on other machines and tracked it down to the PKG_PATH env. If
set it trys to install a pkg and fails( even if PKG_PATH is valid) . If it
is unset make obj completes as usual.

Is this a bug or a developer feature? We are unsure.

Best Regards

Edd



Re: make obj regress tests clarification.

2006-02-04 Thread Edd Barrett
Forgot to attach the exact error.


   1. # make obj
   2. [snip]
   3. /usr/src/regress/misc/exceptions/obj -
   /usr/obj/regress/misc/exceptions
   4. === regress/misc/objc
   5. /usr/src/regress/misc/objc/obj - /usr/obj/regress/misc/objc
   6. === regress/gnu
   7. === regress/gnu/egcs
   8. === regress/gnu/egcs/gcc
   9. Error from
   ftp://ftp.openbsd.org/pub/OpenBSD/snapshots/packages/i386/:
   10. 550 Failed to open file.
   11. /usr/src/regress/gnu/egcs/gcc/obj - /usr/obj/regress/gnu/egcs/gcc
   12. === regress/gnu/egcs/gcc-bounds
   13. === regress/gnu/egcs/libiberty
   14. Error from
   ftp://ftp.openbsd.org/pub/OpenBSD/snapshots/packages/i386/:
   15. 550 Failed to open file.
   16. /usr/src/regress/gnu/egcs/libiberty/obj -
   /usr/obj/regress/gnu/egcs/libiberty
   17. === regress/gnu/egcs/libf2c
   18. Error from
   ftp://ftp.openbsd.org/pub/OpenBSD/snapshots/packages/i386/:
   19. 550 Failed to open file.
   20. /usr/src/regress/gnu/egcs/libf2c/obj -
   /usr/obj/regress/gnu/egcs/libf2c

Regards

Edd



Re: OpenBSD hardware router

2006-02-04 Thread Siegbert Marschall
Hi,

 On 2006/02/03 20:34, Josh Tolley wrote:
 All that being said, we 1) didn't have an encryption accelerator
 in the box

 that would tend to make things worse anyway - you'll just increase the
 rate of interrupts and that seems to be the main problem.

for a something fast like aes it might be true, for 3des this statement
ist wrong.

never did stuff with the 45xx but I can remember that for pushing 1mbit/s
3des I needed 133MHz on old 486er CPU and a P1-166MMX could barely handle
2mbit/s. so with the accelerater you can handle T1/E1 easily, without it
you are lost. some benchmarks from years ago...

bye, siggi.



Re: FreeBSD NIS client X OpenBSD NIS server: yppasswd

2006-02-04 Thread jared r r spiegel
On Thu, Feb 02, 2006 at 06:08:52PM -0500, Jose Fragoso wrote:
 
 yppasswd: pam_chauthtok(): error in service module 
 
 and the change fails. Now if I instead use the following command: 
 
 yppasswd -h `ypwhich` 
 
 It works immediatelly. 
 
 With an OpenBSD client, it always work. 
 
 So I guess the FreeBSD box is trying to talk to the rpc.ypasswdd from another 
 server. 

  perhaps you could tcpdump and find out which server it's trying, or if it
  is sending broadcasts?  

  does freebsd allow for something similar to the /etc/yp/DOMAINNAME file?

  i've gotten quite fond of using that file.

  my quick suggestion is to watch the network interfaces and see what
  is different on the wire between 'yppasswd' and the one with ypwhich.

  also, don't know what the ramification of the PAM is...  perhaps nothing ?
  did a quick peek at the freebsd yppasswd(1) page and didn't see much
  mention.

-- 

  jared

[ openbsd 3.9-beta GENERIC ( jan 30 ) // i386 ] 



Re: Help: Java plugin for mozilla firefox

2006-02-04 Thread jared r r spiegel
On Thu, Feb 02, 2006 at 09:48:55AM -0500, Wade, Daniel wrote:
 pkg_info -D packagename
 Will show you the install messages  

  also look for a pkg/MESSAGE file in the port dir, if you
  have the port dir (since we're talking about java in this
  case, i will assume you do have the port dir), otherwise,
  i bet you can browse to it on cvsweb.

-- 

  jared

[ openbsd 3.9-beta GENERIC ( jan 30 ) // i386 ]



Re: sysctl hw.sensors question

2006-02-04 Thread jared r r spiegel
On Fri, Feb 03, 2006 at 09:02:06PM +, Denny White wrote:
 since installing the Voodoo
 card. Here's the current output of sysctl hw.sensors:
 
 hw.sensors.0=lm0, VCORE_A, volts_dc, 1.73 V
 hw.sensors.1=lm0, VCORE_B, volts_dc, 1.74 V
 hw.sensors.2=lm0, +3.3V, volts_dc, 3.26 V
 hw.sensors.3=lm0, +5V, volts_dc, 4.91 V
 hw.sensors.4=lm0, +12V, volts_dc, 12.28 V
 hw.sensors.5=lm0, -12V, volts_dc, -11.82 V
 hw.sensors.6=lm0, -5V, volts_dc, 3.55 V
 hw.sensors.7=lm0, +5VSB, volts_dc, 4.92 V
 hw.sensors.8=lm0, VBAT, volts_dc, 3.26 V
 hw.sensors.9=lm0, Temp1, temp, 33.00 degC / 91.40 degF
 hw.sensors.10=lm0, Temp2, temp, 22.50 degC / 72.50 degF
 hw.sensors.11=lm0, Temp3, temp, 127.50 degC / 261.50 degF
 hw.sensors.12=lm0, Fan1, fanrpm, 4891 RPM
 
 The one that's alarming is the 2nd from last line, that
 says 261.50 degF.

  i have a similar output for the temp sensors in my soekrises:

$ sysctl -w hw.sensors | grep temp
hw.sensors.0=nsclpcsio0, TSENS1, temp, 127.00 degC / 260.60 degF
hw.sensors.1=nsclpcsio0, TSENS2, temp, 127.00 degC / 260.60 degF
hw.sensors.2=nsclpcsio0, TNSC, temp, 62.00 degC / 143.60 degF

  (this is a dec.3 snapshot)

  any part of the soekris i can manage to physically touch 
  feels cooler than 260 degF, since i don't have second degree
  burns on my fingers thereafter... 

  only having looked at google for a little while, i seem to 
  recall there was a scale factor or some other number that
  had to be used as a multiplier to ramp up the outputs of
  the measured data so that they would equate to real-world
  values; i don't know if this is a scale factor issue, or if
  i'm totally wrong about the scale factor thing either...

  wrt the idea of it being your video card, if you take
  the card out, does hw.sensors.11 go away?  i know you said
  you didn't recall that value being there, but to be certain
  about it...

-- 

  jared

[ openbsd 3.9-beta GENERIC ( jan 30 ) // i386 ]



Re: iwi broken in 3.8-current?

2006-02-04 Thread Jarett Stevens

Damien Bergamini wrote:


Please try to force 11g mode by hand:

% ifconfig iwi0 mode 11g

I'm pretty sure the firmware crashes when scanning channels in
the 5GHz band.  This bug should affect 2915ABG adapters only.
Scanning of those channels was disabled in 3.8.

Damien


 

I updated to the latest 3.8-current (3.9-beta) yesterday (2006/02/03) 
and this is no longer a problem.  Thanks for all the hard work Damien.


Jarett



New dmesg for those interested:

OpenBSD 3.9-beta (GENERIC) #0: Fri Feb  3 12:10:53 CST 2006
   [EMAIL PROTECTED]:/usr/src/sys/arch/i386/compile/GENERIC
cpu0: AMD Athlon(tm) 64 Processor 3400+ (AuthenticAMD 686-class, 
1024KB L2 cache) 798 MHz
cpu0: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2

cpu0: AMD Powernow: TS FID VID TTP
cpu0: AMD PowerNow! K8 available states (13400,3,33300,36600)
real mem  = 1073127424 (1047976K)
avail mem = 972492800 (949700K)
using 4278 buffers containing 5376 bytes (52500K) of memory
mainbus0 (root)
bios0 at mainbus0: AT/286+(00) BIOS, date 07/15/04, BIOS32 rev. 0 @ 0xf0010
apm0 at bios0: Power Management spec V1.2
apm0: AC on, battery charge unknown
apm0: flags 30102 dobusy 0 doidle 1
pcibios0 at bios0: rev 2.1 @ 0xf/0x1
pcibios0: PCI IRQ Routing Table rev 1.0 @ 0xf52a0/144 (7 entries)
pcibios0: PCI Interrupt Router at 000:02:0 (SiS 85C503 System rev 0x00)
pcibios0: PCI bus #3 is the last bus
bios0: ROM list: 0xc/0x1! 0xd/0xa000
cpu0 at mainbus0
pci0 at mainbus0 bus 0: configuration mode 1 (no bios)
pchb0 at pci0 dev 0 function 0 SiS 755 PCI rev 0x01
ppb0 at pci0 dev 1 function 0 SiS 86C202 VGA rev 0x00
pci1 at ppb0 bus 1
vga1 at pci1 dev 0 function 0 ATI Radeon Mobility M10 NP rev 0x00
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
pcib0 at pci0 dev 2 function 0 SiS 85C503 System rev 0x25
pciide0 at pci0 dev 2 function 5 SiS 5513 EIDE rev 0x00: 755: DMA, 
channel 0 wired to compatibility, channel 1 wired to compatibility

wd0 at pciide0 channel 0 drive 0: TOSHIBA MK4019GAX
wd0: 16-sector PIO, LBA, 38154MB, 78140160 sectors
wd0(pciide0:0:0): using PIO mode 4, Ultra-DMA mode 2
atapiscsi0 at pciide0 channel 1 drive 0
scsibus0 at atapiscsi0: 2 targets
cd0 at scsibus0 targ 0 lun 0: Slimtype, COMBO LSC-24082K, JKU5 SCSI0 
5/cdrom removable

cd0(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 2
SiS 7013 Modem rev 0xa0 at pci0 dev 2 function 6 not configured
auich0 at pci0 dev 2 function 7 SiS 7012 AC97 rev 0xa0: irq 10, 
SiS7012 AC97

ac97: codec id 0x414c4760 (Avance Logic ALC655)
audio0 at auich0
ohci0 at pci0 dev 3 function 0 SiS 5597/5598 USB rev 0x0f: irq 11, 
version 1.0, legacy support

usb0 at ohci0: USB revision 1.0
uhub0 at usb0
uhub0: SiS OHCI root hub, rev 1.00/1.00, addr 1
uhub0: 3 ports with 3 removable, self powered
ohci1 at pci0 dev 3 function 1 SiS 5597/5598 USB rev 0x0f: irq 4, 
version 1.0, legacy support

usb1 at ohci1: USB revision 1.0
uhub1 at usb1
uhub1: SiS OHCI root hub, rev 1.00/1.00, addr 1
uhub1: 3 ports with 3 removable, self powered
ehci0 at pci0 dev 3 function 3 SiS 7002 USB rev 0x00: irq 5
usb2 at ehci0: USB revision 2.0
uhub2 at usb2
uhub2: SiS EHCI root hub, rev 2.00/1.00, addr 1
uhub2: 6 ports with 6 removable, self powered
sis0 at pci0 dev 4 function 0 SiS 900 10/100BaseTX rev 0x91: irq 5, 
address 00:03:0d:15:2e:c7

rlphy0 at sis0 phy 1: RTL8201L 10/100 PHY, rev. 1
Texas Instruments TSB43AB22 FireWire rev 0x00 at pci0 dev 6 function 0 
not configured

cbb0 at pci0 dev 9 function 0 O2 Micro OZ711M1 CardBus rev 0x20: irq 11
cbb1 at pci0 dev 9 function 1 O2 Micro OZ711M1 CardBus rev 0x20: irq 11
O2 Micro OZ711Mx CardBus rev 0x00 at pci0 dev 9 function 2 not configured
iwi0 at pci0 dev 11 function 0 Intel PRO/Wireless 2915ABG rev 0x05: 
irq 5, address 00:0e:35:d0:df:5d

pchb1 at pci0 dev 24 function 0 AMD AMD64 HyperTransport rev 0x00
pchb2 at pci0 dev 24 function 1 AMD AMD64 Address Map rev 0x00
pchb3 at pci0 dev 24 function 2 AMD AMD64 DRAM Cfg rev 0x00
pchb4 at pci0 dev 24 function 3 AMD AMD64 Misc Cfg rev 0x00
isa0 at pcib0
isadma0 at isa0
pckbc0 at isa0 port 0x60/5
pckbd0 at pckbc0 (kbd slot)
pckbc0: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pmsi0 at pckbc0 (aux slot)
pckbc0: using irq 12 for aux slot
wsmouse0 at pmsi0 mux 0
pcppi0 at isa0 port 0x61
midi0 at pcppi0: PC speaker
spkr0 at pcppi0
sysbeep0 at pcppi0
lpt0 at isa0 port 0x378/4 irq 7
npx0 at isa0 port 0xf0/16: using exception 16
pccom1 at isa0 port 0x2f8/8 irq 3: ns16550a, 16 byte fifo
cardslot0 at cbb0 slot 0 flags 0
cardbus0 at cardslot0: bus 2 device 0 cacheline 0x0, lattimer 0x20
pcmcia0 at cardslot0
cardslot1 at cbb1 slot 1 flags 0
cardbus1 at cardslot1: bus 3 device 0 cacheline 0x0, lattimer 0x20
pcmcia1 at cardslot1
biomask eb75 netmask eb75 ttymask fbf7
pctr: user-level cycle counter enabled
dkcsum: wd0 matches BIOS drive 0x80
root on wd0a
rootdev=0x0 rrootdev=0x300 

Re: webmin like for openbsd

2006-02-04 Thread f. g.
PIXMEUP.COM Advertise your website and earn  at the same time from it $$ 
pixelpages
by http://www.pixmeup.com/gjavierand best pixel site in the world, Advertise 
your website and earn an income from it at the same time.



Pixmeup.com/pixelpages is now Ranked 1200th most view''d website in the 
World and is an Internet phenomenon. What we are going to share with you 
about pixel advertising can change your life forever and is already doing 
so.



We are already the BIGGEST PIXEL site in the world and have more traffic at 
http://www.pixmeup.com/gjavierthan the top 10 network marketing companies in 
the world combined--and that includes all the BIG BOYS!


When you join http://www.pixmeup.com/gjavier and buy an ad for $25(USD) you 
will receive two income generating Business Centers in our 3x8 Matrix. You 
receive a Gold Business Center and a Silver Business Center.


You can buy as many $25 blocks of ad space that you want and you will 
receive a Gold and Silver Business Center for each, or get 5 or 10 adds and 
why wouldn''t you want to when you could be earning $19,000 on each add, So 
if you had 4 you could be earning over $76,000 and if yo uhad 8 you could be 
earnig over $152,000 and if that''s not enough you earn an extra 20% on your 
personal sponserd downline and if that''s not enough you make an extra 5% on 
your downlines downline which is crazy


Some of the best network marketers in the world have already signed upto 
pixmeup and if their getting into it then why wouldn''t you wawt too.


Your Gold Business Center is placed [top to bottom - left to right] from the 
top of the structure down starting with the company in the order that people 
join. It doesn''t matter who refers them or what country they are from, they 
just keep filling in. Every time a Business Center falls on your 3rd through 
8th levels you will get paid.


Everyone''s Silver Business Center is placed under your sponsors Silver 
Business Center. Every time sales take place on your 3rd through 8th levels 
you''re making money.


Filling an entire matrix would make you $9,564.75. Once you have filled an 
entire Matrix you will be given a new Business Center. Remember you get TWO 
Business Centers for every $25 ad block, so it''s possible to make 
$19,129.50 for every $25 spent on advertising.


All you have to do now is bring 1 person in and that''s you in the matrix. 
before Pre-Launch you didn''t have to bring in anyone now it''s just 1 
person


get yor webiste viewed by over 5 million people and more just imagine the 
traffic that you could be getting to your site and all the possible sales, 
Finaly there''s a way for the average joe to get his website view''d by 
millions daily in every part of the world.


So come on in and take a look you wont regreat it.

http://www.pixmeup.com/gjavier

you''d be crazy not too it''s a win win situation
- Original Message - 
From: Jeffrey Lim [EMAIL PROTECTED]

To: [EMAIL PROTECTED]
Cc: misc@openbsd.org
Sent: Saturday, February 04, 2006 9:37 PM
Subject: Re: webmin like for openbsd



On 1/27/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
guys do you have any idea if their's another package like webmin for 
openbsd?




and why would u want to use something like that?


what is your comment also about webmin.. is it safe to use?



personal opinion
i hate it, it sucks ;)

was forced to hack on it for a project years ago - and then i saw how
badly the code just sucked, i just wanted to kill the
strikeidiots/strikegenerous guys who would even think of
sponsoring a project like that.
/personal opinion

-jf




Re: httpd question

2006-02-04 Thread f. g.
PIXMEUP.COM Advertise your website and earn  at the same time from it $$ 
pixelpages
by http://www.pixmeup.com/gjavierand best pixel site in the world, Advertise 
your website and earn an income from it at the same time.



Pixmeup.com/pixelpages is now Ranked 1200th most view''d website in the 
World and is an Internet phenomenon. What we are going to share with you 
about pixel advertising can change your life forever and is already doing 
so.



We are already the BIGGEST PIXEL site in the world and have more traffic at 
http://www.pixmeup.com/gjavierthan the top 10 network marketing companies in 
the world combined--and that includes all the BIG BOYS!


When you join http://www.pixmeup.com/gjavier and buy an ad for $25(USD) you 
will receive two income generating Business Centers in our 3x8 Matrix. You 
receive a Gold Business Center and a Silver Business Center.


You can buy as many $25 blocks of ad space that you want and you will 
receive a Gold and Silver Business Center for each, or get 5 or 10 adds and 
why wouldn''t you want to when you could be earning $19,000 on each add, So 
if you had 4 you could be earning over $76,000 and if yo uhad 8 you could be 
earnig over $152,000 and if that''s not enough you earn an extra 20% on your 
personal sponserd downline and if that''s not enough you make an extra 5% on 
your downlines downline which is crazy


Some of the best network marketers in the world have already signed upto 
pixmeup and if their getting into it then why wouldn''t you wawt too.


Your Gold Business Center is placed [top to bottom - left to right] from the 
top of the structure down starting with the company in the order that people 
join. It doesn''t matter who refers them or what country they are from, they 
just keep filling in. Every time a Business Center falls on your 3rd through 
8th levels you will get paid.


Everyone''s Silver Business Center is placed under your sponsors Silver 
Business Center. Every time sales take place on your 3rd through 8th levels 
you''re making money.


Filling an entire matrix would make you $9,564.75. Once you have filled an 
entire Matrix you will be given a new Business Center. Remember you get TWO 
Business Centers for every $25 ad block, so it''s possible to make 
$19,129.50 for every $25 spent on advertising.


All you have to do now is bring 1 person in and that''s you in the matrix. 
before Pre-Launch you didn''t have to bring in anyone now it''s just 1 
person


get yor webiste viewed by over 5 million people and more just imagine the 
traffic that you could be getting to your site and all the possible sales, 
Finaly there''s a way for the average joe to get his website view''d by 
millions daily in every part of the world.


So come on in and take a look you wont regreat it.

http://www.pixmeup.com/gjavier

you''d be crazy not too it''s a win win situation
- Original Message - 
From: Robert C Wittig [EMAIL PROTECTED]

To: Dave Feustel misc@openbsd.org
Sent: Saturday, February 04, 2006 9:04 PM
Subject: Re: httpd question



Hello Dave,

Saturday, February 4, 2006, 11:10:08 AM, you wrote:

DF I am now starting httpd at boot. It reports that it cannot
DF determine the fully qualified domain name and listens to
DF only 127.0.0.1. How can I set the ip address to which httpd
DF listens to the address assigned to me by verizon's dhcp server?

If you watch your boot message, right before the login prompt, you
will see the assigned IP addy come up, from dhcp.

Then, you can add the line:

lease {fixed-address the.dhcp.ip.address;}

{curly braces, not parentheses} ...to /etc/dhclient.conf
and dhcp will always give you the same IP addy, when the lease renews.

You can also include the IP and server name, nickname to /etc/hosts
and also place the IP in httpd.conf in the 'Listen' directive, the
'BindAddress' directive, or the VirtualHost xxx.xxx.xxx.xxx
container, depending on how you configure Apache to run.



-wittig http://www.robertwittig.com/
.




Re: unwanted key repeating in X, dmesg

2006-02-04 Thread Jonathan Glaschke
OpenBSD 3.8-stable (GENERIC) #1: Sat Jan  7 16:45:00 CET 2006
[EMAIL PROTECTED]:/usr/src/sys/arch/i386/compile/GENERIC
cpu0: AMD Athlon(tm) XP 1800+ (AuthenticAMD 686-class, 256KB L2 cache) 1.50
GHz
cpu0:
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,F
XSR
cpu0: AMD Powernow: FID
real mem  = 502833152 (491048K)
avail mem = 451829760 (441240K)
using 4278 buffers containing 25243648 bytes (24652K) of memory
mainbus0 (root)
bios0 at mainbus0: AT/286+(00) BIOS, date 06/19/02, BIOS32 rev. 0 @ 0xfdae0
apm0 at bios0: Power Management spec V1.2
apm0: AC on, no battery
apm0: flags 30102 dobusy 0 doidle 1
pcibios0 at bios0: rev 2.1 @ 0xf/0x1
pcibios0: PCI IRQ Routing Table rev 1.0 @ 0xf82d0/144 (7 entries)
pcibios0: PCI Interrupt Router at 000:02:0 (SIS 85C503 System rev 0x00)
pcibios0: PCI bus #1 is the last bus
bios0: ROM list: 0xc/0xc000 0xcc000/0xa000
cpu0 at mainbus0
pci0 at mainbus0 bus 0: configuration mode 1 (no bios)
pchb0 at pci0 dev 0 function 0 SIS 740 PCI rev 0x01
ppb0 at pci0 dev 1 function 0 SIS 86C201 AGP rev 0x00
pci1 at ppb0 bus 1
vga1 at pci1 dev 0 function 0 SIS 650 VGA rev 0x00: aperture at 0xc000,
size 0x40
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
pcib0 at pci0 dev 2 function 0 SIS 85C503 System rev 0x10
pciide0 at pci0 dev 2 function 5 SIS 5513 EIDE rev 0xd0: 740: DMA, channel 0
wired to compatibility, channel 1 wired to compatibility
wd0 at pciide0 channel 0 drive 0: IC25N040ATCS04-0
wd0: 16-sector PIO, LBA, 38154MB, 78140160 sectors
wd0(pciide0:0:0): using PIO mode 4, Ultra-DMA mode 2
atapiscsi0 at pciide0 channel 1 drive 0
scsibus0 at atapiscsi0: 2 targets
cd0 at scsibus0 targ 0 lun 0: Slimtype, COMBO LSC-24081, 3ME6 SCSI0 5/cdrom
removable
cd0(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 2
auich0 at pci0 dev 2 function 7 SIS 7012 AC97 rev 0xa0: irq 10, SiS7012
AC97
ac97: codec id 0x414c4710 (Avance Logic ALC200)
ac97: codec features headphone, 18 bit DAC, 18 bit ADC, Realtek 3D
audio0 at auich0
sis0 at pci0 dev 3 function 0 SIS 900 10/100BaseTX rev 0x90: irq 5, address
00:0a:e6:3f:c3:14
rlphy0 at sis0 phy 1: RTL8201L 10/100 PHY, rev. 1
Conexant HSF 56k HSFi rev 0x01 at pci0 dev 5 function 0 not configured
VIA VT6306 FireWire rev 0x46 at pci0 dev 7 function 0 not configured
uhci0 at pci0 dev 8 function 0 VIA VT83C572 USB rev 0x50: irq 10
usb0 at uhci0: USB revision 1.0
uhub0 at usb0
uhub0: VIA UHCI root hub, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
uhci1 at pci0 dev 8 function 1 VIA VT83C572 USB rev 0x50: irq 11
usb1 at uhci1: USB revision 1.0
uhub1 at usb1
uhub1: VIA UHCI root hub, rev 1.00/1.00, addr 1
uhub1: 2 ports with 2 removable, self powered
ehci0 at pci0 dev 8 function 2 VIA VT6202 USB rev 0x51: irq 5
usb2 at ehci0: USB revision 2.0
uhub2 at usb2
uhub2: VIA EHCI root hub, rev 2.00/1.00, addr 1
uhub2: 4 ports with 4 removable, self powered
isa0 at pcib0
isadma0 at isa0
pckbc0 at isa0 port 0x60/5
pckbd0 at pckbc0 (kbd slot)
pckbc0: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pms0 at pckbc0 (aux slot)
pckbc0: using irq 12 for aux slot
wsmouse0 at pms0 mux 0
pcppi0 at isa0 port 0x61
midi0 at pcppi0: PC speaker
spkr0 at pcppi0
sysbeep0 at pcppi0
lpt0 at isa0 port 0x378/4 irq 7
npx0 at isa0 port 0xf0/16: using exception 16
biomask ef7d netmask ef7d ttymask 
pctr: user-level cycle counter enabled
mtrr: Pentium Pro MTRR support
dkcsum: wd0 matches BIOS drive 0x80
root on wd0a
rootdev=0x0 rrootdev=0x300 rawdev=0x302
uhidev0 at uhub0 port 2 configuration 1 interface 0
uhidev0: vendor 0x15ca USB_PS2 Optical Mouse, rev 2.00/5.12, addr 2, iclass
3/1
ums0 at uhidev0: 3 buttons and Z dir.
wsmouse1 at ums0 mux 0
OpenBSD 3.8-stable (GENERIC) #1: Sat Jan  7 16:45:00 CET 2006
[EMAIL PROTECTED]:/usr/src/sys/arch/i386/compile/GENERIC
cpu0: AMD Athlon(tm) XP 1800+ (AuthenticAMD 686-class, 256KB L2 cache) 1.50
GHz
cpu0:
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,F
XSR
cpu0: AMD Powernow: FID
real mem  = 502833152 (491048K)
avail mem = 451829760 (441240K)
using 4278 buffers containing 25243648 bytes (24652K) of memory
mainbus0 (root)
bios0 at mainbus0: AT/286+(00) BIOS, date 06/19/02, BIOS32 rev. 0 @ 0xfdae0
apm0 at bios0: Power Management spec V1.2
apm0: AC on, no battery
apm0: flags 30102 dobusy 0 doidle 1
pcibios0 at bios0: rev 2.1 @ 0xf/0x1
pcibios0: PCI IRQ Routing Table rev 1.0 @ 0xf82d0/144 (7 entries)
pcibios0: PCI Interrupt Router at 000:02:0 (SIS 85C503 System rev 0x00)
pcibios0: PCI bus #1 is the last bus
bios0: ROM list: 0xc/0xc000 0xcc000/0xa000
cpu0 at mainbus0
pci0 at mainbus0 bus 0: configuration mode 1 (no bios)
pchb0 at pci0 dev 0 function 0 SIS 740 PCI rev 0x01
ppb0 at pci0 dev 1 function 0 SIS 86C201 AGP rev 0x00
pci1 at ppb0 bus 1
vga1 at pci1 dev 0 function 0 SIS 650 VGA rev 0x00: aperture at 0xc000,
size 0x40
wsdisplay0 at vga1 mux 1: 

Re: unwanted key repeating in X, dmesg

2006-02-04 Thread f. g.

PIXMEUP.COM Advertise your website and earn  at the same time from it $$
pixelpages
by http://www.pixmeup.com/gjavierand best pixel site in the world, Advertise
your website and earn an income from it at the same time.


Pixmeup.com/pixelpages is now Ranked 1200th most view''d website in the
World and is an Internet phenomenon. What we are going to share with you
about pixel advertising can change your life forever and is already doing
so.


We are already the BIGGEST PIXEL site in the world and have more traffic at
http://www.pixmeup.com/gjavierthan the top 10 network marketing companies in
the world combined--and that includes all the BIG BOYS!

When you join http://www.pixmeup.com/gjavier and buy an ad for $25(USD) you
will receive two income generating Business Centers in our 3x8 Matrix. You
receive a Gold Business Center and a Silver Business Center.

You can buy as many $25 blocks of ad space that you want and you will
receive a Gold and Silver Business Center for each, or get 5 or 10 adds and
why wouldn''t you want to when you could be earning $19,000 on each add, So
if you had 4 you could be earning over $76,000 and if yo uhad 8 you could be
earnig over $152,000 and if that''s not enough you earn an extra 20% on your
personal sponserd downline and if that''s not enough you make an extra 5% on
your downlines downline which is crazy

Some of the best network marketers in the world have already signed upto
pixmeup and if their getting into it then why wouldn''t you wawt too.

Your Gold Business Center is placed [top to bottom - left to right] from the
top of the structure down starting with the company in the order that people
join. It doesn''t matter who refers them or what country they are from, they
just keep filling in. Every time a Business Center falls on your 3rd through
8th levels you will get paid.

Everyone''s Silver Business Center is placed under your sponsors Silver
Business Center. Every time sales take place on your 3rd through 8th levels
you''re making money.

Filling an entire matrix would make you $9,564.75. Once you have filled an
entire Matrix you will be given a new Business Center. Remember you get TWO
Business Centers for every $25 ad block, so it''s possible to make
$19,129.50 for every $25 spent on advertising.

All you have to do now is bring 1 person in and that''s you in the matrix.
before Pre-Launch you didn''t have to bring in anyone now it''s just 1
person

get yor webiste viewed by over 5 million people and more just imagine the
traffic that you could be getting to your site and all the possible sales,
Finaly there''s a way for the average joe to get his website view''d by
millions daily in every part of the world.

So come on in and take a look you wont regreat it.

http://www.pixmeup.com/gjavier

you''d be crazy not too it''s a win win situation

- Original Message - 
From: Jonathan Glaschke [EMAIL PROTECTED]

To: misc@openbsd.org
Sent: Saturday, February 04, 2006 10:41 PM
Subject: Re: unwanted key repeating in X, dmesg



OpenBSD 3.8-stable (GENERIC) #1: Sat Jan  7 16:45:00 CET 2006
   [EMAIL PROTECTED]:/usr/src/sys/arch/i386/compile/GENERIC
cpu0: AMD Athlon(tm) XP 1800+ (AuthenticAMD 686-class, 256KB L2 cache) 
1.50

GHz
cpu0:
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,F
XSR
cpu0: AMD Powernow: FID
real mem  = 502833152 (491048K)
avail mem = 451829760 (441240K)
using 4278 buffers containing 25243648 bytes (24652K) of memory
mainbus0 (root)
bios0 at mainbus0: AT/286+(00) BIOS, date 06/19/02, BIOS32 rev. 0 @ 
0xfdae0

apm0 at bios0: Power Management spec V1.2
apm0: AC on, no battery
apm0: flags 30102 dobusy 0 doidle 1
pcibios0 at bios0: rev 2.1 @ 0xf/0x1
pcibios0: PCI IRQ Routing Table rev 1.0 @ 0xf82d0/144 (7 entries)
pcibios0: PCI Interrupt Router at 000:02:0 (SIS 85C503 System rev 0x00)
pcibios0: PCI bus #1 is the last bus
bios0: ROM list: 0xc/0xc000 0xcc000/0xa000
cpu0 at mainbus0
pci0 at mainbus0 bus 0: configuration mode 1 (no bios)
pchb0 at pci0 dev 0 function 0 SIS 740 PCI rev 0x01
ppb0 at pci0 dev 1 function 0 SIS 86C201 AGP rev 0x00
pci1 at ppb0 bus 1
vga1 at pci1 dev 0 function 0 SIS 650 VGA rev 0x00: aperture at 
0xc000,

size 0x40
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
pcib0 at pci0 dev 2 function 0 SIS 85C503 System rev 0x10
pciide0 at pci0 dev 2 function 5 SIS 5513 EIDE rev 0xd0: 740: DMA, 
channel 0

wired to compatibility, channel 1 wired to compatibility
wd0 at pciide0 channel 0 drive 0: IC25N040ATCS04-0
wd0: 16-sector PIO, LBA, 38154MB, 78140160 sectors
wd0(pciide0:0:0): using PIO mode 4, Ultra-DMA mode 2
atapiscsi0 at pciide0 channel 1 drive 0
scsibus0 at atapiscsi0: 2 targets
cd0 at scsibus0 targ 0 lun 0: Slimtype, COMBO LSC-24081, 3ME6 SCSI0 
5/cdrom

removable
cd0(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 2
auich0 at pci0 dev 2 function 7 SIS 7012 AC97 rev 0xa0: irq 10, SiS7012
AC97
ac97: codec id 

Re: unwanted key repeating in X

2006-02-04 Thread f. g.

PIXMEUP.COM Advertise your website and earn  at the same time from it $$
pixelpages
by http://www.pixmeup.com/gjavierand best pixel site in the world, Advertise
your website and earn an income from it at the same time.


Pixmeup.com/pixelpages is now Ranked 1200th most view''d website in the
World and is an Internet phenomenon. What we are going to share with you
about pixel advertising can change your life forever and is already doing
so.


We are already the BIGGEST PIXEL site in the world and have more traffic at
http://www.pixmeup.com/gjavierthan the top 10 network marketing companies in
the world combined--and that includes all the BIG BOYS!

When you join http://www.pixmeup.com/gjavier and buy an ad for $25(USD) you
will receive two income generating Business Centers in our 3x8 Matrix. You
receive a Gold Business Center and a Silver Business Center.

You can buy as many $25 blocks of ad space that you want and you will
receive a Gold and Silver Business Center for each, or get 5 or 10 adds and
why wouldn''t you want to when you could be earning $19,000 on each add, So
if you had 4 you could be earning over $76,000 and if yo uhad 8 you could be
earnig over $152,000 and if that''s not enough you earn an extra 20% on your
personal sponserd downline and if that''s not enough you make an extra 5% on
your downlines downline which is crazy

Some of the best network marketers in the world have already signed upto
pixmeup and if their getting into it then why wouldn''t you wawt too.

Your Gold Business Center is placed [top to bottom - left to right] from the
top of the structure down starting with the company in the order that people
join. It doesn''t matter who refers them or what country they are from, they
just keep filling in. Every time a Business Center falls on your 3rd through
8th levels you will get paid.

Everyone''s Silver Business Center is placed under your sponsors Silver
Business Center. Every time sales take place on your 3rd through 8th levels
you''re making money.

Filling an entire matrix would make you $9,564.75. Once you have filled an
entire Matrix you will be given a new Business Center. Remember you get TWO
Business Centers for every $25 ad block, so it''s possible to make
$19,129.50 for every $25 spent on advertising.

All you have to do now is bring 1 person in and that''s you in the matrix.
before Pre-Launch you didn''t have to bring in anyone now it''s just 1
person

get yor webiste viewed by over 5 million people and more just imagine the
traffic that you could be getting to your site and all the possible sales,
Finaly there''s a way for the average joe to get his website view''d by
millions daily in every part of the world.

So come on in and take a look you wont regreat it.

http://www.pixmeup.com/gjavier

you''d be crazy not too it''s a win win situation

- Original Message - 
From: Jonathan Glaschke [EMAIL PROTECTED]

To: misc@openbsd.org
Sent: Saturday, February 04, 2006 10:37 PM
Subject: unwanted key repeating in X



Hello,

sometimes when i type a key under x, it gets repeated and repeated and
so on. Sometimes i can stop this repeating by pressing the key again.
But then there will be another key that gets repeated in the next
seconds. If i can not stop it by pressing it again, it will be repeated
till i power off my computer manually (i waited 12 houres and i still
gets repeated). i can't quit X or something else
because the repeated key blocks all other keys.

If i manage to stop the key repeating by pressing the key again and
leave x, there will be no problem until i start x again. i never saw
this behaver when not using x11.

i changed my xorg.conf and i already tried to delete it and then use x
but the result was the same. I experienced the problem with severeal
window manangers, so i don't think that the problem lies there.

I dont thing it's a hardware problem because it only occurs in x11.

The problem don't seems to be a known issue because i didn't found
anything in openbsd's or x11's bug tracking system.

Any help would be appreciated,
Jonathan

--
| /\   ASCII Ribbon   | Jonathan Glaschke - Lorenz-Goertz-Stra_e 71,
| \ / Campaign Against | 41238 Moenchengladbach, Germany;
|  XHTML In Mail   | jabber: [EMAIL PROTECTED]
| / \ And News | http://jonathan-glaschke.de/

[demime 1.01d removed an attachment of type application/pgp-signature]




Re: SpamD, Postfix and mobile users

2006-02-04 Thread Bryan Irvine
On 2/3/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Hi all,

 I'm running Postfix 2.3.20050716-sasl2 (chrooted) and
 cyrus-sasl-2.1.20p4 on OpenBSD 3.8 stable. Everything is running peachy.
 My roaming users are able to connect and send e-mail.
 Now I wish to enable the fantastic SpamD feature in OpenBSD. However,
 I'm foreseeing a problem. I do not want my roaming users to be
 greylisted every time they send e-mail. They are roaming and do not have
 a static IP.

 Is there a way for SASL authenticated users to bypass the SpamD daemon?

I have a second instance of postfix running on port 2525.

--Bryan



Re: httpd question - solved

2006-02-04 Thread Dave Feustel
On Saturday 04 February 2006 16:57, L. V. Lammert wrote:
 On Sat, 4 Feb 2006, Dave Feustel wrote:
 
  I am now starting httpd at boot. It reports that it cannot
  determine the fully qualified domain name and listens to
  only 127.0.0.1. How can I set the ip address to which httpd
  listens to the address assigned to me by verizon's dhcp server?
 
 ahh, .. httpd.conf  ifconfig??
 
   Lee

I started httpd successfully after I commented out the change
I had made to the email address for the server administrator
(which apparently set off DNS requests - a bad thing for a server
with no name) and set ServerName to the ip address assigned to
 my computer.

I will have to update ServerName each time I get a new IP address.

Dave Feustel 

-- 
Lose, v., experience a loss, get rid of, lose the weight
Loose, adj., not tight, let go, free, loose clothing



Re: kernel debugging when booted off install cd

2006-02-04 Thread Charles Sprickman

On Fri, 3 Feb 2006, Rogier Krieger wrote:


On 2/3/06, Charles Sprickman [EMAIL PROTECTED] wrote:

It either freezes or panics when probing (or creating?) rd0, which I
assume is the ramdisk used in the install.  It runs 3.3 fine.


Perhaps you need to look at the FAQ if you're running i386:
upgrading/reinstalling OpenBSD/i386 using bsd.rd-a.out [1].


Excellent, I did not know how to boot an ELF kernel from the a.out 
bootloader.



If that doesn't solve your problem, a dmesg would be your best bet.
Information from a panic (trace/ps, obtained through the debugger you
get dropped into) would also be helpful. Since you mentioned you have
a serial console available, I recommend using it to file a report.


OK, so I grabbed the 3.5 bsd.rd-a.out and I get the same results.  Instant 
panic, and then a reboot.


dump to 1001
dump error 19

How can I go about getting it to crash into the debugger?

Thanks,

Charles


Upon freezes, I usually try to boot into the UKC to set the verbose
option. Typically, this gave me a hint in devices to disable. As a
sidenote: my own usual culprit is the ahc(4) driver. That said, this
only happens with two machines, each having an nVidia nForce2 chipset.
Given that you mentioned rd0 as a problem point, I doubt you are
having the same underlying problem.

Cheers,

Rogier


References:
1. OpenBSD FAQ - Upgrading/reinstalling OpenBSD/i386 using bsd.rd-a.out
http://www.openbsd.org/faq/faq4.html#bsdrdaout

--
If you don't know where you're going, any road will get you there.




Re: httpd question - solved

2006-02-04 Thread Clint M. Sand
On Sat, Feb 04, 2006 at 07:07:52PM -0500, Dave Feustel wrote:
 On Saturday 04 February 2006 16:57, L. V. Lammert wrote:
  On Sat, 4 Feb 2006, Dave Feustel wrote:
  
   I am now starting httpd at boot. It reports that it cannot
   determine the fully qualified domain name and listens to
   only 127.0.0.1. How can I set the ip address to which httpd
   listens to the address assigned to me by verizon's dhcp server?
  
  ahh, .. httpd.conf  ifconfig??
  
  Lee
 
 I started httpd successfully after I commented out the change
 I had made to the email address for the server administrator
 (which apparently set off DNS requests - a bad thing for a server
 with no name) and set ServerName to the ip address assigned to
  my computer.
 
 I will have to update ServerName each time I get a new IP address.
 
 Dave Feustel 

i have been running apache on openbsd since 2.9 on a dynamic IP and have
never had to do any of this. 

#grep ServerName /var/www/conf/httpd.conf
ServerName neotrance.dyndns.org



XML converting

2006-02-04 Thread coolzone
Hi all!

I know this hasn't got anything to do with OpenBSD (other than I am actually
doing the work on an OpenBSD driven machine), but the level and advice on this
list is so valueable that I am going to ask anyway.

Please forgive the direct lack of relation!

Many buzzwords exists on the net, as you all know, and sometimes it is
actually difficult to differ between what is buzzwords and what would might
contain something usefull. 

Does anyone see any benefit in using XML format for some data, and then using
XSL to convert this data into XHTML? Rather than just using XHTML in the first
place?

I ask because that I might have missed some good reason to do that. I can't
see any reason why one would need to do that except if the actual XML data
needed to be converted into several different things like both XHTML and WML
etc. or perhaps because in the future XML would better serve as a way to
contain the data.

Any advice is appreciated.

Best regards,
Rico.



Re: XML converting

2006-02-04 Thread Darrin Chandler

[EMAIL PROTECTED] wrote:


Hi all!

I know this hasn't got anything to do with OpenBSD (other than I am actually
doing the work on an OpenBSD driven machine), but the level and advice on this
list is so valueable that I am going to ask anyway.

Please forgive the direct lack of relation!

Many buzzwords exists on the net, as you all know, and sometimes it is
actually difficult to differ between what is buzzwords and what would might
contain something usefull. 


Does anyone see any benefit in using XML format for some data, and then using
XSL to convert this data into XHTML? Rather than just using XHTML in the first
place?

I ask because that I might have missed some good reason to do that. I can't
see any reason why one would need to do that except if the actual XML data
needed to be converted into several different things like both XHTML and WML
etc. or perhaps because in the future XML would better serve as a way to
contain the data.

Any advice is appreciated.

Best regards,
Rico.

 



Yes, there are reasons. If what you're doing is making web pages then 
you don't need to worry about it. If you're writing something and want 
to make it available in a variety of formats then it's not a bad way to 
go. Google for a while, and you'll find people doing that, and others 
who gave it a shot and gave up (same with the DocBook stuff). So... if 
you're asking what the benefits are, then the answer is almost certainly 
none.


--
Darrin Chandler|  Phoenix BSD Users Group
[EMAIL PROTECTED]   |  http://bsd.phoenix.az.us/
http://www.stilyagin.com/  |



Re: sysctl hw.sensors question

2006-02-04 Thread Stuart Henderson
On 2006/02/04 20:43, Denny White wrote:
 hw.sensors.11=lm0, Temp3, temp, 127.50 degC / 261.50 degF
 hw.sensors.0=nsclpcsio0, TSENS1, temp, 127.00 degC / 260.60 degF
 hw.sensors.1=nsclpcsio0, TSENS2, temp, 127.00 degC / 260.60 degF

 Thanks for the reply. Felt around inside the box. Nothing very
 warm at all.

I think that you often see the maximum possible value reported where the
chip isn't actually hooked up to a physical sensor. I guess you would
be seeing, at the very least, raised values on the other temps if the
127C was genuine.



Re: XML converting

2006-02-04 Thread Jeremy Huiskamp
Imagine you put a fair amount of effort into both the content and the  
presentation.  Then imagine you have one of two situations:

-you have numerous sets of data that you want to display the same way
	-now if you want to change the way they're displayed, you have to  
change only one file (the xsl), instead of many

-you have numerous ways you want to display the same data
	-now if you want to change some of the data and not the way it's  
displayed, you have to change only one file (the xml)


If you have an app that is generating your data then it is  
particularly handy because you can write your xsl by hand and not  
worry about hardcoding into the app logic.


Yes, this does seem a little out of place on this list :p

Jeremy

On 4-Feb-06, at 7:04 PM, [EMAIL PROTECTED] wrote:


Hi all!

I know this hasn't got anything to do with OpenBSD (other than I am  
actually
doing the work on an OpenBSD driven machine), but the level and  
advice on this

list is so valueable that I am going to ask anyway.

Please forgive the direct lack of relation!

Many buzzwords exists on the net, as you all know, and sometimes it is
actually difficult to differ between what is buzzwords and what  
would might

contain something usefull.

Does anyone see any benefit in using XML format for some data, and  
then using
XSL to convert this data into XHTML? Rather than just using XHTML  
in the first

place?

I ask because that I might have missed some good reason to do that.  
I can't
see any reason why one would need to do that except if the actual  
XML data
needed to be converted into several different things like both  
XHTML and WML
etc. or perhaps because in the future XML would better serve as a  
way to

contain the data.

Any advice is appreciated.

Best regards,
Rico.




Re: Pf que for voip

2006-02-04 Thread Stuart Henderson
On 2006/02/02 11:33, Stuart Henderson wrote:
 On 2006/02/02 22:08, [EMAIL PROTECTED] wrote:
  Quoting Graham Gower [EMAIL PROTECTED]:
   This begs the question, what should you do if your bandwidth is variable?
  
  I've wondered that myself. I figured someone in that situation might
  have to settle for an upload bandwidth limited to the worst case?
 
 It's usually possible to monitor the router's reported connection speed
 (maybe available by SNMP or logged to syslog, which might be easier than
 connecting to the router's cli or web interface to retrieve the information)
 and use the correct value in the ruleset. It shoulddn't be used raw as
 ATM overheads need to be allowed for. A shell script and standard tools
 should just about do the trick, though e.g. Perl is probably simpler.

...but catering for the worst-case results in quite inefficient use of
the line: http://www.adsl-optimizer.dk/thesis/ has a lot more detail
about this. One particular thing that stands out: TCP ACKs use a lot
more of your line capacity than you're probably expecting.



help in xmms

2006-02-04 Thread K P
hello...
i use openbsd 3.8, i installed xmms but i have 2 problem with it. 1st the 
equalizer don't work and visualization is not correct, actuallt it's not smooth 
and according to music.

thanks for ur help.

-- 
___
Play 100s of games for FREE! http://games.mail.com/