Re: Looping in ksh

2006-12-20 Thread Bruno Carnazzi
2006/12/20, Uwe Dippel [EMAIL PROTECTED]: I needed some little script; and - as usual - tried it out by typing: i=0 uplim=10 while [ $i -lt $uplim ] do ((i=i+1)) echo $i done 1 2 3 4 5 6 7 8 9 10 Hi, This is a shell rewrite of jot(1). Try : $ jot 10 1 10 Best Regard, Bruno.

GENERIC ou GENERIC.MP for a SuperMicro SC513 ?

2006-11-28 Thread Bruno Carnazzi
Hi misc, I've installed (without a problem, as always, thank you devs !) OpenBSD/i386 4.0-release on a SuperMicro SC513. This server is powered by an Intel Dual-core Pentium 3.0GHz. When I boot whith bsd.mp, I've got a ioapic0: pin 16 shares different IPL interrupts (40..50), degraded

trouble with IPv6 address with pkg_add(1)

2006-11-28 Thread Bruno Carnazzi
Hi all, When using PKG_PATH=ftp://ftp.freenet.de/pub/ftp.openbsd.org/pub/OpenBSD/snapshots/packages/i386 with pkg_add(1), updating package with sudo pkg_add -ui -F update -F updatedepends fails, saying no package in PKG_PATH. When using

Re: iwi0 connection frustration

2006-11-28 Thread Bruno Carnazzi
2006/11/28, Vim Visual [EMAIL PROTECTED]: As I wrote in the previous email, I have pkg_add'ed the damien firmware. this means that I did sudo pkg_add http://damien.bergamini.free.fr/packages/openbsd/iwi-firmware-3.0.tgz the files /etc/firmware/iwi-license /etc/firmware/iwi-boot

Re: trouble with IPv6 address with pkg_add(1)

2006-11-28 Thread Bruno Carnazzi
2006/11/28, Marcus Popp [EMAIL PROTECTED]: On 2006-11-28T20:58, Bruno Carnazzi wrote: ... I don't think this problem is caused by IPv6. Have you tried adding a slash, as stated in man 1 pkg_add, to the PKG_PATH? You are right : adding an ending slash did the trick. Thank you and sorry

Can not boot OpenBSD/macppc 4.0-release from cd40.iso on PowerBook G4 15

2006-11-23 Thread Bruno Carnazzi
Hi misc, I'd like to evaluate OpenBSD/macpcc as a replacement for Mac OS X (or dual boot) on my PowerBook G4 15 (fr keyboard). While OpenBSD 3.9 boots flawlessly, OpenBSD 4.0 hangs with a kernel panic (cd40.iso)... As I reboot and try to retrieve my dmesg, I see that OpenFirmware keeps track

Re: Ralink broken after last update

2006-10-31 Thread Bruno Carnazzi
2006/10/31, Damien Bergamini [EMAIL PROTECTED]: | I'm in this case too using OpenBSD 4.0-current (GENERIC) #1163: Thu | Oct 19 14:40:44 MDT 2006 : | | ural0 at uhub0 port 1 | ural0: Nintendo Nintendo Wi-Fi USB Connector, rev 2.00/0.01, addr 2 | ural0: MAC/BBP RT2571 (rev 0x05), RF RT2526,

defaults for OpenSSH

2006-10-30 Thread Bruno Carnazzi
Hi misc, In order to have sane configuration defaults in OpenBSD, what are the good reasons to not disable ssh root access, and to not disable sshv1 protocol by default ? Best regards, Bruno.

Re: Ralink broken after last update

2006-10-30 Thread Bruno Carnazzi
2006/10/30, Erki Malling [EMAIL PROTECTED]: I'm running Canyon CN-WF511 wireless PCI card (Ralink RT2561S) in hostap mode in my 30m2 flat, serving one laptop next room. The wireless quality has always been less than stellar, even when few meters from the OpenBSD box antenna. But it works for

Re: defaults for OpenSSH

2006-10-30 Thread Bruno Carnazzi
2006/10/30, daniel [EMAIL PROTECTED]: Bruno Carnazzi wrote: In order to have sane configuration defaults in OpenBSD, what are the good reasons to not disable ssh root access, and to not disable sshv1 protocol by default ? It's insane if you can't login after a fresh install... But a fresh

Package update candidates

2006-10-22 Thread Bruno Carnazzi
Hi misc, When upgrading some packages with 'pkg_add -u', I sometimes see : No need to update uptodate_package and Candidates for updating package - the_same_package_the_same_version What's the difference ? Please notice that in first case, the package seems ignored, and in the second case,

Re: pppoe slow on openbsd

2006-10-20 Thread Bruno Carnazzi
Hi, I don't understand your hunger. My home adsl router is OpenBSD driven and I have no problem using kernel pppoe for more than year (since 3.8). As I live on Reunion Island, I suppose my ISP conforms to european standards. I can play with my 2Mbps bandwidth with no trouble at all. Maybe you

Re: pppoe slow on openbsd

