Re: ftp/fetch/cvsup behind a firewall

2004-02-03 Thread Anthony Discolo
Unfortunately, I do not have control over my firewall.

Original Message Follows
From: Kent Stewart [EMAIL PROTECTED]
To: Anthony Discolo [EMAIL PROTECTED], [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]
Subject: Re: ftp/fetch/cvsup behind a firewall
Date: Mon, 2 Feb 2004 19:16:37 -0800
On Monday 02 February 2004 11:18 am, Anthony Discolo wrote:
 I don't have a /usr/share/examples/etc/defaults/make.conf, but I have
 a /usr/share/examples/etc/make.conf.  But it doesn't have a FETCH_ENV
 line in it.

 I'm sure someone has been successful in running cvsup behind a
 firewall? After all, don't all these tools use ftp indrectly?
I use cvsup behind the ipfw firewall. I thought I had to allow port
5999, which is the port cvsup used to talk to the server, and will have
to look at my firewall rules more closely. I use a cvs-mirror to
maintain my outside information. I have fewer problems accessing the
mirror from inside my firewall. A 100mpbs network is also much faster
than my DSL line :).
Do you have control of the firewall?

Kent


 Thanks.

 Original Message Follows
 From: Khairil Yusof [EMAIL PROTECTED]
 To: Anthony Discolo [EMAIL PROTECTED]
 CC: [EMAIL PROTECTED]
 Subject: Re: ftp/fetch/cvsup behind a firewall
 Date: Tue, 03 Feb 2004 02:20:33 +0800

 On Mon, 2004-02-02 at 09:55 -0800, Anthony Discolo wrote:
   Mozilla can access the ftp site with the proxy server configured,
   but I haven't been able to get ftp to work with a proxy server.

 For fetch via proxy see:
 /usr/share/examples/etc/defaults/make.conf

 Copy this file to /etc and edit the FETCH_ENV to point to your proxy

 For cvsup, if you only have access via the proxy server, you can ftp
 the entire cvs tree (not efficient). I would ask your admin to either
 setup a local mirror , or add a dynamic rule for outgoing cvsup
 connections.


 --
 You keep using that word. I do not think it means what you think it
 means.

 FreeBSD 5.2-CURRENT i386
 2:05am up 46 mins, 4 users, load averages: 1.53, 2.23, 2.15
  signature.asc 
--
Kent Stewart
Richland, WA
http://users.owt.com/kstewart/index.html

_
Learn how to choose, serve, and enjoy wine at Wine @ MSN. 
http://wine.msn.com/

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


Re: ftp/fetch/cvsup behind a firewall

2004-02-03 Thread luke
 Unfortunately, I do not have control over my firewall.


 Original Message Follows
 From: Kent Stewart [EMAIL PROTECTED]
 To: Anthony Discolo [EMAIL PROTECTED], [EMAIL PROTECTED]
 CC: [EMAIL PROTECTED]
 Subject: Re: ftp/fetch/cvsup behind a firewall
 Date: Mon, 2 Feb 2004 19:16:37 -0800

 On Monday 02 February 2004 11:18 am, Anthony Discolo wrote:
   I don't have a /usr/share/examples/etc/defaults/make.conf, but I have
   a /usr/share/examples/etc/make.conf.  But it doesn't have a FETCH_ENV
   line in it.
  
   I'm sure someone has been successful in running cvsup behind a
   firewall? After all, don't all these tools use ftp indrectly?

 I use cvsup behind the ipfw firewall. I thought I had to allow port
 5999, which is the port cvsup used to talk to the server, and will have
 to look at my firewall rules more closely. I use a cvs-mirror to
 maintain my outside information. I have fewer problems accessing the
 mirror from inside my firewall. A 100mpbs network is also much faster
 than my DSL line :).

 Do you have control of the firewall?

 Kent



If you cannot get the admin of the firewall to open up port 5999 how about
port 21 for ssh. It seems that most people have that open anyway so it may
not be much of an issue.

Here's where I am going.
1) You need to get shell access on a remote machine outside the firewall.
This shouldn't be too hard, either your machine at home, a friends machine
or one of those many that are offering free shell access. We'll call it
friendly.example.com

2) From your FreeBSD machine behind the firewall you would open up a
tunnel between yourself and the friendly machine on port 5999 for cvsup.

$ ssh -L 5999:cvsupmirror.freebsd.org:5999 [EMAIL PROTECTED]

replace cvsupmirros.freebsd.org with an actual one from the list of
mirrors. loginid is your login name on the remote machine.

3) From another command prompt you run cvsup while pointing to your
localhost as the cvsup server.

# cvsup -g -L2 -h localhost /path/to/cvsupfile

Cheers and good luck,

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


ftp/fetch/cvsup behind a firewall

2004-02-02 Thread Anthony Discolo
I'm trying to get this to work with a non-Linux firewall.

