Re: Hackathon 2005
Sean Brown wrote: > I'm looking forward to OpenBash Do you realize that on my only Linux machine I don't even have bash installed. I replaced /bin/sh with ash and I use zsh for my shell. bash for Linux is like Internet Explorer for windows. It comes preinstalled so everyone uses it and doesn't bother to look at alternatives, simply because it `already works.' # Han
Re: 4 NIC problem
On Sun, May 01, 2005 at 10:09:17AM -0400, Monah Baki wrote: > I'm certain I'm using the right cabling. <...> > But why would the system act like this in the first place? probably has to do with the order the system finds the NICs. the 'new' one you're putting in is found before the one you're used to, and thus it is xl0 and the one that used to be xl0 is xl1 because it was the second xl(4) that got found. /etc/hostname.if takes over. did you try a different physical order of the cards on the motherboard? ... comparing the output of ifconfig -A in both circumstances ( with the new card and without ) should let you know what is happening. jared -- [ openbsd 3.7 GENERIC ( mar 18 ) // i386 ]
Re: Viewing socket owner
On 5/1/05, Matthew Clarke <[EMAIL PROTECTED]> wrote: > dimanche, le 1 mai, 2005, Arnaud Bergeron nous a dit ceci: > > > I have been playing around with netstat and found lots of strange > > (read uknown ports) udp connections. I wanted to know what processes > > where doing these connections. After reading the netstat man page I > > concluded that it can't do it. Google provided no useful information. > > > > So I wonder if there is a way to view the pid (or pgid) of the owner > > of a socket other than writing my own program to read kernel memory > > with kvm_*. > > see fstat(1) > > Example: > > % netstat -nafinet -pudp > Active Internet connections (including servers) > Proto Recv-Q Send-Q Local Address Foreign Address(state) > udp0 0 *.177 *.* > udp0 0 *.38387*.* > udp0 0 *.514 *.* > > % fstat | grep udp > root xdm261285* internet dgram udp *:177 > _ntp ntpd 275734* internet dgram udp *:38387 > _syslogd syslogd115973* internet dgram udp *:514 > % > > Matt. > -- > For a successful technology, reality must take precedence over public > relations, for nature cannot be fooled. > -- Richard P. Feynman > > Thanks for the answer it just didn't pop in my research. Arnaud Bergeron -- Fourth law of programming: Anything that can go wrong wi sendmail: segmentation violation - core dumped
Re: Hackathon 2005
> Sean Brown wrote: >>I'm looking forward to OpenBash > > They already have it, it's called ksh. Yes you're right but a "OpenHTTPD" with "OpenMOD_GZIP" and maybe IPv6 is still missing. And maybe a OpenSQUID... :-))) Just jokingoO(But httpD improvements would be realy cool. :) ) Kind regards, Sebastian
Re: kvm symbols
> I am currently going through the netstat code, and I see it makes a lot of use > of kvm. It is terrifying. > I take it that the preferred method for looking up kernel data would > be sysctl. Yes. > Now, I am stuck in the kvm code. I have no idea where I can find a list of > kernel symbols that can be placed into nl struct. Is there is man page or > header file that lists the kernel symbols and what they represent? We have already done the simple changes. The ones that remain are much more difficult, and will require design of actual in-kernel sysctl data structures that collect information. The larger problem with netstat of course is that it is racing against the kernel memory image. It reads a pointer, reads where it points to, etc etc etc. It is walking lists. A number of similar problems have been solved in some other programs, for instance, dkstat, vmstat, and systat. Other similar areas to do work are fstat and pstat etc.. > sysctl has very good documentation and makes finding sysctl symbols easy. Note that I am not a fan of procfs for a variety of similar reasons. It is not just racey, but it supplies partial snapshots of memory. At least sysctl interfaces, once designed, are atomic.
kvm symbols
I am currently going through the netstat code, and I see it makes a lot of use of kvm. I take it that the preferred method for looking up kernel data would be sysctl. Now, I am stuck in the kvm code. I have no idea where I can find a list of kernel symbols that can be placed into nl struct. Is there is man page or header file that lists the kernel symbols and what they represent? sysctl has very good documentation and makes finding sysctl symbols easy. Thanks, Brian
Re: Question?
Shawn Brand wrote: My Name is Shawn, I have a fulll version Window XP Professional and it is bootable but when I go into the BIOS it only gives the option to check the flooping then the hard drive, then the CD Rom, but I need it to check the CD Rom first can you tell me how to change boot sequence. Can you help? Shawn Certainly. Here is a list of simple steps: 1. Obtain a sturdy flat-head screwdriver. Insert into flooping, roughly. 2. Insert fresh battery into stun-gun. Discharge stun-gun on screwdriver. 3. Next, open the PC case and locate the hard drive. 4. Extract screwdriver from flooping and stab the hard drive, repeatedly. When the screwdriver penetrates the tough outer shell, leave it there and apply the stun-gun once more. 5. Extract screwdriver. Close case. Don't forget to reset your CMOS. 6. You should now be able to boot from the CD-ROM.
Re: OS book
On Sun, May 01, 2005 at 03:26:46PM -0300, kroty wrote: > I'm going to buy a book about Operating Systems. I've seen two titles > "Modern Operating Systems" (Tanenbaum) and "Operating Systems Concepts" > (Silberschatz). I don't know wich one would be better for a newbie > in OSs like me. Any suggestion would be appreciated. Thanks! I also recommend Tanenbaum's book(s). He has written two books on OS concepts that I know of, and they are both fabulous. Silberschatz may be fine too, but I've never read anything from him. bc -- Benjamin A. Collins <[EMAIL PROTECTED]> http://people.cs.tamu.edu/bcollins/ [demime 1.01d removed an attachment of type application/pgp-signature]
Back from the future
Yippee! I made it back from a short visit into the near future (May 19) and I even brought back 2 CD sets of 3.7 and the Puffy Wireframe T. Getting these through Customs and into my mailbox here in Australia this early proves that early orders are worth doing. Thanks to all who made the code, made the CD masters, packed the goods and got 'em out the door so efficiently. Every link in that chain was responsible for brightening my Monday morning. Bloody good work, cobbers! Rod/ >From the land "down under": Australia. Do we look from up over? Do NOT CC me - I am subscribed to the list. Replies to the sender address will fail except from the list-server.
Re: Viewing socket owner
dimanche, le 1 mai, 2005, Arnaud Bergeron nous a dit ceci: > I have been playing around with netstat and found lots of strange > (read uknown ports) udp connections. I wanted to know what processes > where doing these connections. After reading the netstat man page I > concluded that it can't do it. Google provided no useful information. > > So I wonder if there is a way to view the pid (or pgid) of the owner > of a socket other than writing my own program to read kernel memory > with kvm_*. see fstat(1) Example: % netstat -nafinet -pudp Active Internet connections (including servers) Proto Recv-Q Send-Q Local Address Foreign Address(state) udp0 0 *.177 *.* udp0 0 *.38387*.* udp0 0 *.514 *.* % fstat | grep udp root xdm261285* internet dgram udp *:177 _ntp ntpd 275734* internet dgram udp *:38387 _syslogd syslogd115973* internet dgram udp *:514 % Matt. -- For a successful technology, reality must take precedence over public relations, for nature cannot be fooled. -- Richard P. Feynman
Re: Viewing socket owner
Arnaud Bergeron wrote: > I have been playing around with netstat and found lots of strange > (read uknown ports) udp connections. I wanted to know what processes > where doing these connections. After reading the netstat man page I > concluded that it can't do it. Google provided no useful information. > > So I wonder if there is a way to view the pid (or pgid) of the owner > of a socket other than writing my own program to read kernel memory > with kvm_*. man fstat ?
Viewing socket owner
I have been playing around with netstat and found lots of strange (read uknown ports) udp connections. I wanted to know what processes where doing these connections. After reading the netstat man page I concluded that it can't do it. Google provided no useful information. So I wonder if there is a way to view the pid (or pgid) of the owner of a socket other than writing my own program to read kernel memory with kvm_*. Arnaud Bergeron -- Fourth law of programming: Anything that can go wrong wi sendmail: segmentation violation - core dumped
Re: Question?
On 2005 May 1, at 4:23 PM, Shawn Brand wrote: > I have a fulll version Window XP Professional and it is bootable but > when I > go into the BIOS it only gives the option to check the flooping then > the hard > drive, then the CD Rom, but I need it to check the CD Rom first can > you tell > me how to change boot sequence. Can you help? This has nothing whatsoever to do with OpenBSD. Ask whomever made the computer, sold it to you, etc. Besides which, we're not mind readers. Considering that you didn't even give us enough information to know that your computer actually has a BIOS, there's no way anybody could even think to answer your question. But the people who made it can. Not us. Them. Cheers, b& [demime 1.01d removed an attachment of type application/pgp-signature which had a name of PGP.sig]
Re: OS book
Locate an OLD (like 80s) version of the latter. It's an AWESOME fundamentals book. The never versions are watered down big time. Windows windows windoww... blablabla. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of kroty Sent: Sunday, May 01, 2005 10:27 AM To: misc@openbsd.org Subject: OS book I'm going to buy a book about Operating Systems. I've seen two titles "Modern Operating Systems" (Tanenbaum) and "Operating Systems Concepts" (Silberschatz). I don't know wich one would be better for a newbie in OSs like me. Any suggestion would be appreciated. Thanks!
Re: Hackathon 2005
Sean Brown wrote: I'm looking forward to OpenBash They already have it, it's called ksh. _ Take charge with a pop-up guard built on patented Microsoft. SmartScreen Technology. http://join.msn.com/?pgmarket=en-ca&page=byoa/prem&xAPID=1994&DI=1034&SU=http://hotmail.com/enca&HL=Market_MSNIS_Taglines Start enjoying all the benefits of MSN. Premium right now and get the first two months FREE*.
Question?
My Name is Shawn, I have a fulll version Window XP Professional and it is bootable but when I go into the BIOS it only gives the option to check the flooping then the hard drive, then the CD Rom, but I need it to check the CD Rom first can you tell me how to change boot sequence. Can you help? Shawn
Re: 3.7 CDs
On Sun, May 01, 2005 at 08:25:25PM +0200, Christoph Machon wrote: > Hmm...very interesting. OpenBSD logo on the windows machine ?! > The pauper fish ;) You'r really be sure that it isn't fvwm with a good made XP theme? But i wouldn't bet :-) -- Veit Waltemath <[EMAIL PROTECTED]> | *BSD / 01896 Pulsnitz / Germany| / Linux Systems
Re: Hackathon 2005
Thierry Deval wrote: On May 1, 2005, at 23:31, Miod Vallat wrote: I'm looking forward to OpenBash I think they should write the ultimate virus! Take out Windows completely! Think of it!; it would be the big bang all over again! Alternately, I could live with mount_smbfs (puts on flame retardant suit)
Re: Hackathon 2005
Sean Brown wrote: I'm looking forward to OpenBash If you keep saying things like that, Theo's going to change the default shell back to csh.
Re: Hackathon 2005
On May 1, 2005, at 23:31, Miod Vallat wrote: I'm looking forward to OpenBash Why do you want every OpenBSD developer to puke? Jeez, I didn't read that ! And it is indeed MY feeling. :p
Re: 3.7 CDs
Am Sonntag, 1. Mai 2005 20:25 schrieb Christoph Machon: > Am Sonntag, den 01.05.2005, 06:35 -0400 schrieb Todd Boyer: > > On Saturday, April 30, Theo de Raadt wrote: ... > Hmm...very interesting. OpenBSD logo on the windows machine ?! > The pauper fish ;) > -- > Wer die Freiheit aufgibt, um Sicherheit zu gewinnen, wird am Ende beides > verlieren. [ Benjamin Franklin ] why is Franklin cited in German? ;-i.t -- . ___ | | Irmund Thum | |
Re: Hackathon 2005
> I'm looking forward to OpenBash > Why do you want every OpenBSD developer to puke? Miod
Re: Hackathon 2005
On May 1, 2005 2:11 pm, Otto Moerbeek wrote: > On Sun, 1 May 2005, Ben Goren wrote: > > I did *not* say that I expected a Sendmail replacement any time > > soon--quite the opposite. Let me put a definite limit on this: I'd bet > > no more than (a modest) lunch, and only on the condition that I already > > happened to be in the same city when the bet came due, that, the next > > time we see an OpenWHATEVER, it's an OpenSMTPD. We may not ever see > > another OpenWHATEVER, though that bunch just has too much fun hacking > > for me to imagine that. There may well be something like OpenNTPD that > > somebody like Henning is quietly working on--and, in fact, this is more > > likely to be the case than any particular specific thing. > > To show you the value of this kind of speculations, I'm going to "rebrand" > dc(1) and bc(1) to OpenDC and OpenBC. And I'll wait with that until the > moment we're in the same town. > > -Otto I'm looking forward to OpenBash
Re: Hackathon 2005
Sorry If I didn't read to well, but when exactly is the hackaton planned? I always like to have my personal hackaton at the same time and I always watch every CVS commit. Wijnand
Re: Donations for IPv6 in httpd(8)
Oops, I mailed to Damien, but I wanted this one on misc@ 2005/5/1, Wijnand Wiersma <[EMAIL PROTECTED]>: > Well, I sure am interested, but I am not able to give a lot of money for that. > > Wijnand
Re: Hackathon 2005
On Sun, 1 May 2005, Ben Goren wrote: > I did *not* say that I expected a Sendmail replacement any time > soon--quite the opposite. Let me put a definite limit on this: I'd bet > no more than (a modest) lunch, and only on the condition that I already > happened to be in the same city when the bet came due, that, the next > time we see an OpenWHATEVER, it's an OpenSMTPD. We may not ever see > another OpenWHATEVER, though that bunch just has too much fun hacking > for me to imagine that. There may well be something like OpenNTPD that > somebody like Henning is quietly working on--and, in fact, this is more > likely to be the case than any particular specific thing. To show you the value of this kind of speculations, I'm going to "rebrand" dc(1) and bc(1) to OpenDC and OpenBC. And I'll wait with that until the moment we're in the same town. -Otto
Re: partitioning hard drive
On Sat, Apr 30, 2005 at 02:02:29PM -0500, L. V. Lammert wrote: > On Sat, 30 Apr 2005, RGA wrote: > > Do you want to use *all* of wd0 for OpenBSD? [no] y > > > Depends if you want other OS installations. if you want other OS installations (on that disk), would it be better to answer 'n' to that question? if you "want" to answer 'y' to that question and then later on go back and frick around with the way wd0 is, then i suppose you probably "could've" answered 'n' to it and just done the fdisk/disklabel how you wanted from the get-go. or, i suppose if it's still irksome, there's always release(8). > a / ~1GB i noticed that if i make a root partition > 512 MB, this weird penguin logo shows up in a graphical display when my system boots up. is that a bug or a feature? > e /var~5-10GB, depending on how much space you need for httpd, > etc. can also make X partition and mount it into /var/www/*, if httpd is a concern. jared -- [ openbsd 3.7 GENERIC ( mar 18 ) // i386 ]
Re: Donations for IPv6 in httpd(8)
On Sun, 1 May 2005, eric wrote: > Would donations to the developers for ipv6 support in httpd(8) help for the > upcoming hack-a-thon? Or are all the developers going to be busy already? why don't you just use the already existing patch? -- quit whining you haven't done anything wrong because frankly you haven't done much of anything
Re: 4 NIC problem
On 5/1/05, Monah Baki <[EMAIL PROTECTED]> wrote: > I'm certain I'm using the right cabling. The 'right cabling' means that you need to make sure your configuration on xl0 and xl1 should match the machines you connect through the cables going into these devices. > As you can see I no longer have the interface of mac address 00:60:08:0d: > 8c:4c (previously xl0) > > But why would the system act like this in the first place? Because it only finds a single xl(4) device. Still naming that device xl1 would be nonsense, for example when you just replaced a faulty card. The numbering order starts at 0, only taking into account devices that are present. I do not know of a way to fix a card (e.g. through its MAC address) to a specific device name. I can't say that I miss that behaviour (given the trouble a specific Linux install caused me when I had to replace a card). The above of course excludes the - unsupported - practice of trying to hardwire the device's location in the system through a custom-built kernel. Cheers, Rogier -- If you don't know where you're going, any road will get you there.
Re: 3.7 CDs
Am Sonntag, den 01.05.2005, 06:35 -0400 schrieb Todd Boyer: > On Saturday, April 30, Theo de Raadt wrote: > > > Something else... today I had a chance to checkout a new > > wireframe puffy tshirt. The texture of them is incredible, > > blind people will appreciate the shirts a lot, heck they are > > just plain sexy. We should have made a wireframe blowfish > > tshirt a very very long time ago. > > Makes a plain sexy desktop too > http://www.autumntech.com/bsdstuff/puffy-desktop.jpg Hmm...very interesting. OpenBSD logo on the windows machine ?! The pauper fish ;) -- Wer die Freiheit aufgibt, um Sicherheit zu gewinnen, wird am Ende beides verlieren. [ Benjamin Franklin ] [demime 1.01d removed an attachment of type image/png which had a name of smiley-4.png]
Re: Xeon 64 Bit
On Sat, 30 Apr 2005 17:40:50 +0200 "Paul Wittmayer" <[EMAIL PROTECTED]> wrote: > Hi, > > Does OpenBSD support Intel Xeon 64Bit processors? > > Didn't find anything on the web. > > Thanks for help. > > Paul Booted on an IBM x336 last time i tried, with AMD64 kernel ofcourse. // nick
Re: OS book
On Sun, May 01, 2005 at 03:26:46PM -0300, kroty wrote: > I'm going to buy a book about Operating Systems. I've seen two titles > "Modern Operating Systems" (Tanenbaum) and "Operating Systems Concepts" > (Silberschatz). I don't know wich one would be better for a newbie > in OSs like me. Any suggestion would be appreciated. Thanks! I don't know Silberschatz, but I can tell you that Tanenbaum's "Modern Operating Systems" is one of the greatest technical books I have ever read. I cannot recommend it enough.
Re: daily output
On Sat, Apr 30, 2005 at 03:00:40PM +0500, [EMAIL PROTECTED] wrote: > a portion of daily output: > > ... > mail: > 27 Apr 2005 02:24:28 GMT #1834485 9664 <> > remote [EMAIL PROTECTED] > 24 Apr 2005 00:16:13 GMT #1834467 3474 <> > remote [EMAIL PROTECTED] > 27 Apr 2005 02:25:39 GMT #1834491 9652 <> > remote [EMAIL PROTECTED] > > ... > > what is that is someone injecting mail to me? i use qmail as mailer Those are queued bounce messages. Most likely, somebody is sending spam to a non-existent user in your domain using [EMAIL PROTECTED] as the envelope sender address. The delivery fails, so qmail bounces them, but the yahoo.co.kr mail server does not accept them. If you need more information, the qmail list would be a good place to ask.
OS book
I'm going to buy a book about Operating Systems. I've seen two titles "Modern Operating Systems" (Tanenbaum) and "Operating Systems Concepts" (Silberschatz). I don't know wich one would be better for a newbie in OSs like me. Any suggestion would be appreciated. Thanks!
Re: 3.7 CDs
On 2005 May 1, at 3:35 AM, Todd Boyer wrote: > http://www.autumntech.com/bsdstuff/puffy-desktop.jpg Huh? A well-used Windows machine with Puffy and the motto? Whatever b& [demime 1.01d removed an attachment of type application/pgp-signature which had a name of PGP.sig]
Re: Hackathon 2005
On 2005 Apr 30, at 5:22 PM, Jeff Bachtel wrote: > On Sat, Apr 30, 2005 at 02:30:28PM -0700, Ben Goren wrote: >> As much as I'm sure Theo would love to get rid of gcc and >> friends...damn, that's a big undertaking. I don't think it's the sort >> of thing that would happen at a hackathon. If I had to guess, it'd be >> made the main point of some future release, with little other >> development. You know, the sort of thing that takes up lots of long >> winter nights. It's not likely to be fun, and I get the impression >> that >> hackathons are supposed to be fun. > > *blink* tech@ bitching aside, the GNU gcc project puts a HUGE amount > of effort into improving their compiler. Forking it would have every > chance of leading to stagnation in the OpenBSD project as processors > and optimizations evolve. There are lots of things I don't know about the inner workings of OpenBSD. Of this, though I *am* sure: OpenBSD will never ``fork'' gcc. Oh, sure, there will probably always be OpenBSD-specific patches against it, or they may lag behind the current version, or what-not. But a fork? I just can't imagine it. Well, *maybe* if they moved gcc to this new version of the GPL everybody is talking about, but I can't really imagine that happening, either. In this distant, dim future I'm envisioning as gcc-less, I would expect Theo to either adopt TenDRA or roll his own compiler from scratch. I have no clue if TenDRA is anywhere close to being up to the task, and writing one's own is quite obviously about as mammoth a project as one could undertake. Notice how I started this paragraph with ``distant, dim future''? All in all, this topic is about as meaningful as us discussing petroleum replacements. Everybody knows that it'll have to happen some day, and perhaps even sooner than anybody really wants--though most would also be overjoyed to wave a magic wand and be done with it. There's a lot of pain between here and there and, while of utmost importance, it's also (currently) about as far from urgent as one can get. (Some day it will be very urgent, unless we discover that magic wand first.) >> This is pure WAG speculation, but I'd guess that the next OpenD >> would be OpenSMTPD [. . . .] > > Replacing Sendmail outright seems iffy at best. Search archives for > when this has been mentioned in the past, and you will get "no way in > hell" replies from Theo. Auditing and partitioning it, maybe. Again, you twist my words, and Theo's too, this time. I did *not* say that I expected a Sendmail replacement any time soon--quite the opposite. Let me put a definite limit on this: I'd bet no more than (a modest) lunch, and only on the condition that I already happened to be in the same city when the bet came due, that, the next time we see an OpenWHATEVER, it's an OpenSMTPD. We may not ever see another OpenWHATEVER, though that bunch just has too much fun hacking for me to imagine that. There may well be something like OpenNTPD that somebody like Henning is quietly working on--and, in fact, this is more likely to be the case than any particular specific thing. Yes, Theo has been quite vociferous about Sendmail replacements. You'll note, however, that in every one of those threads, Theo is responding to people demanding that he replace Sendmail with some specific other MTA. There is no way in hell that Qmail, for example, will ever go in OpenBSD. You'll also note that Theo has never said one word about writing his own MTA. Let me stress that: Theo has been ABSOLUTELY SILENT. He has said NOT ONE WORD. I would be damned surprised if he ever did--unless, of course, it was to say, ``Hey guys, foo@ has done some great work in writing OpenSMTPD for us. Grab a snapshot and help test it for us.'' All the speculation here is MINE. I'm doing a bit of Kremlinology, is all. It doesn't take a genius to notice all of Sendmail's warts. Of the items remaining in /usr/src/gnu, it's got the most license problems. In the past, warty code with undesirable licenses has been a prime target for replacement. All I'm really saying is that Sendmail is the wartiest piece of code left with a problematic license. And why should *you* care whether or not any of this ``scales.'' Managing the project is Theo's worry, not yours, and he's shown himself to be damned capable of doing so. Besides, which do you think is easier: maintaining your own code that you know better than anybody else, or maintaining somebody else's code that you have to work to figure out? And I know from personal experience that, when you get the code right in the first place, you don't have to do anywhere near as much to maintain it. Cheers, b& P.S. As long as we're talking about elephants in the room, it's worth mentioning Perl. Huge code, and all those modules written by everybody and his sister. I don't know which would be worse: writing an OpenPERL or writing C replacements for all that incredible stuff Espie's done to
Re: 3.7 CDs
even on windoze...!?! At 08:35 PM 1/05/2005, Todd Boyer wrote: On Saturday, April 30, Theo de Raadt wrote: > Something else... today I had a chance to checkout a new > wireframe puffy tshirt. The texture of them is incredible, > blind people will appreciate the shirts a lot, heck they are > just plain sexy. We should have made a wireframe blowfish > tshirt a very very long time ago. Makes a plain sexy desktop too http://www.autumntech.com/bsdstuff/puffy-desktop.jpg
Re: 3.7 CDs
> Makes a plain sexy desktop too > http://www.autumntech.com/bsdstuff/puffy-desktop.jpg But wait... something's not quite right... The "sexy" desktop is running Windows. -- "Then the wolf threw Little Red Riding Hood on the bed and he ate her." --Little Red Riding Hood, The Grimm Brothers
some 3.7-current issues
I installed -current on an i386 laptop from ftp://ftp.openbsd.org/pub/OpenBSD/snapshots/i386 Running xorgconfig I have: xorgconfig: can't load library 'libc.so.35.1' Same problem with xf86config3, xf86config, xf86cfg and xorgcfg. I'm also having problems with two PCMCIA wireless cards (I disabled any type of encryption from my AP) ; both cards work well with different OSes and/or machines. If I plug my Netgear WG511T and boot I have ath0 at cardbus0 dev 0 function 0 "Atheros Communications, Inc., AR5001--, Wireless LAN Reference Card": irq 11 ath0: mac 80.9 phy 4.3 radio 4.6, 802.11a/b/g, FCC1A, address 00:0f:b5:23:cb:27 gpio at ath0 not configured # ifconfig ath0 192.168.0.2 # ifconfig ath0 ath0: flags=8863 mtu 1500 lladdr 00:0f:b5:23:cb:27 ieee80211: nwid "" media: IEEE802.11 autoselect (DS1) status: no network inet 192.168.0.2 netmask 0xff00 broadcast 192.168.0.255 inet6 fe80::20f:b5ff:fe23:cb27%ath0 prefixlen 64 scopeid 0x6 If I plug my Netgear MA401 and boot I have wi0 at pcmcia0 function 0 "NETGEAR MA401RA Wireless PC, Card, ISL37300P" port 0xa000/64 wi0: PRISM2.5 ISL3873, Firmware 1.1.1 (primary), 1.8.0 (station), address 00:09:5b:49:37:65 # ifconfig wi0 192.168.0.2 May 1 15:53:23 vega /bsd: wi0: device timeout # ifconfig wi0 wi0: flags=8843 mtu 1500 lladdr 00:09:5b:49:37:65 ieee80211: nwid NETGEAR -7dBm (auto) media: IEEE802.11 autoselect (DS11) status: active inet6 fe80::209:5bff:fe49:3765%wi0 prefixlen 64 scopeid 0x6 inet 192.168.0.2 netmask 0xff00 broadcast 192.168.0.255 The timeout kernel messages are repeated at regular intervals. I cannot ping anything except its own address. After 'ifconfig wi0 delete' I have May 1 15:57:43 vega /bsd: wi0: wi_cmd failed with 5 also repeated regularly. Notice that wi0 is getting the SSID while ath0 isn't. Any help would be appreciated. Regards, Thierry Lacoste.
Re: kern.securelevel=2 and savecore
On Sunday 01 May 2005 14:50, J.D. Bronson wrote: > Is this expected and normal or did I place the sysctl in the wrong place? Take a look into /etc/rc.securelevel -- Lukas Ratajski - [EMAIL PROTECTED] Feel free to use PGP public key 0xEF4DA75A for e-mail encryption
Re: 4 NIC problem
I'm certain I'm using the right cabling. Right now my ifconfig -a displays: xl0: flags=8843 mtu 1500 lladdr 00:10:4b:24:40:a0 media: Ethernet autoselect (100baseTX full-duplex) status: active inet 192.168.3.1 netmask 0xff00 broadcast 192.168.3.255 inet6 fe80::210:4bff:fe24:40a0%xl0 prefixlen 64 scopeid 0x1 which is my original NIC. As you can see I no longer have the interface of mac address 00:60:08:0d: 8c:4c (previously xl0) But why would the system act like this in the first place? On Sun, 1 May 2005 16:08:05 +0200, Rogier Krieger wrote > On 5/1/05, Monah Baki <[EMAIL PROTECTED]> wrote: > > I decided to add another interface xl1. > > All of a sudden I get the following error: > > Are you sure that the correct cable leads to the correct interface? > OpenBSD may very well detect the cards in an order different from > what you expect. In other words: xl1 may or may not be the newly > added card. > > > xl1: flags=8843 mtu 1500 > > > status: no carrier > > inet 192.168.3.1 netmask 0xff00 broadcast 192.168.3.255 > > > all my internal computers can't ping 192.168.3.1. > > Which is hardly surprising, considering the system does not detect a > carrier on xl1 as it does on xl0. Verify that the cables and > interfaces match. > > Hope this helps, > > Rogier > > -- > If you don't know where you're going, any road will get you there.
Re: 4 NIC problem
On 5/1/05, Monah Baki <[EMAIL PROTECTED]> wrote: > I decided to add another interface xl1. > All of a sudden I get the following error: Are you sure that the correct cable leads to the correct interface? OpenBSD may very well detect the cards in an order different from what you expect. In other words: xl1 may or may not be the newly added card. > xl1: flags=8843 mtu 1500 > status: no carrier > inet 192.168.3.1 netmask 0xff00 broadcast 192.168.3.255 > all my internal computers can't ping 192.168.3.1. Which is hardly surprising, considering the system does not detect a carrier on xl1 as it does on xl0. Verify that the cables and interfaces match. Hope this helps, Rogier -- If you don't know where you're going, any road will get you there.
Re: 4 NIC problem
On May 1, 2005, at 9:18 AM, Monah Baki wrote: I'm running an old dell 2300/350 with OBSD3.7. I have 3 interfaces (xl0, fxp0 and wi0) attached to it. I decided to add another interface xl1. All of a sudden I get the following error: xl0: flags=8802 mtu 1500 lladdr 00:60:08:0d:8c:4c media: Ethernet autoselect (100baseTX full-duplex) status: active xl1: flags=8843 mtu 1500 lladdr 00:10:4b:24:40:a0 media: Ethernet autoselect (none) status: no carrier inet 192.168.3.1 netmask 0xff00 broadcast 192.168.3.255 inet6 fe80::210:4bff:fe24:40a0%xl1 prefixlen 64 scopeid 0x2 all my internal computers can't ping 192.168.3.1. If I removed xl0 (physically), I can ping xl1. I'll take that bet. If you remove xl0, then xl1 becomes xl0. -- Jason Dixon DixonGroup Consulting http://www.dixongroup.net
Re: kern.securelevel=2 and savecore
At 07:50 AM 5/1/2005, J.D. Bronson wrote: I have finished an install of obsd and wanted to finalize it by setting the securelevel as high as I can. I presume this value 'kern.securelevel=2' is in sysctl.conf and when I put it in there - booting it does enter into securelevel=2. However, I see this on the boot up: .. ... May 1 07:38:14 obsd named[8950]: running May 1 07:38:29 obsd savecore: /dev/wd0b: Operation not permitted Is this expected and normal or did I place the sysctl in the wrong place? I found if I put this in /etc/rc.securelevel ...all is well. Sorry about the posts. Jeff
4 NIC problem
Hi All, I'm running an old dell 2300/350 with OBSD3.7. I have 3 interfaces (xl0, fxp0 and wi0) attached to it. I decided to add another interface xl1. All of a sudden I get the following error: xl0: flags=8802 mtu 1500 lladdr 00:60:08:0d:8c:4c media: Ethernet autoselect (100baseTX full-duplex) status: active xl1: flags=8843 mtu 1500 lladdr 00:10:4b:24:40:a0 media: Ethernet autoselect (none) status: no carrier inet 192.168.3.1 netmask 0xff00 broadcast 192.168.3.255 inet6 fe80::210:4bff:fe24:40a0%xl1 prefixlen 64 scopeid 0x2 all my internal computers can't ping 192.168.3.1. If I removed xl0 (physically), I can ping xl1. Thank you
kern.securelevel=2 and savecore
I have finished an install of obsd and wanted to finalize it by setting the securelevel as high as I can. I presume this value 'kern.securelevel=2' is in sysctl.conf and when I put it in there - booting it does enter into securelevel=2. However, I see this on the boot up: .. ... May 1 07:38:14 obsd named[8950]: running May 1 07:38:29 obsd savecore: /dev/wd0b: Operation not permitted Is this expected and normal or did I place the sysctl in the wrong place? thanks in advance... Jeff
Re: Donations for IPv6 in httpd(8)
eric wrote: Would donations to the developers for ipv6 support in httpd(8) help for the upcoming hack-a-thon? Or are all the developers going to be busy already? I posted a couple days ago and there was some interest that I received privately on making donations for this specifically, but I'm curious to know if we should wait on that until post-hackathon. If there's no point in trying to get funding for this (as it is too monolithic/pointless/etc.) please let me know. There weren't *too* many people who initially responded, so I'm not sure of the funds that can be raised, but I did get more than 0, which was a surprise. There are patches to add IPv6 support to the 1.3.x, but they break pretty much all the 3rd-party modules. -d
Re: Hackathon 2005
A few promissing tasks indeed, What ever endeavours you may embark on during the Hackathon, I hope you find a nice beer buzz and as Jan Izary put it; > Beyond that we can hope that someone has > a moment of clarity and comes up with > another sweet addition like spamd. > If I wasn't sure developers had already said > they're not going to; I'd have thought httpd > or cc replacements. On 5/1/05, Theo de Raadt <[EMAIL PROTECTED]> wrote: > > > >> track and keep up to date another openbsd patch that sendmail won't > > > >> integrate into their tree. We already know that Postfix and qmail > > > >> don't > > > > > Sorry for not being clear, but I was using it as an example. There are > > > many cases of organizations not accepting patches from the openbsd team, > > > apache being one of the more famous examples. There are plenty of > > > complaints for these in the archives. > > > > Then please choose more appropriate examples or make clear that > > your "example" was completely fictious. sendmail.org is NOT one of > > those "organizations not accepting patches from the openbsd team". > > Don't waste your time with this guy, Claus. > > It's just the regular kook who acts like he is informed when he is not.
Re: firewall log
Sounds like a Cisco Router to me. -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Christopher Kruslicky Verzonden: zondag 1 mei 2005 2:46 Aan: misc@openbsd.org CC: adrian kok Onderwerp: Re: firewall log On Saturday 30 April 2005 06:01 pm, adrian kok wrote: > 1/ Why are there 3 ipaddresses in this log what is source and > destination address? Because you have gotten an ICMP error message that includes an IP in the data. > 2/ 172.17.217.168 should be private ip and that address should not be > in public network How is it related to address 68.50.185.xxx? > What is happening here? source > destination > Apr 29 09:35:21.757779 rule 0/0(match): block in on > fxp0: > 203.xx.xx.251 > 68.50.185.xxx: icmp: host > 172.17.217.168 unreachable - admin prohibited filter It _looks_ like you (68.50.185.xxx) sent something (ping?) to the 172 address and it was blocked by a router at the 203 address, this would be the message returned. Whether you actually sent such a packet I don't know, seems if PF were keeping state this packet wouldn't be blocked if you had sent the earlier packet. Could it be that a packet to 172.17.217.168 took the default route and the 203 address is a border router?
Re: 3.7 CDs
On Saturday, April 30, Theo de Raadt wrote: > Something else... today I had a chance to checkout a new > wireframe puffy tshirt. The texture of them is incredible, > blind people will appreciate the shirts a lot, heck they are > just plain sexy. We should have made a wireframe blowfish > tshirt a very very long time ago. Makes a plain sexy desktop too http://www.autumntech.com/bsdstuff/puffy-desktop.jpg
Donations for IPv6 in httpd(8)
Would donations to the developers for ipv6 support in httpd(8) help for the upcoming hack-a-thon? Or are all the developers going to be busy already? I posted a couple days ago and there was some interest that I received privately on making donations for this specifically, but I'm curious to know if we should wait on that until post-hackathon. If there's no point in trying to get funding for this (as it is too monolithic/pointless/etc.) please let me know. There weren't *too* many people who initially responded, so I'm not sure of the funds that can be raised, but I did get more than 0, which was a surprise. Thanks. - Eric
Re: 3.7 CDs
On 4/30/05, Rick Barter <[EMAIL PROTECTED]> wrote: > Rick Barter wrote: > > Rick Barter wrote: > > > >> Theo de Raadt wrote: > >> > >>> Something else... today I had a chance to checkout a new wireframe > >>> puffy tshirt. The texture of them is incredible, blind people will > >>> appreciate the shirts a lot, heck they are just plain sexy. We should > >>> have made a wireframe blowfish tshirt a very very long time ago. > >> > >> > >> > >> That's why I ordered two! In fact, I may do something crazy and buy a > >> wireframe t-shirt for every damn day of the week! Woohoo! In fact, I > >> think the wireframe puffy image is so sexy, I made a quickie > >> background of it (1024 x 768) for my machines that use graphical > >> desktops. I've attached it for anyone who cares to use it. > >> > >> Also, if you want a different file format or size, let me know and > >> I'll do it and put it up on the list. > >> > >>> Thanks for supporting OpenBSD by buying our products. Thanks also > >>> especially to those of you who put a financial donation in with your > >>> orders (please give us a few months to add those to the donations > >>> list, since we must check them carefully). > >> > >> > >> > >> Thanks to everyone that is working on this project. I can't tell you > >> how much I appreciate it. I've learned more about Unix, networking, > >> etc. from using OpenBSD and this list in the past couple of years than > >> I have from any other single source of information. > >> > >> Thank you to all the developers, the maintainers, the documenters (is > >> that a word?), administrators, users out there. Your contributions > >> are definitely recognized and appreciated. > >> > >> Also, to all the companies that use OpenBSD tools and products and > >> haven't donated a monetary unit (dollar, pound, euro, whatever) or > >> hardware or time to help the project, SHAME ON YOU! WTF are you > >> waiting for? If you are too embarrassed to rectify your errors, hire > >> me and I'll donate a portion of my paycheck for your transgressions! > >> (Yes. I'm still out of work. But, I have an interview on Wednesday :)) > >> > >> Wow. I guess I got a little bit carried away there. Whew. I need an > >> aspirin. > >> > >> rvb > > > > > > Er...after taking my aspirin, I realize I got so excited that I forgot > > to attach the image. I'm a loser. But, you all knew that already. > > > > rvb > > Ummm...it just occurred to me that the attachment will be removed from > the email. This time I'll just give a link to the image on my web > server: http://www.indyironworks.com/~rvb01/openbsd/ 404 Not Found The requested URL '/%7Ervb01/openbsd/' was not found on this server. > > If this doesn't work for some reason, let me know. I won't clutter > the list with anymore of my nonsense today. Doesn't seem to be working. > > rvb > > -- Best wishes, Alexander G. Chamandy Webmaster www.bsdfreak.org Your Source For BSD News! Hosted by Envescent, LLC www.envescent.com
Re: dd: input buffer: Cannot allocate memory
* Otto Moerbeek <[EMAIL PROTECTED]> [050430 19:00]: > dd allocates a a buffer twice as large as the blocksize in this case. So > that's 37m * 2 = 74m, which is 75776. Your data limit is 76800, so > probably some allocaations are already there, making the 74m allocation > fail. Ah, thank you, that makes perfect sense now. > Having such a large blocksize seems a bit silly. I know. But I just stumbled over this issue while playing with dd, large files, sparse files etc.