From owner-freebsd-stable Thu Feb 7 8: 0:19 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id BC7D937B41A for ; Thu, 7 Feb 2002 08:00:11 -0800 (PST) Received: (qmail 32098 invoked by uid 0); 7 Feb 2002 16:00:06 -0000 Received: from pd9003287.dip.t-dialin.net (HELO gmx.net) (217.0.50.135) by mail.gmx.net (mp015-rz3) with SMTP; 7 Feb 2002 16:00:06 -0000 Message-ID: <3C62A499.2030707@gmx.net> Date: Thu, 07 Feb 2002 17:00:25 +0100 From: Michael Nottebrock User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:0.9.8) Gecko/20020204 X-Accept-Language: en-us MIME-Version: 1.0 To: Paolo Pisati Cc: FreeBSD_Stable Subject: Re: ftp_proxy and http_proxy don't work References: <20020207154428.A43448@southcross.skynet.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Paolo Pisati wrote: > My network is behind an http/ftp proxy server, that's why i set > these 2 options in /etc/make.conf but it seems that the fetch > program refuse to use it, any idea? This really is a bit of a documentation bug, since the examples in /etc/defaults/make.conf are misleading. Use FETCH_ENV= HTTP_PROXY=http://192.168.8.1:3128 in order to have fetch utilize a http-proxy running on 192.168.8.1, port 3128 for example. If you want fetch to use your http-proxy for ftp-tranfers, too, you don't need to specify FTP_PROXY, since fetch defaults to use a given http-proxy for ftp. If you want to use an actual ftp-proxy, use a line like FETCH_ENV= HTTP_PROXY=http://192.168.8.1:3128 \\ FTP_PROXY=10.0.0.1:21 or for a different http-proxy for ftp-transfers use something like FETCH_ENV= HTTP_PROXY=http://192.168.8.1:3128 \\ FTP_PROXY=http://10.0.0.1:3128 (remove line breaks and \\'s) -- Michael Nottebrock To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message