Mozilla can access the ftp site with the proxy server configured, but I 
haven't been able to get ftp to work with a proxy server.

Any help would be greatly appreciated.

Thanks,
Anthony
_
Check out the new MSN 9 Dial-up — fast  reliable Internet access with prime 
features! http://join.msn.com/?pgmarket=en-uspage=dialup/homeST=1

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


Re: ftp/fetch/cvsup behind a firewall

2004-02-02 Thread Khairil Yusof
On Mon, 2004-02-02 at 09:55 -0800, Anthony Discolo wrote:

 Mozilla can access the ftp site with the proxy server configured, but I 
 haven't been able to get ftp to work with a proxy server.

For fetch via proxy see:
/usr/share/examples/etc/defaults/make.conf

Copy this file to /etc and edit the FETCH_ENV to point to your proxy

For cvsup, if you only have access via the proxy server, you can ftp the
entire cvs tree (not efficient). I would ask your admin to either setup
a local mirror , or add a dynamic rule for outgoing cvsup connections.


-- 
You keep using that word. I do not think it means what you think it
means. 

FreeBSD 5.2-CURRENT i386 
2:05am up 46 mins, 4 users, load averages: 1.53, 2.23, 2.15


signature.asc
Description: This is a digitally signed message part


Re: ftp/fetch/cvsup behind a firewall

2004-02-02 Thread Anthony Discolo
I don't have a /usr/share/examples/etc/defaults/make.conf, but I have a 
/usr/share/examples/etc/make.conf.  But it doesn't have a FETCH_ENV line in 
it.

I'm sure someone has been successful in running cvsup behind a firewall?  
After all, don't all these tools use ftp indrectly?

Thanks.

Original Message Follows
From: Khairil Yusof [EMAIL PROTECTED]
To: Anthony Discolo [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]
Subject: Re: ftp/fetch/cvsup behind a firewall
Date: Tue, 03 Feb 2004 02:20:33 +0800
On Mon, 2004-02-02 at 09:55 -0800, Anthony Discolo wrote:

 Mozilla can access the ftp site with the proxy server configured, but I
 haven't been able to get ftp to work with a proxy server.
For fetch via proxy see:
/usr/share/examples/etc/defaults/make.conf
Copy this file to /etc and edit the FETCH_ENV to point to your proxy

For cvsup, if you only have access via the proxy server, you can ftp the
entire cvs tree (not efficient). I would ask your admin to either setup
a local mirror , or add a dynamic rule for outgoing cvsup connections.
--
You keep using that word. I do not think it means what you think it
means.
FreeBSD 5.2-CURRENT i386
2:05am up 46 mins, 4 users, load averages: 1.53, 2.23, 2.15
 signature.asc 
_
Check out the new MSN 9 Dial-up — fast  reliable Internet access with prime 
features! http://join.msn.com/?pgmarket=en-uspage=dialup/homeST=1

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


Re: ftp/fetch/cvsup behind a firewall

2004-02-02 Thread Anthony Discolo
I don't have a /usr/share/examples/etc/defaults/make.conf, but I have a 
/usr/share/examples/etc/make.conf.  But it doesn't have a FETCH_ENV line in 
it.

I'm sure someone has been successful in running cvsup behind a firewall?  
After all, don't all these tools use ftp indrectly?

Thanks.

Original Message Follows
From: Khairil Yusof [EMAIL PROTECTED]
To: Anthony Discolo [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]
Subject: Re: ftp/fetch/cvsup behind a firewall
Date: Tue, 03 Feb 2004 02:20:33 +0800
On Mon, 2004-02-02 at 09:55 -0800, Anthony Discolo wrote:

 Mozilla can access the ftp site with the proxy server configured, but I
 haven't been able to get ftp to work with a proxy server.
For fetch via proxy see:
/usr/share/examples/etc/defaults/make.conf
Copy this file to /etc and edit the FETCH_ENV to point to your proxy

For cvsup, if you only have access via the proxy server, you can ftp the
entire cvs tree (not efficient). I would ask your admin to either setup
a local mirror , or add a dynamic rule for outgoing cvsup connections.
--
You keep using that word. I do not think it means what you think it
means.
FreeBSD 5.2-CURRENT i386
2:05am up 46 mins, 4 users, load averages: 1.53, 2.23, 2.15
 signature.asc 
_
Learn how to choose, serve, and enjoy wine at Wine @ MSN. 
http://wine.msn.com/

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


Re: ftp/fetch/cvsup behind a firewall

2004-02-02 Thread Khairil Yusof
On Mon, 2004-02-02 at 11:12 -0800, Anthony Discolo wrote:
 I don't have a /usr/share/examples/etc/defaults/make.conf, but I have a 
 /usr/share/examples/etc/make.conf.  But it doesn't have a FETCH_ENV line in 
 it.