2006-10-20 Thread Bruno Carnazzi
2006/10/20, Vijay Sankar [EMAIL PROTECTED]: FWIW, OpenBSD PPPoE implementation has been more robust for me than anything else I have used, including Windows, and I have used it since OpenBSD version 3.0 -- userland initially and later kernel-mode. I am not sure whether there are better ways to

libevent in OpenBSD/i386 3.9-release

2006-10-19 Thread Bruno Carnazzi
Hi misc, I'm currently playing with libevent and there is something that I don't understand. I've made a small echo server using bufferevent_read and bufferevent_write. Here's the read_handler : 96 void 97 client_read(struct bufferevent *bufev, void *arg) 98 { 99 char buf[BUFLEN];

Re: Happy Birthday OpenBSD!

2006-10-18 Thread Bruno Carnazzi
Theo president ! :) 2006/10/18, Edgars [EMAIL PROTECTED]: Yee! -Original message- From: Melameth, Daniel D. [EMAIL PROTECTED] Date: Wed, 18 Oct 2006 15:40:01 +0300 To: misc@openbsd.org Subject: Happy Birthday OpenBSD! Oct 18 OpenBSD born, Wednesday 08:37:01 GMT, 1995 OpenBSD

Re: Happy Birthday OpenBSD!

2006-10-18 Thread Bruno Carnazzi
2006/10/18, ropers [EMAIL PROTECTED]: On 18/10/06, Bob Beck [EMAIL PROTECTED] wrote: Theo president ! :) What an interesting idea. I would vote for him... I wouldn't, and I count him as a friend. The president is a puppet whore of special interest groups and shitheads, made

ksh .profile not evaluated using screen, xterm or subshells

2006-10-16 Thread Bruno Carnazzi
Hi misc, I export/alias some important stuff in my ksh .profile. It works normally, but since I run screen or xterm, my .profile is not evaluated (or even if I launch a sub-shell). I know there is a difference between login shell and sub shell but how can I have some environment variables and

Re: ksh .profile not evaluated using screen, xterm or subshells

2006-10-16 Thread Bruno Carnazzi
2006/10/16, Paul de Weerd [EMAIL PROTECTED]: On Mon, Oct 16, 2006 at 08:52:26PM +0400, Bruno Carnazzi wrote: | Hi misc, | | I export/alias some important stuff in my ksh .profile. It works | normally, but since I run screen or xterm, my .profile is not | evaluated (or even if I launch a sub

dmesg2dot

2006-10-15 Thread Bruno Carnazzi
Hi misc, Here's a small awk script that convert OpenBSD dmesg into graphviz dot format. Just for sharing and/or comments... Best regards, Bruno. #!/usr/bin/awk -f BEGIN { unknow=0; print digraph dmesg {; } { if ($2 == at) { dev=$1; pdev=$3; desc=$0; sub(/:/, , pdev); gsub(//, \\\,

C unit tests seen by OpenBSD developpers

2006-10-14 Thread Bruno Carnazzi
Hi misc, I'm currently learning C. In many languages, you hear lots of stuff likes 'unit testing', 'refactoring', 'agile programming' and others... It seems that these techniques are not very present in C programming (whereas check framework is in packages, it seems too complex) Looking

Re: graphviz rendering of installed ports dependencies

2006-10-08 Thread Bruno Carnazzi
$REQ ] ; then echo \t\$PKG\ [color=\$BOTTOM_COLOR\, style=\filled\]; fi done echo } 2006/10/8, Bruno Carnazzi [EMAIL PROTECTED]: First blood : #!/bin/sh echo digraph pkg_dep echo { for PKG in $(pkg_info | cut -d' ' -f1) do PKG_INFO=$(pkg_info -c $PKG | tail -n+4

Re: graphviz rendering of installed ports dependencies

2006-10-08 Thread Bruno Carnazzi
echo \t} done fi echo } exit 0 2006/10/8, Bruno Carnazzi [EMAIL PROTECTED]: Now, with colors : [SNIP] 2006/10/8, Bruno Carnazzi [EMAIL PROTECTED]: First blood : [SNIP] But for my big packages set, it does not produce a beautiful graph. Someone know how to beautify

Re: graphviz rendering of installed ports dependencies

2006-10-08 Thread Bruno Carnazzi
://mailman.research.att.com/pipermail/graphviz-interest/2006q1/003421.html Best regards, Bruno. 2006/10/8, Bruno Carnazzi [EMAIL PROTECTED]: Now, with colored nodes, colored dependencies, and options handling : [SNIP] 2006/10/8, Bruno Carnazzi [EMAIL PROTECTED]: Now, with colors : [SNIP] 2006/10/8

graphviz rendering of installed ports dependencies

2006-10-07 Thread Bruno Carnazzi
Hi misc, Someone knows if this kind of stuff already exists ? Best regards, Bruno.

Re: graphviz rendering of installed ports dependencies

2006-10-07 Thread Bruno Carnazzi
sorry, s/ports/packages/ 2006/10/7, Bruno Carnazzi [EMAIL PROTECTED]: Hi misc, Someone knows if this kind of stuff already exists ? Best regards, Bruno.

