From owner-freebsd-questions@FreeBSD.ORG Mon Mar 24 00:21:33 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 7CA59106566C for ; Mon, 24 Mar 2008 00:21:33 +0000 (UTC) (envelope-from mark-fbsd-quest-10+20080323@giovannetti.ca) Received: from www.giovannetti.ca (www.giovannetti.ca [206.248.136.48]) by mx1.freebsd.org (Postfix) with ESMTP id 3EEF48FC18 for ; Mon, 24 Mar 2008 00:21:33 +0000 (UTC) (envelope-from mark-fbsd-quest-10+20080323@giovannetti.ca) Received: from the.palaceofretention.ca (intgateway.palaceofretention.ca [10.10.10.42]) by www.giovannetti.ca (Postfix) with ESMTP id 9F9AD11435; Sun, 23 Mar 2008 19:19:32 -0500 (EST) Message-ID: <47E6F3BA.8010504@giovannetti.ca> Date: Sun, 23 Mar 2008 20:20:10 -0400 From: "Mark G." User-Agent: Thunderbird 2.0.0.12 (X11/20080301) MIME-Version: 1.0 To: darrell@dunmanifestin.co.uk References: <15c45fbc0803230901w112ccdadn8277efc0a4fc7246@mail.gmail.com> <47E6BEBB.50306@giovannetti.ca> <15c45fbc0803231613n3799a9ckdcf3cc2e5d5f30c4@mail.gmail.com> In-Reply-To: <15c45fbc0803231613n3799a9ckdcf3cc2e5d5f30c4@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Subject: Re: Subversion and FreeBSD permission problems 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: Mon, 24 Mar 2008 00:21:33 -0000 Hi again, Darrell Blake wrote: > I'm SSHing to my server from my desktop as I haven't actually got a > monitor on the server but when I do a sockstat I get the following > output regarding svn: > > svuser svnserve 846 3 tcp6 *:3690 *:* ^^^^ I just noticed the 'tcp6' in the above line. Looks like your svn server is listening on an IP version 6 address. It won't answer a request made from an IP version 4 address (it can't even see it), which is what 127.0.0.1 and 192.168.*.* are. Does the output to 'sockstat -4' show any services? Note the -4 option restricts sockstat's output to IP v4 addresses. Mark