Re: Why gtk-gnutella stopped working

2007-04-09 Thread Keith Richardson

Karel Kulhavy wrote:

Hello

gtk-gnutella shipped with OpenBSD 4.0 is now obsolete and obsolete versions are
banned after 1 year from the Gnutella network.

If you are wondering, why it's suddenly not working, uninstall gtk-gnutella,
download the official one, delete ~/.gtk-gnutella, do Configure -d, make, make
install and it should work again. It worked just fine for me.

CL<


  
sturm@ has updated 4.0-stable to 0.96.3, the latest release.  
4.1-release is also at 0.96.3




Re: sysctl kern.maxproc help needed

2007-05-01 Thread Keith Richardson

Daniel Ouellet wrote:


Yes, I can use it, but I can't figure out the process ID. I am trying 
to understand the man page on this to kill the group 67, or www.


Obviously, I can't figure out the proper use of that syntax here.

Man said

The following PIDs have special meanings:
-1  If superuser, broadcast the signal to all processes; other-
wise, broadcast to all processes belonging to the user.
-pgid   Send the signal to all processes within the specified pro-
cess group.


You are confusing user group (i.e. www) with process group (i.e. logical 
grouping of processes for job contol, etc..). 

obsdev $ id -g 
1000

obsdev $ ps -o pid,gid,pgid,command
 PID   GID  PGID COMMAND
31803  1000 31803 -ksh (ksh)
21293  1000 21293 ps -o pid
31754  1000 26374 (netstat)
26374  1000 26374 /bin/sh /usr/local/bin/firefox
7853  1000 26374 /bin/sh /usr/local/mozilla-firefox/run-mozilla.sh 
/usr/local/mozilla-firefox/run-mozilla.sh

30367  1000 26374 /usr/local/mozilla-firefox/firefox-bin
30089  1000 26374 /usr/local/libexec/gconfd-2 12
1501  1000  1501 /bin/sh /usr/local/bin/thunderbird
14044  1000  1501 /bin/sh /usr/local/mozilla-thunderbird/run-mozilla.sh 
/usr/local/mozilla-thunderbird/run-mozilla.sh

29898  1000  1501 /usr/local/mozilla-thunderbird/thunderbird-bin
6987  1000  6987 -ksh (ksh)
1708  1000  1708 -ksh (ksh)
12309  1000 12309 -ksh (ksh)


See ps(1) and termios(4)

note: termios had the most descriptive explanation of process group 
under Job Control that I could find in a few minutes.  There probably is 
a better man page.


I do not know a way to find process group without forking.  An 
alternative (if you could not determine process ID) desperation move 
would be kill -1 as root (it should not kill system processes according 
to kill(2))



-Keith



Re: PF

2007-05-14 Thread Keith Richardson

Alberich de megres wrote:

I tried this you told me, and that not works, i get a syntax error

my pf.conf:

#supose 10.0.0.254 is external address..
ext_if="sis0"
ext_carp_if="carp1"
int_if="rl0"
int_carp_if="carp0"

nat on carp1 from 192.168.1.0/24 to any -> 10.0.0.254

rdr on sis0 inet proto tcp from any to 10.0.0.254 port 80 -> 192.168.1.69port 80

  

you are missing a space between '192.168.1.69' and 'port'

fixing that makes pfctl -n happy.

pass all



On 5/14/07, Joachim Schipper <[EMAIL PROTECTED]> wrote:
  

On Mon, May 14, 2007 at 06:12:12PM +0200, Alberich de megres wrote:


On 5/14/07, Joachim Schipper <[EMAIL PROTECTED]> wrote:
  

On Mon, May 14, 2007 at 12:41:18PM +0200, Alberich de megres wrote:


Hi again,

And sorry to insist on this I'm really lost.

I read in most webs-docs with rdr rule trafic get redirected to
internal servers and with this and pass rule is enought. But i
find myself in a different scenario, with rdr rule and pass rule
packets get redirected to internal server with the same external
ip.

With a tcpdump on internal server packets arrive to internal
server but this one don't ask it back.