Re: graphviz rendering of installed ports dependencies

2006-10-07 Thread Bruno Carnazzi
]; zipios++-0.1.5.9p0 [label=zipios++-0.1.5.9p0\njava-like zip interface]; wesnoth-1.0p1 - zipios++-0.1.5.9p0; } 2006/10/7, Matthias Kilian [EMAIL PROTECTED]: On Sat, Oct 07, 2006 at 10:32:21PM +0400, Bruno Carnazzi wrote: Someone knows if this kind of stuff already exists ? I just found

Slogan for OpenBSD goodies

2006-10-05 Thread Bruno Carnazzi
Hi misc, I was thinking to a slogan that could be printed on some openbsd goodies : Free software can't exist without Free hardware. I think this is really the core of the current free software problem. Best regards, Bruno.

Re: internal modem

2006-10-04 Thread Bruno Carnazzi
2006/10/4, Fred Crowson [EMAIL PROTECTED]: ivorob wrote: Ok, Thanks. I try to investigate this problem. If you have some links about WinModem programming and something about creating drivers in OpenBSD, please, send it me ;) Thanks in advance. PS. I built custom kernel because bluetooth

[Love Letter] Functionnality vs State of mind

2006-10-04 Thread Bruno Carnazzi
Hi misc, I'd just like to say that nowadays, in free software world (real free software, not open source), from my point of view, I feel you have to choose between featurefullness and state of mind. By state of mind, I mean project goals and moral values. From this point of view, I love

List of OpenBSD CVS commiters

2006-10-02 Thread Bruno Carnazzi
Hi all, Is there a way to get a list of the OpenBSD project CVS commiters per domain (kernel, userland, ports...) ? I think it could be usefull to have an idea of who's who... Best regards, Bruno.

Re: List of OpenBSD CVS commiters

2006-10-02 Thread Bruno Carnazzi
2006/10/2, Alexander Yurchenko [EMAIL PROTECTED]: On Mon, Oct 02, 2006 at 01:12:40PM +0400, Bruno Carnazzi wrote: Hi all, Is there a way to get a list of the OpenBSD project CVS commiters per domain (kernel, userland, ports...) ? I think it could be usefull to have an idea of who's who

[OT] Raw socket programming

2006-10-01 Thread Bruno Carnazzi
Hi misc, For my own education, I'm writing in C a PPTP proxy for pf-driven NAT-boxes, based on libevent. A PPTP session is made of a TCP control connection and a GRE tunnel. I've got no trouble handling the control connection, but I don't know how to handle GRE packets. Actually, I bind a first

Re: [OT] Raw socket programming

2006-10-01 Thread Bruno Carnazzi
2006/10/2, Joachim Schipper [EMAIL PROTECTED]: On Sun, Oct 01, 2006 at 04:25:42PM +0400, Bruno Carnazzi wrote: Hi misc, For my own education, I'm writing in C a PPTP proxy for pf-driven NAT-boxes, based on libevent. A PPTP session is made of a TCP control connection and a GRE tunnel. I've

Re: usable winxp ipsec client... referenced in a message but I can't find the archive

2006-09-23 Thread Bruno Carnazzi
Hello, I've seen this in action and it seems to be quiet powerfull : http://sourceforge.net/projects/lsipsectool/ Best regards, Bruno. 2006/9/23, Peter Landry [EMAIL PROTECTED]: Hello, http://marc.theaimsgroup.com/?l=openbsd-miscm=115409112232227w=2 references a usable ipsec client for

Problem installing jre-1.5.0p9 without X11

2006-09-11 Thread Bruno Carnazzi
Hi all, I'd like to install jre-1.5.0p9 on my production server, which are installed without X11. jre-1.5.0p9 relies on openmotif, which relies on X11. This jre will run tomcat webapps, so openmotif will not be really used. I try to install openmotif to satisfy dependencies with some force

Re: Problem installing jre-1.5.0p9 without X11

2006-09-11 Thread Bruno Carnazzi
2006/9/11, Tobias Ulmer [EMAIL PROTECTED]: On Mon, Sep 11, 2006 at 04:26:23PM +0400, Bruno Carnazzi wrote: Hi all, I'd like to install jre-1.5.0p9 on my production server, which are installed without X11. jre-1.5.0p9 relies on openmotif, which relies on X11. This jre will run tomcat

OpenBSD/i386 4.0 Install CD successfull boot on IBM HS20 BladeCenter !

2006-09-05 Thread Bruno Carnazzi
Hi misc, I've spent some time in trying to install openbsd on some IBM HS20 and I didn't manage with 3.8 and 3.9. While trying with the 4.0-beta CD, I've found a way to boot. As I don't have some erasable HS20 available, I can't install it. If someone can post here a dmesg after installation,

Re: OpenBSD/i386 4.0 Install CD successfull boot on IBM HS20 BladeCenter !

