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.
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
2006/11/28, Marcus Popp <[EMAIL PROTECTED]>:
On 2006-11-28T19:40, Bruno Carnazzi wrote:
> 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
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
/etc/firmwa
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
PKG_PATH=ftp://ftp.openbsd.org/pub/OpenBSD/snapshots/
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 performan
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 o
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, addre
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
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
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.
Hi misc,
When upgrading some packages with 'pkg_add -u', I sometimes see :
No need to update
and
Candidates for updating ->
What's the difference ?
Please notice that in first case, the package seems "ignored", and in
the second case, the package seems uninstalled and reinstalled in the
sam
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
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 s
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];
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 shi
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
>
>
> "Open
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
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 a
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(/"/
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 quickl
://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 :
>
,
style=\"filled\"];"
fi
fi
done
if [ $DEP_COLOR -eq 1 ] ; then
for PKG in $TOP_PKGS ; do
echo
echo "\tsubgraph \"cluster_$PKG\""
echo "\t{"
echo "\t\tstyle=fille
#x27; | cut -d' ' -f2 | cut -d':' -f3)
if [ -z "$REQ_BY" ] ; then
echo "\t\"$PKG\" [color=\"$TOP_COLOR\", style=\"filled\"];"
elif [ -z "$REQ" ] ; then
echo "\t\"$PKG\&
2";
"xfwm4-4.2.3.2p0" -> "libxfcegui4-4.2.3p2";
"xfce4-diskperf-1.5p3" -> "libxfcegui4-4.2.3p2";
"xfce4-systemload-0.3.6p3" -> "libxfcegui4-4.2.3p2";
"xfce-mcs-manager-4.2.3p1" -> &q
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.
Hi misc,
Someone knows if this kind of stuff already exists ?
Best regards,
Bruno.
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.
2006/10/5, Theo de Raadt <[EMAIL PROTECTED]>:
I have decided to make public this letter which I sent to the OLPC
("One Laptop Per Child" group, which is strongly associated with Red
Hat.
OLPC seems to be in fact "One Laptop Per Customer". I'm tired of this
wonderful human capacity to transform
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
Ope
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 bluet
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
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.
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
> c
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
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-misc&m=115409112232227&w=2
references a "usable" ipsec client fo
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
>
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
o
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
availab
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, i
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.
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.
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
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.
2006/8/27, Josh Grosse <[EMAIL PROTECTED]>:
Has anyone using Root on RAID managed to point their dumpdev at a swap space,
either within a RAID array or on a standard swap partition?
This is a powerfull hack that helped me to mount my root RAID'ed :
http://www.eclectica.ca/howto/openbsd-software
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 t
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
expat-1
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.
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 ne
... Bundled with OpenOffice and more... :)
http://quetzal.matem.unam.mx/
Have fun,
Bruno.
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
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.
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 avant
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, b
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 ap
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
, 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]>:
>>
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).
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, D
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
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
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 questio
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.
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 webap
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 only
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 a
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, so
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
OpenBSD,
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
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.
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
centra
: with all CDs and floppies, the installation hangs on this
message : "pckbc_start: send error". This message is print from the
pckbc_start function in
http://www.kame.net/dev/cvsweb.cgi/kame/openbsd/sys/dev/ic/pckbc.c
Best regards,
Bruno.
2006/1/20, Bruno Carnazzi <[EMAIL PROTEC
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 TS
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 the
way.
Thanks 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,
Hi all,
I'd like to know if someone tried to build a desktop environment on
OpenBSD/i386. I think to rich desktop like Gnome or KDE. Is it hard ?
What's your feedback ?
Best regards,
Bruno.
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 d
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 21:31:30
Hi,
I've just built my home Wifi AP with an Nintendo USB Wifi Connector,
it works perfectly (support a/b/g + hostap + monitor). I run an
OpenBSD/i386 3.9-beta. The adapter is built on a Ralink chipset.
Best regards,
On 2/13/06, uv negativa <[EMAIL PROTECTED]> wrote:
> Hi all,
> Well, i need so
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 poo
...)
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
> bugfix
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=8049 mtu 33224
groups: lo
inet 127.0.0.1 netmask 0xff00
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 s
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 to a trunk(4) inte
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=8049 mtu 33224
groups: lo
inet 127.0.0.1 netmask 0xff00
inet6 ::1 prefixlen 128
inet6 fe80::1%l
port 0x3f0/6 irq 6 drq 2
fd0 at fdc0 drive 0: 1.44MB 80 cyl, 2 head, 18 sec
biomask 0 netmask 0 ttymask 0
pctr: 686-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.
O
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
us. the sec cpu 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
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: In
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 su
and a good 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,
> >
>
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
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
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://ww
Hi All,
Referencing to this post :
http://www.monkey.org/openbsd/archive/misc/0303/msg01384.html there is
(was ?) some work in progress in supporting DRI on OpenBSD. As this
post was written when XFree86 was still in the distro, I'd like to
know if this work is curently progressing with Xorg ?
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 OBS
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 hom
rched and, on these lists, considered a
> DUMB question.
>
> 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,
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 ?
T
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
'round-r
1/18/05, Volker 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
1 - 100 of 108 matches
Mail list logo