From owner-freebsd-questions Fri Apr 24 06:46:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA05661 for freebsd-questions-outgoing; Fri, 24 Apr 1998 06:46:41 -0700 (PDT) (envelope-from owner-freebsd-questions@FreeBSD.ORG) Received: from navisite.net (mail1.navisite.net [205.139.29.86]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA05649 for ; Fri, 24 Apr 1998 06:46:30 -0700 (PDT) (envelope-from forrie@tiac.net) Received: from forrie (dearest@nav133.cmgi.com [206.25.87.133]) by navisite.net (8.8.8/8.8.8) with SMTP id JAA00462 for ; Fri, 24 Apr 1998 09:46:52 -0400 (EDT) Message-Id: <199804241346.JAA00462@navisite.net> X-Sender: forrie@pop.tiac.net X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0 Date: Fri, 24 Apr 1998 09:47:03 -0400 To: freebsd-questions@FreeBSD.ORG From: Forrest Aldrich Subject: Xinetd on FreeBSD 2.2.6 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I've been in touch with one of the developers with regards to problems I'm having with getting Xinetd to run under FreeBSD. To no avail... we've not been able to narrow down the problem. So I wonder if someone there might have a pointer. The permissions are correct on the executable (700), and here is the last draft of a config I was using (attached). What happens is I connect to the service and it just dumps the connection. I've tried specifying "interface = 0.0.0.0" and using both name and IP addresses in the acl. No go. It occurs on any service. It also doesn't matter if I specify a network as xxx.xxx.xxx or xxx.xxx.xxx. with the "." at the end. Very confusing. Thanks, Forrest # some generic defaults defaults { instances = 15 log_type = FILE /var/log/xinetd.log log_on_success = HOST PID log_on_failure = HOST RECORD } # core tcp-based services that we will permit service ftp { socket_type = stream interface = 0.0.0.0 protocol = tcp wait = no user = root server = /usr/libexec/ftpd server_args = -l -a log_on_success += USERID EXIT log_on_failure += USERID ATTEMPT only_from = 207.252.86 nav133.cmgi.com only_from = davinci.cmgi.com } # only permit from our network, ssh connections will be # used exclusively. service telnet { socket_type = stream protocol = tcp interface = 0.0.0.0 wait = no user = root server = /usr/local/etc/banners/telnetd.sh log_on_success += USERID EXIT log_on_failure += USERID ATTEMPT only_from = 207.252.86 nav133.cmgi.com only_from = davinci.cmgi.com } service pop3 { socket_type = stream interface = 0.0.0.0 protocol = tcp wait = no user = root server = /usr/local/libexec/popper server_args = -s } service ident { socket_type = stream protocol = tcp interface = 0.0.0.0 wait = no user = root server = /usr/local/sbin/in.identd server_args = -t120 } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message