2006-09-05 Thread Bruno Carnazzi
2006/9/5, Bruno Carnazzi [EMAIL PROTECTED]: Hi misc, I've spent some time in trying to install openbsd on some IBM HS20 and I didn't manage with 3.8 and 3.9. While trying with the 4.0-beta CD, I've found a way to boot. As I don't have some erasable HS20 available, I can't install

Unable to build jdk-1.4.2p7 on OpenBSD/i386 3.9-GENERIC

2006-09-04 Thread Bruno Carnazzi
Hi misc, I can't build jdk-1.4.2p7 on my openbsd box (3.9 running in MS-VirtualServer)... Can somebody help ? jdk-1.3.1p6, jre-1.3.1p6 and jdk-linux-1.3.1_16 succeeded. Here's the logs : ===portslogger=== +++ Mon Sep 4 03:38:57 MDT 2006 === Building for jdk-1.4.2p7 *** WARNING: you may see

Re: Missing section in FAQ - 6 Networking ?

2006-09-04 Thread Bruno Carnazzi
2006/9/3, Nick Holland [EMAIL PROTECTED]: Bruno Carnazzi wrote: Hi misc, There is a numbering problem or a missing section in FAQ - 6 Networking : http://www.openbsd.org/faq/faq6.html#6.8 Not quite sure how that's a problem. Things get added and removed. I have an aversion

5.1 sound card support in OpenBSD

2006-09-04 Thread Bruno Carnazzi
Hi misc, I can't find informations on 5.1 sound card support in OpenBSD. I know OpenBSD sound system relies on SunAudio, but I'm not aware of its capabilities. Best regards, Bruno.

Missing section in FAQ - 6 Networking ?

2006-09-03 Thread Bruno Carnazzi
Hi misc, There is a numbering problem or a missing section in FAQ - 6 Networking : http://www.openbsd.org/faq/faq6.html#6.8 Best regards, Bruno.

Unable to find startxfce under OpenBSD/i386 3.9

2006-08-29 Thread Bruno Carnazzi
Hi misc, I'd like to use Xfce4 as my main desktop environment, and I can't run it under OpenBSD :( I've installed the following packages through pkg_add(4) : atk-1.10.3p1accessibility toolkit used by gtk+ cairo-1.0.2p0 dbh-1.0.24p0library to create disk based hashtables

Re: Unable to find startxfce under OpenBSD/i386 3.9

2006-08-29 Thread Bruno Carnazzi
2006/8/29, Jasper Lievisse Adriaanse [EMAIL PROTECTED]: On Tue, Aug 29, 2006 at 03:21:28PM +0400, Bruno Carnazzi wrote: Hi misc, I'd like to use Xfce4 as my main desktop environment, and I can't run it under OpenBSD :( I've installed the following packages through pkg_add(4) : [...] I

Daemon supervisor

2006-08-21 Thread Bruno Carnazzi
Hi misc, I'd like to implement a daemon supervisor that could automatically restart a daemon when it crashes. Can I use /etc/ttys for this (automatic respawn) ? Is that a good practice ? ex : tty00 /usr/local/sbin/squid unknown on Thank you, Bruno.

New (?) OpenBSD-based live-dvd

2006-08-17 Thread Bruno Carnazzi
... Bundled with OpenOffice and more... :) http://quetzal.matem.unam.mx/ Have fun, Bruno.

Re: New (?) OpenBSD-based live-dvd

2006-08-17 Thread Bruno Carnazzi
2006/8/17, Rod.. Whitworth [EMAIL PROTECTED]: On Thu, 17 Aug 2006 11:15:57 +0400, Bruno Carnazzi wrote: ... Bundled with OpenOffice and more... :) I downloaded it. No OOo component ran when clicked. I don't have time to find out why yet. The documentation explains the needed tricks to make

Re: Confirmation From ATI Developer

2006-05-15 Thread Bruno Carnazzi
wtf ? 2006/5/14, [EMAIL PROTECTED] [EMAIL PROTECTED]: Dear Theo de Raadt and Richard Stallman, Thank you for visiting ATI.COM ! This is an AUTOMATIC RESPONSE which confirms that your request has been successfully received by our server and will be processed. Please do not reply to this message,

typing errors in http://www.openbsd.org/faq/pf/fr/filter.html

2006-05-14 Thread Bruno Carnazzi
Hi all, Some reading notes for french readers : * in http://www.openbsd.org/faq/pf/fr/filter.html#intro : chaque paquet est ivalui ` l'aune de toutes les rhgles avant qu'une dicision finale ne soit prise. should be (typing error) : chaque paquet est ivalui ` l'aide de toutes les rhgles

Driver source

2006-05-14 Thread Bruno Carnazzi
Hi all, In OpenBSD, what's the simplest driver source to read to have a good idea of what's in a driver code (for some hardware device) ? Best regards, Bruno.

Porting some IPTables conn_track extension to OpenBSD

2006-05-13 Thread Bruno Carnazzi
Hi all, Dispite this silly object, I'm interesting in porting some iptables conn_track listed here : http://www.netfilter.org/documentation/HOWTO//netfilter-extensions-HOWTO-5.html. I'm mostly interested in the pptp conntrack, which I need for my nat-box. I'd like an advise : what's the most