If i add a nat rule from any to internal server, the server logs
show me access only from firewall ip address ( logically ). Is
there some way to redirect external traffic to internal server and
the internal server to see external address ( for logs control,
and access without firewall rule...only on server machine ) and
all works fine?
  

I don't really see what you mean: is there a server with public


address


1.2.3.4 behind a firewall with public address 1.2.3.1, and rules like

rdr pass on $ext_if to $server $port1 -> $port2
pass on $ext_if to $server port $port3

In that case, that should just work.


No,

There's a firewall with public address, and a server with internal
  

address.


firewall: 1.2.3.4
server: 192.168.1.1
  

In that case,

server = "192.168.1.1"

rdr pass on $ext_if to $ext_if $port1 -> $server
rdr pass on $ext_if to $ext_if $port2 -> $server $port3

should work just fine. What is your /etc/pf.conf? And what doesn't work?

(The underlying idea is that 'rdr pass' is very useful for simple cases,
and one should be careful with NAT.)

   Joachim

--
TFMotD: vclean (9) - disassociate the underlying file system from a
vnode




Re: sudo & wheel group

2007-09-17 Thread Keith Richardson

Chris wrote:

I am finding that I need to add joeuser to use pkg_* tools, tcpdump as well.

Is this the right way to do this?

  
You might as well give joeuser root password if you give him access to 
pkg_add and pkg_delete tools.


package framework has ability to run scripts as root.  All joeuser needs 
to do is create his own package.tgz and run pkg_add $HOME/package.tgz.



I agree with others in this thread: your security design is flawed.  

* Work towards alternative solutions when possible (i.e. can joeuser run 
Ethereal from the client machine to get the network traffic instead of 
tcpdump on the server?)

* Give read access if all they need is read-only.
* Don't push sysadmin work on the ?web developer (joeuser)?  package 
management is a perfect example.  tcp dumps slightly less so.
* Mount does not necessarily require root.  See mount and sysctl.conf 
man pages for conditions and sysctl settings. 



If you still want to go the sudo route after the comments you have 
received, that is your decision.  You can create server, user and 
command groups in sudoers to help keep your sudoers file sane.  See man 
page for exact syntax. 


-Keith



Re: problem compiling ports, 3.8 stable

2006-03-18 Thread Keith Richardson

Joachim Schipper wrote:

On Sat, Mar 18, 2006 at 03:11:14AM -0300, Gustavo Rios wrote:
  

Dear folks,

in order to improve my desktop openbsd box, i am trying to get some
applications working, but without success.

For instance, when i try to install gimp, i get this:

Script started on Sat Mar 18 00:01:06 2006
# make build ===> graphics/gimp/stable
===>  gimp-2.2.8 depends on: p5-XML-Parser-* - not found
===>  Verifying install for p5-XML-Parser-* in textproc/p5-XML-Parser
===>  Checking files for p5-XML-Parser-2.34
`/usr/ports/distfiles/XML-Parser-2.34.tar.gz' is up to date.


Checksum OK for XML-Parser-2.34.tar.gz. (sha1)


===>  p5-XML-Parser-2.34 depends on: expat.2 (expat-*) - expat.2 missing...
===>  Verifying install for expat.2 (expat-*) in textproc/expat
===>  Checking files for expat-1.95.6


expat-1.95.6.tar.gz doesn't seem to exist on this system.
Attempting to fetch /usr/ports/distfiles/expat-1.95.6.tar.gz from


http://ovh.dl.sourceforge.net/sourceforge/expat/.


Size does not match for /usr/ports/distfiles/expat-1.95.6.tar.gz


/bin/sh: test: 3: unexpected operator/operand
*** Error code 2

Stop in /usr/ports/textproc/expat (line 1990 of
/usr/ports/infrastructure/mk/bsd.port.mk).
*** Error code 1

Stop in /usr/ports/textproc/expat (line 1444 of
/usr/ports/infrastructure/mk/bsd.port.mk).
*** Error code 1

Stop in /usr/ports/textproc/expat (line 1633 of
/usr/ports/infrastructure/mk/bsd.port.mk).
*** Error code 1

Stop in /usr/ports/textproc/p5-XML-Parser (line 1334 of
/usr/ports/infrastructure/mk/bsd.port.mk).
*** Error code 1

Stop in /usr/ports/textproc/p5-XML-Parser (line 1633 of
/usr/ports/infrastructure/mk/bsd.port.mk).
*** Error code 1

Stop in /usr/ports/graphics/gimp/stable (line 1334 of
/usr/ports/infrastructure/mk/bsd.port.mk).
*** Error code 1

Stop in /usr/ports/graphics/gimp (line 108 of
/usr/ports/infrastructure/mk/bsd.port.subdir.mk).
# exit
Script done on Sat Mar 18 00:01:13 2006

This problem occurs with others applications like nasm, xfig and the like.

I could not figure it out what i am doing wrong.



I've seen this behaviour before when a sourceforge mirror was down. The
easiest way to get this done is to manually download the required files
to /usr/ports/distfiles from whereever they are stored (see the Makefile
for that).

Joachim


  
Another option is also to simply use packages.  Going off your earlier 
post, I believe you are running 3.8-stable.  Even though packages are 
fom -release, you can still install them on 3.8-stable systems.


From http://www.openbsd.org/faq/faq15.html#NoFun

"Because no intrusive changes are made in -stable, it is possible to use 
a -stable ports tree on a -release system, and vice versa. There is no 
need to update all your installed packages after applying a few errata 
patches to your system."




Re: Removing a misconfigured list member? [EMAIL PROTECTED]: Undelivered Mail Returned to Sender]

2006-03-21 Thread Keith Richardson

Mailing to [EMAIL PROTECTED] didn't work either (similar "loop" error
message). So could one please remove [EMAIL PROTECTED] from the mailing lists?

Sorry for mailing the list itself, but I didn't find a more specific
contact for that on http://www.openbsd.org/mail.html.

  


I think you wanted [EMAIL PROTECTED] if I remember majordomo's 
email correctly.




Re: Mac Mini, next question

2006-04-24 Thread Keith Richardson
Install worked fine for me by following the INSTALL doc.  I faced the 
same issue you mentioned and the section that Antoine quoted is what 
made my whole disk available to me.


Please post to ppc@ in the future.

-Keith


Perhaps I'm wrong and didn't do it correctly.  Any comments from other 
macppc users?


On Apr 24, 2006, at 10:07, Antoine Jacoutot wrote:


Maybe this from the INSTALL.macppc document might help you :

"If the disk is partitioned using MBR, the bootloader is
automatically installed. However because fdisk is not LBA
knowledgeable it may be necessary to run the 'b' command in
disklabel to allow OpenBSD to use the entire disk."

Cheers...

--
Antoine




HOWTO Install MySQL GUI Admin / Query Browser on OpenBSD 3.7

2005-09-21 Thread Keith Richardson
Hello,

I have put together a guide on building
mysql-administrator and mysql-query-browswer on
OpenBSD.  Below is a text version (html version is
available; I can send it to anyone interested). 

I have submitted the html version to daniel at
openbsdsupport.org.  

This is a work in progress.  Any help testing,
commenting, expanding,
correcting, etc... is always appreciated.


One change I am not sure about;
mysql-administrator/source/linux/MAServerLogsPanel.cc
(I replaced
_XOPEN_SOURCE with _GNU_SOURCE; otherwise the
compiler complains
about missing math functions)

Thanks,
Keith Richardson


HOWTO Install MySQL ADMIN/QUERY GUI Tools



Build Requirements Administrator Query Browser
References Source
Locations Author


BUILD REQUIREMENTS

The build requirements are for the administrator gui.

650 MB for source builds.  Disk spaced used by package
installations is
unknown. 
download source code for gtkmm 2.2, libsigc++-1.2.7, 
mysql-administrator and/or mysql-query-browser

install package mysql-client-4.0.23 (this installs the
server as well) 
install package gtk+2-2.4.14.tgz install package
gmake-3.80p0.tgz 
install package m4-1.4.tgz (required for libsigc++1.2)

build from source: libsigc++-1.2.7 (required for gtkmm
2.2) 
install package pkgconfig-0.15.0.tgz (required for
gtkmm 2.2)
build from source: gtkmm 2.2 (can be installed with
gtkmm 1.2)
install package libglade2-2.4.0p0.tgz install package
pcre-4.5.tgz


MYSQL-ADMINISTRATOR

If you plan on connecting to a MySQL database < 5.0.3
(which is most of
us), you should install 1.0.22a, not 1.1.14.

For user administration (and probably other features),
mysql-admin
1.1.14 needs to connect to a MySQL 5.0.3 database. 
This version of
mysql-admin is sending the SQL query select * from
mysql.procs_priv 
and, when that fails, mysql-admin will give the
"Could not retrieve
user privilege information." error dialog.

You do not need to build against MySQL 5.0.3; building
either version of
the administrator will work against MySQL 4.0.23p1.

build mysql-gui-common found inside unpacked
directory. modify
./source/linux/MInstanceInfo.cc modify
./source/linux/MAServerLogsPanel.cc (admin-1.0.22a
only) execute the
following commands

mv
./images/icons/png/maintree/16x16_StartStopService.png644
\

./images/icons/png/maintree/16x16_StartStopService.png

mv
./library/tests/test_get_cnf_value/t/common.test.query644
\

./library/tests/test_get_cnf_value/t/common.test.query

mv 
./library/tests/test_update_cnf/test_update_cnf.vcproj644
\

./library/tests/test_update_cnf/test_update_cnf.vcproj

mv
./library/tests/test_get_all_cnf_sections/test_priv.sh644
\

./library/tests/test_get_all_cnf_sections/test_priv.sh

mv
./images/icons/png/sections/startup_variables_gray.png644
\

./images/icons/png/sections/startup_variables_gray.png

mv
./images/icons/png/maintree/24x24_StartStopService.png644
\

./images/icons/png/maintree/24x24_StartStopService.png

mv
./res/mac/English.lproj/ServerConnections.nib/info.nib644
\

./res/mac/English.lproj/ServerConnections.nib/info.nib

mv
./res/mac/English.lproj/ServerInformation.nib/info.nib644
\

./res/mac/English.lproj/ServerInformation.nib/info.nib

mv
./res/mac/English.lproj/DataFileEditor.nib/classes.nib644
\

./res/mac/English.lproj/DataFileEditor.nib/classes.nib

mv
./res/mac/English.lproj/HealthGraphEditor.nib/info.nib644
\

./res/mac/English.lproj/HealthGraphEditor.nib/info.nib

mv
./res/mac/English.lproj/ServiceControl.nib/classes.nib644
\

./res/mac/English.lproj/ServiceControl.nib/classes.nib
mv  ./source/mac/MySQL\
Administrator.xcode/akojima.pbxuser644 \
./source/mac/MySQL\
Administrator.xcode/akojima.pbxuser
mv  ./source/mac/MySQL\
Administrator.xcode/project.pbxproj644 \
./source/mac/MySQL\
Administrator.xcode/project.pbxproj

./configure; gmake; gmake install


QUERY-BROWSER

Coming soon


MYSQL GUI COMMON

My advice is to build the mysql-gui-common that came
with the GUI tool
you are installing.  If you are installing both query
browswer and
administator, you should build each mysql-gui-common.
 Make sure you
give configure the same prefix you gave the enclosing
gui tool
(either query browser or administrator)

modify ./library/source/myx library.c (admin-1.0.22a
only) 
mv
./library/tests/read_international/read_international.cpp644
\

./library/tests/read_international/read_international.cpp
./configure
--prefix=/same/prefix/as/parent/admin/or/query; gmake;
\
gmake install


SOURCE CODE CHANGES

mysql-gui-common/library/source/myx_library.c

--- mysql-gui-common/library/source/myx_library.c.dist
   Tue Sep 20 18:54:13 2005
+++ mysql-gui-common/library/source/myx_library.c 
   Tue Sep 20 18:54:45 2005
@@ -581,11 +581,

Re: Java with mozilla-firefox

2005-10-02 Thread Keith Richardson

Running firefox from the shell gives me this:
$ firefox
INTERNAL ERROR on Browser End: Exec of "java_vm" failed: 2
<
System error?:: No such file or directory
Gdk-ERROR **: Fatal IO error 9 (Bad file descriptor) on X server :0.0.
INTERNAL ERROR on Browser End: Could not read ack from child process
System error?:: Resource temporarily unavailable

It doesn't drop a .core file though.

Is this information enough?

Friendly,
Rico.


Applets worked for me after installing java 1.4.2 via the ports tree, 
mozilla-firefox through the packages tree and changing my settings in 
login.conf. 

Going off your error message above, I would guess you are missing a file 
in your java/firefox installation or the permissions are wrong.


Here is my file count:

$ find /usr/local/jdk* | wc -l
   2719
$ find /usr/local/mozilla-firefox/ | wc -l
632

You can find to look for files missing world-read permission.  See the 
man pages for more details.


If all else fails, follow up on Josh's advice on using gdb

Good luck,
Keith Richardson



Re: Add a PF rule from the command line

2005-10-09 Thread Keith Richardson

Roy Morris wrote:


I would like to be able to add/remove a rule from
the command line on those systems which
may have only a ram drive and or read only
pf.conf. Anyone know how to do it, or would
you need to create a new pf.conf in memory
someplace and then load it?

Thanks
Roy


 




Try describing your ruleset in memory using language constructs>.  From that meta-data you could create the actual 
ruleset in a syntax that pf understands.


  pfctl -s all | your_script -read
  # add /remove rules
  # add /remove rules
  # add /remove rules
  ...
  ...
  your_script -write | pfctl -F all -f -

Since order matters, you would need to recreate the entire ruleset from 
your meta-data every time a rule was added/deleted then reload it using 
pfctl


Not exactly a simple solution but the only one my sleep-deprived brain 
came up at the moment.


Check out man pages for pfctl, etc...  They might inspire an easier solution

-Keith



Re: Install Berkeley DB both v3 and v4 from ports problem on Openbsd 3.7

2005-10-13 Thread Keith Richardson

Pavel M. Ivanchev wrote:

I am using OpenBSD 3.7 and updated the port tree and try to install 
DB. Just the port tree is cvs version.
I have installed one-two monts ago in the same way the same things but 
with previous version ot db and again ot Openbsd 3.7 .
Now the difference is just that there is new patch in the version of 
db- p3

Lio Goehrs wrote:


The port version and OS version must match.  If you are runnning OpenBSD 
3.7 - release, you should grab the 3.7 release version of ports.tar.gz.


Going off another thread from a day or two ago, the @pkgpath is 
something new that 3.7 pkg_* tools don't know about.


-Keith Richardson



Re: pf and linksys WRT55G not getting along

2005-10-17 Thread Keith Richardson

Read the Networking FAQ and PF Users Guide.

http://www.openbsd.org/faq/index.html

Going off some comments you made (like trying to ping a wireless client 
from your firewall), you will also want to read up on Network Address 
Translation, which is what your wireless router is doing for all your 
wireless clients.  A high-level explanation is given in PF Users Guide 
but I would suggest reading more in-depth (There are links to the RFC's 
there)


http://www.openbsd.org/faq/pf/nat.html



Bob Ababurko wrote:

I cannot ping the inside interface(192.168.1.1) of the pf box from the 
MAC OS X(192.168.69.50)
* I can ping the outside interface(192.168.1.2) of the linksys from 
the MAC OS X(192.168.69.50)

***so basically the two routers are not talking




But later Bob Ababurko wrote:

One interesting thing.  I can connect to the pf box(192.168.1.1) from 
the MAC OS X(192.168.69.50) via ssh.

-and in pf.conf:



If you can connect to ssh port from 192.168.69.50 to 192.168.1.1, then 
communication is working, at least for TCP, port 23.




Upgrade + ports question

2005-10-18 Thread Keith Richardson

Hello,

This is my first attempt at actually upgrading a system.  Usually, it 
was quicker to simply reinstall from scratch but now that is not the 
case. So...


When I upgrade to from 3.7 -> 3.8, I know I have to update my ports as 
well.  Before I do any "Oh My God!" blunders, I would like to see if I 
am missing anything.


I am running i386 3.7-release currently.  Target is 3.8-stable.  My plan 
so far:


1) Upgrade to OpenBSD 3.8 binary snapshots since 3.8 release will not be 
available for a few weeks. 


2)fetch and build OpenBSD 3.8 -stable using the following FAQ as a guide.

http://www.openbsd.org/faq/faq5.html

3) Backup my existing /usr/ports

4) Update ports to 3.8-stable:

From: http://www.se.openbsd.org/anoncvs.html
 (modified for my shell/desired tag)

# *export [EMAIL PROTECTED]:/cvs*
# *cd /usr*
# *cvs -q get -rOPENBSD_3_8 -P ports*


5) make; make install in /usr/ports/devel/jdk/... (yes, this is only for 
java)



Am I missing and/or doing anything wrong?

-Keith


OpenBSD 3.7 (GENERIC) #50: Sun Mar 20 00:01:57 MST 2005
   [EMAIL PROTECTED]:/usr/src/sys/arch/i386/compile/GENERIC
cpu0: AMD Athlon(tm)  ("AuthenticAMD" 686-class) 1.20 GHz
cpu0: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE

real mem  = 1073258496 (1048104K)
avail mem = 972713984 (949916K)
using 4278 buffers containing 53764096 bytes (52504K) of memory
mainbus0 (root)
bios0 at mainbus0: AT/286+(56) BIOS, date 01/21/03, BIOS32 rev. 0 @ 0xfb520
apm0 at bios0: Power Management spec V1.2
apm0: AC on, battery charge unknown
pcibios0 at bios0: rev 2.1 @ 0xf/0xdf94
pcibios0: PCI IRQ Routing Table rev 1.0 @ 0xfdef0/160 (8 entries)
pcibios0: PCI Exclusive IRQs: 5 10 11
pcibios0: PCI Interrupt Router at 000:17:0 ("VIA VT8366 ISA" rev 0x00)
pcibios0: PCI bus #1 is the last bus
bios0: ROM list: 0xc/0x8000 0xc8000/0x4000
cpu0 at mainbus0
pci0 at mainbus0 bus 0: configuration mode 1 (no bios)
pchb0 at pci0 dev 0 function 0 "VIA VT8366 PCI" rev 0x00
ppb0 at pci0 dev 1 function 0 "VIA VT8366 AGP" rev 0x00
pci1 at ppb0 bus 1
vga1 at pci1 dev 0 function 0 "Matrox MGA G400/G450 AGP" rev 0x04
wsdisplay0 at vga1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
"AT&T/Lucent FW322 1394" rev 0x61 at pci0 dev 10 function 0 not configured
ohci0 at pci0 dev 11 function 0 "NEC USB" rev 0x41: irq 11, version 1.0
usb0 at ohci0: USB revision 1.0
uhub0 at usb0
uhub0: NEC OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 3 ports with 3 removable, self powered
ohci1 at pci0 dev 11 function 1 "NEC USB" rev 0x41: irq 11, version 1.0
usb1 at ohci1: USB revision 1.0
uhub1 at usb1
uhub1: NEC OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub1: 2 ports with 2 removable, self powered
ehci0 at pci0 dev 11 function 2 "NEC USB" rev 0x02: irq 10
ehci0: EHCI version 0.95
ehci0: companion controllers, 3 ports each: ohci0 ohci1
usb2 at ehci0: USB revision 2.0
uhub2 at usb2
uhub2: NEC EHCI root hub, class 9/0, rev 2.00/1.00, addr 1
uhub2: single transaction translator
uhub2: 5 ports with 5 removable, self powered
"Texas Instruments ACX100A" rev 0x00 at pci0 dev 12 function 0 not 
configured
pciide0 at pci0 dev 13 function 0 "Promise PDC20265" rev 0x02: DMA, 
channel 0 configured to native-PCI, channel 1 configured to native-PCI

pciide0: using irq 10 for native-PCI interrupt
pciide0: channel 0 disabled (no drives)
pciide0: channel 1 disabled (no drives)
cmpci0 at pci0 dev 14 function 0 "C-Media Electronics CMI8738/C3DX 
Audio" rev 0x10: irq 11

audio0 at cmpci0
pcib0 at pci0 dev 17 function 0 "VIA VT8366 ISA" rev 0x00
pciide1 at pci0 dev 17 function 1 "VIA VT82C571 IDE" rev 0x06: ATA100, 
channel 0 configured to compatibility, channel 1 configured to compatibility

wd0 at pciide1 channel 0 drive 0: 
wd0: 16-sector PIO, LBA, 38166MB, 78165360 sectors
wd0(pciide1:0:0): using PIO mode 4, Ultra-DMA mode 5
pciide1: channel 1 disabled (no drives)
vr0 at pci0 dev 18 function 0 "VIA RhineII-2" rev 0x70: irq 11 address 
00:50:2c:01:b5:26

icsphy0 at vr0 phy 1: ICS1893 10/100 PHY, rev. 1
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 (mux 1 ignored for console): 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: 
sysbeep0 at pcppi0
lpt0 at isa0 port 0x378/4 irq 7
it0 at isa0 port 0x290/8: IT87
npx0 at isa0 port 0xf0/16: using exception 16
pccom0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo
pccom1 at isa0 port 0x2f8/8 irq 3: ns16550a, 16 byte fifo
fdc0 at isa0 port 0x3f0/6 irq 6 drq 2
fd0 at fdc0 drive 0: 1.44MB 80 cyl, 2 head, 18 sec
biomask ef65 netmask ef65 ttymask ffe7
pctr: user-level cycle counter enabled
mtrr: Pentium Pro MTRR support
dkcsum: wd0 matched BIOS disk 80
root on wd0a
rootdev=0x0 rrootdev=0x300 rawdev=0x302



Re: OpenBSD's 10th birthday -- how about a present?

2005-10-19 Thread Keith Richardson

STeve Andre' wrote:


On Tuesday 18 October 2005 21:07, Paul Greene wrote:
 


STeve Andre' wrote:
   


 Seeing all sorts of good wishes to the project, but I haven't
seen any gifts, yet. ;-)

 I just paypaled $25 to the project, as a birthday present.  Given
what we all get from this OS, OpenBSD deserves something.

 Can I get 10 others to make some kind of donation?  It doesn't
have to be a lot...

--STeve Andre'
 


Well, I finally got out the credit card and actually paid for some CD's.

Does that count?

Paul
   



Sure it does.  It helps the project.  Thank you.

So, four people donating money and one buying a CD set.

...Do I hear more?

--STeve Andre'


 

CD + shirt + $100 donation... and I am still getting the better end of 
the deal.


Buono complianno OBSD

-Keith



Re: Prelude under OpenBSD

2005-10-25 Thread Keith Richardson
http://www.openbsd.org/3.8_packages/


 On 10/25/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Hi all,
>
> Will be included prelude ids suite on ports for OpenBSD 3.8?
> Somebody has installed prelude 0.9.6 release under obsd 3.7? any hints?
>
> Thank you.
>
> --
> CL Martinez
> carlopmart {at} gmail {d0t} com



Re: httpd question - solved

2006-02-05 Thread Keith Richardson

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


 

If you get your IP dynamically from you ISP, your IP can potentially 
change every max-lease-time


This will handle the pesty case of your IP changing.

1. dyndns.org - get a free subdomain to map to your IP. 
2. ddclient package - updates your DNS whenever your IP changes. 

Although the package just copies over the perl script, I add a 
user/group _ddclient.  If you are still running 3.8-release, consider 
creating a folder /etc/ddclient, chown / chgrp and move the conf , cache 
and pid file to that folder.  -current already does this for you (at 
least, the folder part.  I don't think the @newuser, @newgroup will be 
added since people not running in daemon mode don't need it)


before you ask, -current's dhclient does not support hooks. 


-Keith Richardson