Re: /etc/rc.network and natd_enable

2001-05-04 Thread Ruslan Ermilov
On Thu, May 03, 2001 at 05:17:17PM -0500, Nick Rogness wrote: In 4.2-STABLE, /etc/rc.network has entries to turn on natd. However, natd does not get enabled if you don't specify natd_interface. WHat if you you have setup stored in a configuration file and do not wish to supply an

Re: Set up loader to boot cd

2001-05-04 Thread Brian Dean
On Mon, Apr 30, 2001 at 11:31:22AM -0700, Rick Duvall wrote: I am trying to make a custom boot CD for FreeBSD. I got it to the point to where the CD will boot, load the kernel, but that's as far as it get's. It does when it get's to the part where it wants to mount the root devicd. It

Optimal setup for large raid?

2001-05-04 Thread Brad L. Chisholm
I sent this to -questions a few days ago, but never received any response, so I thought I'd try here. My apologies if you've seen this more than once. I'm also interested in what might be appropriate filesystem settings (newfs) for a large volume like this which will contain relatively few,

RE: real time

2001-05-04 Thread Charles Randall
Here's one starting point, http://www.rtmx.com/ They offer extensions to OpenBSD. Charles -Original Message- From: Joao Carlos [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 11:59 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: real time Does FreeBSD has any

Re: real time

2001-05-04 Thread Wes Peters
Charles: -Original Message- Joao Carlos [EMAIL PROTECTED] asked: Does FreeBSD has any related work about it as an real time operating system? Where can i find information about that ?? Here's one starting point, http://www.rtmx.com/ They offer extensions to

Re: real time

2001-05-04 Thread James Housley
Wes Peters wrote: Charles: -Original Message- Joao Carlos [EMAIL PROTECTED] asked: Does FreeBSD has any related work about it as an real time operating system? Where can i find information about that ?? Here's one starting point, http://www.rtmx.com/

multilingual boot.flp for 4.3-RELEASE

2001-05-04 Thread Tatsumi Hosokawa
Hi! I've ported multilingual boot.flp to 4.3-RELEASE. Currently, almost all documents are translated to Japanese by me and doc-jp project. I put the source tarball (release-*.tar.gz), compiled binaries (*/*.flp, currently English and Japanese support only) and translation kit

Getting peer credentials on a unix domain socket

2001-05-04 Thread Dima Dorfman
Is there a reliable method of obtaining the credentials (uid/gid) of a peer (SOCK_STREAM sockets only, obviously) on a unix domain socket? All the Stevens books I have suggest that there isn't, but I'm wondering if something has been developed since those books were published. Note that a

Re: Getting peer credentials on a unix domain socket

2001-05-04 Thread Alfred Perlstein
* Dima Dorfman [EMAIL PROTECTED] [010504 16:06] wrote: Is there a reliable method of obtaining the credentials (uid/gid) of a peer (SOCK_STREAM sockets only, obviously) on a unix domain socket? All the Stevens books I have suggest that there isn't, but I'm wondering if something has been

Re: Getting peer credentials on a unix domain socket

2001-05-04 Thread William E. Baxter
On Fri, May 04, 2001 at 05:07:38PM -0700, Alfred Perlstein wrote: * Dima Dorfman [EMAIL PROTECTED] [010504 16:06] wrote: Is there a reliable method of obtaining the credentials (uid/gid) of a peer (SOCK_STREAM sockets only, obviously) on a unix domain socket? All the Stevens books I have

Re: Optimal setup for large raid?

2001-05-04 Thread Greg Lehey
On Friday, 4 May 2001 at 12:58:58 -0400, Brad L. Chisholm wrote: I sent this to -questions a few days ago, but never received any response, so I thought I'd try here. My apologies if you've seen this more than once. I'm also interested in what might be appropriate filesystem settings

Re: /etc/rc.network and natd_enable

2001-05-04 Thread Nick Rogness
On Fri, 4 May 2001, Ruslan Ermilov wrote: On Thu, May 03, 2001 at 05:17:17PM -0500, Nick Rogness wrote: In 4.2-STABLE, /etc/rc.network has entries to turn on natd. However, natd does not get enabled if you don't specify natd_interface. WHat if you you have setup stored in a

Re: /etc/rc.network and natd_enable

2001-05-04 Thread Nick Rogness
On Fri, 4 May 2001, Nick Rogness wrote: On Fri, 4 May 2001, Ruslan Ermilov wrote: Damn! And if someone enters an IP as natd_interface...does the firewall rules error out? (haven't tried it but looks as if it would) I take that back...it should work

Re: Getting peer credentials on a unix domain socket

2001-05-04 Thread Dima Dorfman
William E. Baxter [EMAIL PROTECTED] writes: On Fri, May 04, 2001 at 05:07:38PM -0700, Alfred Perlstein wrote: * Dima Dorfman [EMAIL PROTECTED] [010504 16:06] wrote: Is there a reliable method of obtaining the credentials (uid/gid) of a peer (SOCK_STREAM sockets only, obviously) on a unix

Re: Getting peer credentials on a unix domain socket

2001-05-04 Thread Alfred Perlstein
* Dima Dorfman [EMAIL PROTECTED] [010504 20:22] wrote: Just to expand on that a little more (for others on the list), consider crontab(1). It's setuid root right now. Obviously that's not good. One way of getting rid of that setuid bit is to have cron(8) (or another daemon) listen on a

Re: Getting peer credentials on a unix domain socket

2001-05-04 Thread Dima Dorfman
Alfred Perlstein [EMAIL PROTECTED] writes: * Dima Dorfman [EMAIL PROTECTED] [010504 20:22] wrote: Just to expand on that a little more (for others on the list), consider crontab(1). It's setuid root right now. Obviously that's not good. One way of getting rid of that setuid bit is to

Re: Getting peer credentials on a unix domain socket

2001-05-04 Thread William E. Baxter
On Fri, May 04, 2001 at 08:34:57PM -0700, Alfred Perlstein wrote: The silly part of it is that the socket's initial credentials might be different than the holder's credentials. A user calls connect() with one set of credentials, subsequently changes credentials, and writes to the socket.