hostapd small bug

2006-05-13 Thread Bruno Carnazzi
Hi all, looking at /var/log/daemon, it seems that hostapd syslog timestamp does not take care of local timezone : May 13 16:49:12 puffy test_syslog[6582]: This is just a test for my c studies May 13 16:49:18 puffy hostapd[18915]: ural0: (rate: 100/8 sec) 00:0d:0b:c3:cb:bb 00:0d:93:ed:ee:2b,

Re: PF and PPTP

2006-05-12 Thread Bruno Carnazzi
, UDP, IP, ICMP, GRE...). What are the difference between OpenBSD ftp-proxy and IPTables ftp_conn_track.o ? What's the best design ? Best regards, Bruno. 2006/5/10, Luiz Souza [EMAIL PROTECTED]: Bruno Carnazzi wrote: 2006/5/10, Damian Gerow [EMAIL PROTECTED]: Thus spake Bruno Carnazzi ([EMAIL

Re: Recommendations for an OpenBSD-based Backup Solution

2006-05-12 Thread Bruno Carnazzi
2006/3/21, Peter [EMAIL PROTECTED]: --- Donald J. Ankney [EMAIL PROTECTED] wrote: I threw together a Perl script that uses tar and external firewire drives. Tar has flags that will let it backup over SMB (for the windows boxes) and one can always do use scp (via certificates) piped through

Re: PF and PPTP

2006-05-10 Thread Bruno Carnazzi
2006/5/10, Damian Gerow [EMAIL PROTECTED]: Thus spake Bruno Carnazzi ([EMAIL PROTECTED]) [10/05/06 01:37]: : My home PF NATing gateway route just one PPTP tunnel (for my laptop), : and I don't need special thing for it to work (GRE enabled via sysctl : and pf must pass GRE proto

Re: PF and PPTP

2006-05-09 Thread Bruno Carnazzi
Hi, My home PF NATing gateway route just one PPTP tunnel (for my laptop), and I don't need special thing for it to work (GRE enabled via sysctl and pf must pass GRE proto). Is there a special case when you have multiple PPTP (GRE) tunnels that need proxying ? Best regards, Bruno. 2006/5/10,

Re: FTP download/CD sales ratio

2006-05-04 Thread Bruno Carnazzi
2006/5/3, Bruno Carnazzi [EMAIL PROTECTED]: Hi all, I'd just want to say that I've bought OpenBSD 3.9 CD's and still not received them ! So, I've download it (one time for home, one time for job), it's easier than waiting for the CDs :) But this let me think that the estimated FTP/CD ratio

FTP download/CD sales ratio

2006-05-03 Thread Bruno Carnazzi
Hi all, I'd just want to say that I've bought OpenBSD 3.9 CD's and still not received them ! So, I've download it (one time for home, one time for job), it's easier than waiting for the CDs :) But this let me think that the estimated FTP/CD ratio is not very meaningfull (about the money

Re: Linksys support... hmm

2006-05-03 Thread Bruno Carnazzi
2006/4/30, Shane J Pearson [EMAIL PROTECTED]: Hi Lasse, On 2006.04.30, at 8:38 PM, Lasse Bach wrote: I also need to know if v5 of the WMP54G uses a Ralink Technology RT25x0 chip? Are you unable to avoid it? Maybe someone on the mailing list can provide me with an answer to: 2. Why are

Re: Default Gateway, PF, BAD State

2006-04-18 Thread Bruno Carnazzi
2006/4/6, Joachim Schipper [EMAIL PROTECTED]: On Thu, Apr 06, 2006 at 01:15:53AM +1200, Joshua Sandbrook wrote: Hello There. Ive got two openbsd gateways: 192.168.3.253 +192.168.4.254 - gateway to 192.168.4.0/24 subnet. this obsd box has a default gateway set to 192.168.3.254, and all

Multi-user Password Manager

2006-04-12 Thread Bruno Carnazzi
Hi misc, I'm looking for an open-source software solution for a multi-user password management. Ideally, it's a webapp running on OpenBSD, allowing multiple user, each can only see a subpart of the password database (ACL or things like that). I've found a lots of such project on sf.net but

Re: Multi-user Password Manager

2006-04-12 Thread Bruno Carnazzi
2006/4/12, Joachim Schipper [EMAIL PROTECTED]: On Wed, Apr 12, 2006 at 05:20:31PM +0400, Bruno Carnazzi wrote: Hi misc, I'm looking for an open-source software solution for a multi-user password management. Ideally, it's a webapp running on OpenBSD, allowing multiple user, each can

[OT] Open Source Software Minarchism

2006-04-06 Thread Bruno Carnazzi
Hi all, I'd like to understand if there is an average consensus about minarchism in pro-BSD users group (from the license point-of-view)... Do you believe that this kind of society organisation could be a great context for Open Source software in general ? Could we compare the activity of an

Re: Are we users stupid or what?

