From owner-freebsd-questions@FreeBSD.ORG Tue Aug 5 09:59:22 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9BA6E106567F for ; Tue, 5 Aug 2008 09:59:22 +0000 (UTC) (envelope-from reddvinylene@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by mx1.freebsd.org (Postfix) with ESMTP id 31D718FC1C for ; Tue, 5 Aug 2008 09:59:21 +0000 (UTC) (envelope-from reddvinylene@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so1110727nfh.33 for ; Tue, 05 Aug 2008 02:59:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=GKt7QQMx4z//0bUmRVEgbRpPELmhmFioIObbFh8bYb0=; b=SrBLRoUYLoOfiExoLZinygaYwWncICGEWVtGfCrVbZoUQ57+ueoVDlcIcc+7aA6Dmt QNlOewYCTkJ3NW5opzWrX1/SzkLwcyBvdPLPiCHZRvdklkD4s8BPtysw65z7E2d4AGNp dE0mHnHzcWr+Sxi2wyMtj61aSBeEcY0DApf+U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=kTUYWCovnIO+WJBaP8KlIYyGkwpfWodTkVncRYOqeI+fVo/qrLR7ZuiE/OyoyWMSsu Qmq2Tkrpma1M1qi+xFT3btGgUuHohiSdHjXTo0UDyKpOyLjKVG1l+ixVduXVKDlnS9H2 gGD+UUtM/6h5ThTXfDBXwXEIXfkSHtbABfCuk= Received: by 10.103.175.9 with SMTP id c9mr493898mup.15.1217930360584; Tue, 05 Aug 2008 02:59:20 -0700 (PDT) Received: by 10.103.199.5 with HTTP; Tue, 5 Aug 2008 02:59:20 -0700 (PDT) Message-ID: Date: Tue, 5 Aug 2008 11:59:20 +0200 From: "Redd Vinylene" To: questions@freebsd.org, dwmalone@maths.tcd.ie MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: Jails, IPs and identd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Aug 2008 09:59:22 -0000 Hello! I have a jail with multiple IPs. It runs identd, however it only works from the jail's main IP: auth stream tcp nowait root internal auth -r -f -n -o UNKNOWN -t 30 How do I make it work from absolutely all IPs? Perhaps: auth stream tcp nowait root internal auth -r -f -n -o UNKNOWN -t 30 -a ? Thank you all! # man identd -a Specify one specific IP address to bind to. Alternatively, a hostname can be specified, in which case the IPv4 or IPv6 address which corresponds to that hostname is used. Usually a hostname is specified when inetd is run inside a jail(8), in which case the hostname corresponds to that of the jail(8) environment. When the hostname specification is used and both IPv4 and IPv6 bindings are desired, one entry with the appropriate protocol type for each binding is required for each service in /etc/inetd.conf. For example, a TCP-based service would need two entries, one using ``tcp4'' for the protocol and the other using ``tcp6''. See the explanation of the /etc/inetd.conf protocol field below. -- http://www.home.no/reddvinylene