# If you're behind a firewall and need FTP or HTTP proxy services for
# ports collection fetching to work, the following examples give the
# necessary syntax.  See the fetch(3) man page for details.
#
#FETCH_ENV= FTP_PROXY=ftp://10.0.0.1:21
#FETCH_ENV= HTTP_PROXY=http://10.0.0.1:80

 I'm sure someone has been successful in running cvsup behind a firewall?  
 After all, don't all these tools use ftp indrectly?

No they don't. :) cvs and cvsup, access a cvs server for latest updates
and other info, not an ftp server.

-- 
You keep using that word. I do not think it means what you think it
means. 

FreeBSD 5.2-CURRENT i386 
3:15am up 1:56, 3 users, load averages: 2.15, 2.10, 1.91


signature.asc
Description: This is a digitally signed message part


Re: ftp/fetch/cvsup behind a firewall

2004-02-02 Thread Anthony Discolo
Thanks for the quick response!

I assume that adding these lines to the make.conf is the same as setting 
them as environment variables?  If I do this, I get:

# set HTTP_PROXY=http://foo:80  (where foo is my proxy server; the same 
address makes mozilla work)
# fetch http://ftp.freebsd.org/file (where file is a valid file)
fetch: http://ftp.freebsd.org/file: Host not found

Original Message Follows
From: Khairil Yusof [EMAIL PROTECTED]
To: Anthony Discolo [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]
Subject: Re: ftp/fetch/cvsup behind a firewall
Date: Tue, 03 Feb 2004 03:23:32 +0800
On Mon, 2004-02-02 at 11:12 -0800, Anthony Discolo wrote:
 I don't have a /usr/share/examples/etc/defaults/make.conf, but I have a
 /usr/share/examples/etc/make.conf.  But it doesn't have a FETCH_ENV line 
in
 it.

# If you're behind a firewall and need FTP or HTTP proxy services for
# ports collection fetching to work, the following examples give the
# necessary syntax.  See the fetch(3) man page for details.
#
#FETCH_ENV= FTP_PROXY=ftp://10.0.0.1:21
#FETCH_ENV= HTTP_PROXY=http://10.0.0.1:80
 I'm sure someone has been successful in running cvsup behind a firewall?
 After all, don't all these tools use ftp indrectly?
No they don't. :) cvs and cvsup, access a cvs server for latest updates
and other info, not an ftp server.
--
You keep using that word. I do not think it means what you think it
means.
FreeBSD 5.2-CURRENT i386
3:15am up 1:56, 3 users, load averages: 2.15, 2.10, 1.91
 signature.asc 
_
There are now three new levels of MSN Hotmail Extra Storage!  Learn more. 
http://join.msn.com/?pgmarket=en-uspage=hotmail/es2ST=1

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


Re: ftp/fetch/cvsup behind a firewall

2004-02-02 Thread Kent Stewart
On Monday 02 February 2004 11:18 am, Anthony Discolo wrote:
 I don't have a /usr/share/examples/etc/defaults/make.conf, but I have
 a /usr/share/examples/etc/make.conf.  But it doesn't have a FETCH_ENV
 line in it.

 I'm sure someone has been successful in running cvsup behind a
 firewall? After all, don't all these tools use ftp indrectly?

I use cvsup behind the ipfw firewall. I thought I had to allow port 
5999, which is the port cvsup used to talk to the server, and will have 
to look at my firewall rules more closely. I use a cvs-mirror to 
maintain my outside information. I have fewer problems accessing the 
mirror from inside my firewall. A 100mpbs network is also much faster 
than my DSL line :).

Do you have control of the firewall?

Kent


 Thanks.

 Original Message Follows
 From: Khairil Yusof [EMAIL PROTECTED]
 To: Anthony Discolo [EMAIL PROTECTED]
 CC: [EMAIL PROTECTED]
 Subject: Re: ftp/fetch/cvsup behind a firewall
 Date: Tue, 03 Feb 2004 02:20:33 +0800

 On Mon, 2004-02-02 at 09:55 -0800, Anthony Discolo wrote:
   Mozilla can access the ftp site with the proxy server configured,
   but I haven't been able to get ftp to work with a proxy server.

 For fetch via proxy see:
 /usr/share/examples/etc/defaults/make.conf

 Copy this file to /etc and edit the FETCH_ENV to point to your proxy

 For cvsup, if you only have access via the proxy server, you can ftp
 the entire cvs tree (not efficient). I would ask your admin to either
 setup a local mirror , or add a dynamic rule for outgoing cvsup
 connections.


 --
 You keep using that word. I do not think it means what you think it
 means.

 FreeBSD 5.2-CURRENT i386
 2:05am up 46 mins, 4 users, load averages: 1.53, 2.23, 2.15
  signature.asc 

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

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