2006-04-03 Thread Bruno Carnazzi
2006/4/3, Samurai Chef [EMAIL PROTECTED]: on Sunday 02 April 2006 07:58 pm, Deanna Phillips wrote: And yeah, Linux users are generally stupid. Can help but chime in on the stupid issue... I run Windows, MPE i/X, HP-UX, OpenBSD, Linux, Oracle, and Cisco routers, and yes, sometimes, I'm

OpenBSD greatest challenge

2006-03-24 Thread Bruno Carnazzi
Hi misc, I'm a young sysadmin who really enjoy using free OSes, and especially OpenBSD, for his technical excellence, no doubt about that. I use OpenBSD for about 1 year, so I start to understand the way of thinking of the community, through misc@ reading. I take a lot of pleasure with

Install defaults

2006-03-20 Thread Bruno Carnazzi
Hi all, Why not use soft update as a default for created file system on install ? It seems to be a good practice, no ? Best regards, Bruno.

Re: Install defaults

2006-03-20 Thread Bruno Carnazzi
Thank you, you convinced me that it's not a good idea :) 2006/3/21, Nick Holland [EMAIL PROTECTED]: Bruno Carnazzi wrote: Hi all, Why not use soft update as a default for created file system on install ? It seems to be a good practice, no ? Well...assuming you: * Have some

OpenBSD/Linux centralized authentication

2006-03-18 Thread Bruno Carnazzi
Hi misc, At work, we are running a Microsoft Active Directory for our Windows Domain, who mainly provided Windows Desktop for our customers and centralized authentication. We have also several OpenBSD Linux boxes for some DNS, SFTP, Squid, CVS and also several Web-apps. We'd like to

OpenBSD's AFS informations

2006-02-25 Thread Bruno Carnazzi
Hi misc, I come to you because my enterprise will need some distributed file system in the mounths to come. We need to distribute a big file system between 2 main sites, accessed by multiples clients spreaded across differents sites. A client is nearly always a thinclient running RDP to some

Re: OpenBSD for a desktop environment ?

2006-02-16 Thread Bruno Carnazzi
to the developpers to make it possible. Best regards, Bruno. Note : Recently, NetBSD-current support wpa_supplicant. I try to use it with OpenBSD... See http://mail-index.netbsd.org/current-users/2005/10/01/0014.html 2006/2/14, Bruno Carnazzi [EMAIL PROTECTED]: Hi all, I'd like to know

pthread with Linux emulation on OpenBSD/i386 3.8-release

2006-02-16 Thread Bruno Carnazzi
Hi all, I try to run the Linux IBM Tivoli Storage Manager v5.2.2 on OpenBSD/i386 3.8-release, with linux emulation. I use a GENERIC kernel. I got the same result with GENERIC.MP (it's an SMP system). No hw pb. The goal is not to use this system in production but to evaluate the stability of

OpenBSD 3.9-beta : pf_test: pf_get_mtag returned NULL

2006-02-13 Thread Bruno Carnazzi
Hi all, I've tried an OpenBSD/i386 3.9-beta snapshots 2 weeks ago. It worked perfectly until now that I have build an AP with it, with an Nintendo USB connector. 2 times, pf died and vomit continuously things like : Feb 11 21:31:30 puffy /bsd: pf_test: pf_get_mtag returned NULL Feb 11

Linux emulation on OpenBSD/i386 3.8 with bsd.mp

2006-02-13 Thread Bruno Carnazzi
Hi all, Refering to : http://www.bsdforums.org/forums/archive/index.php/t-29968.html, I've tried to install the IBM Tivoli Storage Manager Linux client v5.2.2 on OpenBSD/i386 3.8 through linux emulation. It behaves normally, but I can't backup with the '-subdir=yes' option, it generates a core

Re: Small pauses with a trunk(4) interface

2006-02-02 Thread Bruno Carnazzi
...) Best regards, Bruno. On 2/1/06, Reyk Floeter [EMAIL PROTECTED] wrote: hi, On Wed, Feb 01, 2006 at 06:42:47PM +0400, Bruno Carnazzi wrote: I use OpenBSD/i386 3.8 with GENERIC.MP. trunk(4) support in OpenBSD 3.8 was quite new and there were some bugfixes and improvements during the last

Slow disk access ?

2006-02-02 Thread Bruno Carnazzi
Hi all, I'm running OpenBSD/i386 3.8 with GENERIC.MP on a Compaq Proliant DL380, powered by 2 PIII-866. All my partitions lives on a 3 ULTRA320 SCSI 10K RPM disk RAID-5 array. When I untar ports.tar.gz, it took about 4 minutes for a 8Mb archive (lots of small files)... I feel this is a bit

Small pauses with a trunk(4) interface

2006-02-01 Thread Bruno Carnazzi
Hi all, I use OpenBSD/i386 3.8 with GENERIC.MP. I use a trunk interface based on 2 physical devices as you can see here : $ ifconfig -a lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 33224 groups: lo inet 127.0.0.1 netmask 0xff00 inet6 ::1 prefixlen 128

