Re: FreeBSD 5.1 i386 not allowing incoming ftp connects?

2003-09-02 Thread Kenneth Culver
 I am trying to set up a FreeBSD 5.1 i386 box.  Everything seems to be
 fine, except, incoming ftp is all rejected.  Inetd.conf is set to allow
 ftp.  Is there another switch to set somewhere to allow all incoming
 ftp?  If so, what/where?

is inetd even starting? I don't think that inetd starts by default
anymore.

Ken
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 5.1 i386 not allowing incoming ftp connects?

2003-09-02 Thread Robertdkeys
As it turns out, a one liner:   inetd_enabled=YES
added to rc.conf caused it to come up correctly.

Now it is running fine!  Thanks all

Bob Keys
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 5.1 i386 not allowing incoming ftp connects?

2003-09-02 Thread chael
Hmm... funny, i have thought that inetd_enabled=YES was default regardless
if it's in rc.conf or not. Because even it it's not in rc.conf, you can
still see it running when you ps -ax  (/usr/sbin/inetd -wW). I have my pop3
(which requires editing the inetd.conf) working even if that line is not in
my rc.conf.


- Original Message - 
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Tuesday, September 02, 2003 9:29 AM
Subject: Re: FreeBSD 5.1 i386 not allowing incoming ftp connects?


 As it turns out, a one liner:   inetd_enabled=YES
 added to rc.conf caused it to come up correctly.

 Now it is running fine!  Thanks all

 Bob Keys
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
[EMAIL PROTECTED]



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 5.1 i386 not allowing incoming ftp connects?

2003-09-02 Thread Peter Ulrich Kruppa
On Tue, 2 Sep 2003 [EMAIL PROTECTED] wrote:

 Hmm... funny, i have thought that inetd_enabled=YES was default regardless
 if it's in rc.conf or not. Because even it it's not in rc.conf, you can
 still see it running when you ps -ax  (/usr/sbin/inetd -wW). I have my pop3
 (which requires editing the inetd.conf) working even if that line is not in
 my rc.conf.

THE Handbook -
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/inetd.html
- says:
inetd is initialized through the /etc/rc.conf system. The
inetd_enable option is set to ``NO'' by default, but is often
times turned on by sysinstall with the medium security profile.
Placing:

inetd_enable=YES

or

inetd_enable=NO

into /etc/rc.conf can enable or disable inetd starting at boot
time.

But you are right, I could swear it was always turned by default.
Regards,

Uli.




 - Original Message -
 From: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Sent: Tuesday, September 02, 2003 9:29 AM
 Subject: Re: FreeBSD 5.1 i386 not allowing incoming ftp connects?


  As it turns out, a one liner:   inetd_enabled=YES
  added to rc.conf caused it to come up correctly.
 
  Now it is running fine!  Thanks all
 
  Bob Keys
  ___
  [EMAIL PROTECTED] mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
 

 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]


+---+
|Peter Ulrich Kruppa|
| Wuppertal |
|  Germany  |
+---+
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: FreeBSD 5.1 i386 not allowing incoming ftp connects?

2003-09-02 Thread liquid
It is turned on *IF* you say so during the install.  What does or does
not run by default is actually determined by /etc/defaults/rc.conf.
/etc/rc.conf is an override file, if you will.

My guess here is that if you choose not to use the internet super
server during the installation, it alters the rc.conf located in
/etc/defaults rather than adding a line in /etc/rc.conf to disable
inetd.

Sandro


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-freebsd-
 [EMAIL PROTECTED] On Behalf Of Peter Ulrich Kruppa
 Sent: September 2, 2003 12:35 AM
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED];
 [EMAIL PROTECTED]
 Subject: Re: FreeBSD 5.1 i386 not allowing incoming ftp connects?
 
 On Tue, 2 Sep 2003 [EMAIL PROTECTED] wrote:
 
  Hmm... funny, i have thought that inetd_enabled=YES was default
 regardless
  if it's in rc.conf or not. Because even it it's not in rc.conf, you
 can
  still see it running when you ps -ax  (/usr/sbin/inetd -wW). I have
 my pop3
  (which requires editing the inetd.conf) working even if that line is
 not in
  my rc.conf.
 
 THE Handbook -
 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/inetd.html
 - says:
   inetd is initialized through the /etc/rc.conf system. The
   inetd_enable option is set to ``NO'' by default, but is often
   times turned on by sysinstall with the medium security profile.
   Placing:
 
   inetd_enable=YES
 
   or
 
   inetd_enable=NO
 
   into /etc/rc.conf can enable or disable inetd starting at boot
   time.
 
 But you are right, I could swear it was always turned by default.
 Regards,
 
 Uli.
 
 
 
 
  - Original Message -
  From: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Cc: [EMAIL PROTECTED]
  Sent: Tuesday, September 02, 2003 9:29 AM
  Subject: Re: FreeBSD 5.1 i386 not allowing incoming ftp connects?
 
 
   As it turns out, a one liner:   inetd_enabled=YES
   added to rc.conf caused it to come up correctly.
  
   Now it is running fine!  Thanks all
  
   Bob Keys
   ___
   [EMAIL PROTECTED] mailing list
   http://lists.freebsd.org/mailman/listinfo/freebsd-questions
   To unsubscribe, send any mail to
  [EMAIL PROTECTED]
  
  
 
  ___
  [EMAIL PROTECTED] mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to freebsd-questions-
 [EMAIL PROTECTED]
 
 
   +---+
   |Peter Ulrich Kruppa|
 | Wuppertal |
 |  Germany  |
 +---+
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-
 [EMAIL PROTECTED]


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD 5.1 i386 not allowing incoming ftp connects?

2003-09-01 Thread Robertdkeys
I am trying to set up a FreeBSD 5.1 i386 box.  Everything seems
to be fine, except, incoming ftp is all rejected.  Inetd.conf is set to
allow ftp.  Is there another switch to set somewhere to allow all
incoming ftp?  If so, what/where?

Thanks

Bob Keys
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 5.1 i386 not allowing incoming ftp connects?

2003-09-01 Thread Peter Ulrich Kruppa [EMAIL PROTECTED]
On Mon, 1 Sep 2003 [EMAIL PROTECTED] wrote:

 I am trying to set up a FreeBSD 5.1 i386 box.  Everything seems
 to be fine, except, incoming ftp is all rejected.  Inetd.conf is set to
 allow ftp.  Is there another switch to set somewhere to allow all
 incoming ftp?  If so, what/where?
Do you have
inetd_enable=Yes
in your /etc/rc.conf ?
Then reboot (or perhaps executing # /etc/netstart will
do).

Regards,

Uli.

 Thanks

 Bob Keys
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]


+---+
|Peter Ulrich Kruppa|
| Wuppertal |
|  Germany  |
+---+
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]