Alias IP on a trunk(4) interface

2006-01-31 Thread Bruno Carnazzi
Hi all, I'd like to add some alias IP to a trunk(4) interface and it doesn't seem to work... Here's is my ifconfig -a just after booting : $ ifconfig -a lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 33224 groups: lo inet 127.0.0.1 netmask 0xff00 inet6 ::1

Re: Alias IP on a trunk(4) interface

2006-01-31 Thread Bruno Carnazzi
media: Ethernet autoselect status: active inet 172.20.3.100 netmask 0xfe00 broadcast 172.20.3.255 inet 197.7.70.222 netmask 0xff00 broadcast 197.7.70.255 On 1/31/06, Bruno Carnazzi [EMAIL PROTECTED] wrote: Hi all, I'd like to add some alias IP

OpenBSD/i386 3.8 on a Compaq DL380 SMP with GENERIC.MP

2006-01-30 Thread Bruno Carnazzi
Hi all, Everything seems to work fine but OpenBSD find only one CPU ! :( Somebody know why and how can I use the 2 CPUs ? Thank you, Bruno. Here is the dmesg : OpenBSD 3.8 (GENERIC.MP) #298: Sat Sep 10 15:51:54 MDT 2005 [EMAIL PROTECTED]:/usr/src/sys/arch/i386/compile/GENERIC.MP cpu0:

Re: OpenBSD/i386 3.8 on a Compaq DL380 SMP with GENERIC.MP

2006-01-30 Thread Bruno Carnazzi
was listed in dmesg after mounting fs. you dont see sec cpu in # top? any one knows thats ok? On Mon, 2006-01-30 at 12:15 +0400, Bruno Carnazzi wrote: Hi all, Everything seems to work fine but OpenBSD find only one CPU ! :( Somebody know why and how can I use the 2 CPUs ? Thank you

Re: webmin like for openbsd

2006-01-30 Thread Bruno Carnazzi
Hi, Have a look at SyMon : http://www.xs4all.nl/~wpd/symon/ It's just a monitor, you CAN NOT act on your server thru this (which is a better way, I think). For remote admin, use ssh, web is not appropriate. Best regards, Bruno. On 1/27/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: guys do

Re: OpenBSD/i386 3.8 on a Compaq DL380 SMP with GENERIC.MP

2006-01-30 Thread Bruno Carnazzi
-class user-level performance counters enabled mtrr: Pentium Pro MTRR support dkcsum: sd0 matches BIOS drive 0x80 root on sd0a rootdev=0x400 rrootdev=0xd00 rawdev=0xd02 Bruno. On 1/30/06, Steven S [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: On 1/30/06, Bruno Carnazzi [EMAIL PROTECTED] wrote

Re: OpenBSD 3.8 and IBM Blade HS20 boot CD

2006-01-20 Thread Bruno Carnazzi
I've got exactly the same problem. It seems that BladeCenter have an unusual keyboard controller (switchable). I tried to boot with all floppy disk, with external keyboard (USB and PS/2), different BIOS settings and it never worked. I think the internal KVM is not hardware transparent. I'm not

Securing an OpenBSD AP (or bridge, dunno)

2006-01-15 Thread Bruno Carnazzi
Hi all, I use an OpenBSD/i386 3.8 as a gateway for routing my residential ADSL access. I'm going to use an USB dongle (this is my last externel port available :( to provide some Wifi access for some laptops (mainly my Powerbook). I'd like it to be secured enough. So, here's some question about

Re: Securing an OpenBSD AP (or bridge, dunno)

2006-01-15 Thread Bruno Carnazzi
level of security : authentication through authpf and strong ciphering through OpenVPN. Hopes it help, Best regards, Bruno. On 1/15/06, Jonathan Gray [EMAIL PROTECTED] wrote: On Sun, Jan 15, 2006 at 12:10:13PM +0400, Bruno Carnazzi wrote: Hi all, I use an OpenBSD/i386 3.8 as a gateway

Re: DRI on OpenBSD (again, but with Xorg)

2006-01-10 Thread Bruno Carnazzi
Is DRI support activated in GENERIC kernel (OpenBSD 3.8/i386) ? Thank you, On 1/10/06, Andreas Bihlmaier [EMAIL PROTECTED] wrote: On Mon, Jan 09, 2006 at 03:25:34PM +0400, Bruno Carnazzi wrote: Hi All, Referencing to this post : http://www.monkey.org/openbsd/archive/misc/0303

Unsupported Wifi dongle

2006-01-10 Thread Bruno Carnazzi
Hi all, I've been given a Wifi USB dongle (the one given with the LiveBox (France Telecom ADSL access) : the Inventel UR054g (in fact, it's a Thomson Telecom product). With my OBSD 3.8/i386 (GENERIC), it's not recognized (in fact, as ugen0), here is the dmesg : OpenBSD 3.8 (GENERIC) #138: Sat

Re: OpenBSD 3.8 PPPoE Broadband Connection Howto

2005-12-22 Thread Bruno Carnazzi
Hi, At home, I have your working target :) I use an OBSD/i386 3.8 box connected to an ADSL router, but configured in bridge mode (modem-only). If you use a router, you don't have to configure PPPoE on your OBSD. If you use a bridge (seems to be your case), you need to configure PPPoE on your

OS Crash Test

2005-12-13 Thread Bruno Carnazzi
Hi all, I'd like to know if there is a way to deeply test a POSIX operating system, and especially OpenBSD. The goal is to estimate the platform stability (performance estimation is not required). Tests should covert POSIX syscalls, OpenBSD specifics (drivers, etc...). For example, I have at

Re: Apache 2 License

2005-12-04 Thread Bruno Carnazzi
. On Dec 2, 2005, at 11:46 PM, Bruno Carnazzi wrote: Hi All, I've checked the Apache 2 License, which is said to be GPL-2 compatible (http://www.apache.org/licenses/). So, OpenBSD include some GPL programs (gcc), so what's make it unacceptable (http://www.openbsd.org/faq/faq1.html#HowAbout

Apache 2 License

2005-12-02 Thread Bruno Carnazzi
Hi All, I've checked the Apache 2 License, which is said to be GPL-2 compatible (http://www.apache.org/licenses/). So, OpenBSD include some GPL programs (gcc), so what's make it unacceptable (http://www.openbsd.org/faq/faq1.html#HowAbout) ? What are the differences with Apache 1.3 License ?

Ethernet Trunking

2005-11-29 Thread Bruno Carnazzi
Hi all, I'm looking at the link aggregation feature (man trunk(4)) of OpenBSD 3.8. In my case, I'd like to use it on Ethernet interfaces : should the switch be configured in a special way or is it level-2 transparent ? I mostly use Cisco 2950 switches... What are the differences between

Re: Network Analyzer

2005-11-26 Thread Bruno Carnazzi
Hi, I sometime use ettercap for fun :) http://ettercap.sourceforge.net/ Caution : do not use this on production network !! Some switches may *really* don't like it (especially the ARP-spoofing) !! You can do some basic and advanced sniffing/analysing with it. Best regards, Bruno. On 11/25/05,

Re: OpenBSD/i386 on IBM BladeCenter HS20 eServer install CD error

2005-11-26 Thread Bruno Carnazzi
Uhrig [EMAIL PROTECTED] wrote: Am 18.11.2005 um 09:06 schrieb Bruno Carnazzi: When I try to boot with install CD (cd38.iso), it hangs with 'pckbc_start: send error' (after wscons0)... GigaEthernet adapter are successfully detected and configured (bge0/1) and SCSI controler too (sd0/1

OpenBSD Crypto Globe Shirt

2005-11-24 Thread Bruno Carnazzi
Hi all, Will this powerfull shirt be available in Europe/Worldwide ? Is there something special about it which make it not available ? I really love it !! :) Best regards, Bruno.

OpenBSD/i386 on IBM BladeCenter HS20 eServer install CD error

2005-11-18 Thread Bruno Carnazzi
Hi all, When I try to boot with install CD (cd38.iso), it hangs with 'pckbc_start: send error' (after wscons0)... GigaEthernet adapter are successfully detected and configured (bge0/1) and SCSI controler too (sd0/1). There is an error message at the very first kernel loading stage that I can't

Re: OpenBSD/i386 on IBM BladeCenter HS20 eServer install CD error

2005-11-18 Thread Bruno Carnazzi
Here is 2 PNG screenshots that might help (sorry, can't do text-only dump)... The pckbc_start error can be found in : http://www.kame.net/dev/cvsweb.cgi/kame/openbsd/sys/dev/ic/pckbc.c?rev=1.1.1. 2 in pckbc_start function... On 11/18/05, Bruno Carnazzi [EMAIL PROTECTED] wrote: Hi all, When

Code comprehension

2005-11-15 Thread Bruno Carnazzi
Hi All, I'm a junior system administrator, working on free operating system such as Linux and recently OpenBSD. I really enjoy OpenBSD for its simplicity, concisness and security. I've got a small experience of C programming, from my studies. I'd like to understand deeply the conception of this

OpenBSD as a router for my ADSL ?

2005-11-13 Thread Bruno Carnazzi
Hi all, My all-in-one router/switch/ADSL modem/AP just crashed (power failure). Damned. Back to my USB modem :( I've also set an OpenBSD 3.8 box at home, on a Toshiba Laptop (4000CDS, PII-233MHz, 32Mo RAM, 4Go IDE HD). Let's rethink our Internet acces :) Currenlty, I just have 1 NIC (PCMCIA,

Re: Compaq ARMADA 100S with D-Link DFE-670TXD

2005-11-13 Thread Bruno Carnazzi
Hello, I've got an old notebook too (Toshiba 4000CDS) and my PCMCIA is a bit strange too. During floppy installation, it's detected and mounted on ne0, whereas normal execution, it's mounted as ne3. It's not hard to fix the network configuration to handle this, but it make me think that this

  1   2   >