Re: Transfering a File From One Server To Another

2007-07-14 Thread Norberto Meijome
On Fri, 13 Jul 2007 09:41:21 -0700 (PDT)
Pat Singer <[EMAIL PROTECTED]> wrote:

> however nc didn't work because it doesn't accomodate authentication

Hi Pat,
I'm curious...what does authentication (and nc not supporting it) have to do 
with the situation you explained?  I mean...u log in before hand to each 
machine, then transfer the data between each socket handled by each nc 
instance... 
thanks :)
B

_
{Beto|Norberto|Numard} Meijome

"All parts should go together without forcing. You must remember that the parts 
you are reassembling were disassembled by you.
 Therefore, if you can't get them together again, there must be a reason. 
 By all means, do not use hammer."
   IBM maintenance manual, 1975

I speak for myself, not my employer. Contents may be hot. Slippery when wet. 
Reading disclaimers makes you go blind. Writing them is worse. You have been 
Warned.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Transfering a File From One Server To Another

2007-07-13 Thread Pat Singer
Thanks for everyone's answers, however nc didn't work because it doesn't 
accomodate authentication, and scp failed as well (although it looked like it 
succeeded). I will assume it's due to the screwy problems on the sick server.
  Pat

Steve Bertrand <[EMAIL PROTECTED]> wrote:
  Pat Singer wrote:
> Hi;
> I have a server that's screwed up. I'm building out another server now. I 
> need to transfer a 1/2G file from the old one. FTP doesn't work. I tried this:
> wget http://203.223.111.11/path/to/file
> It connected to the machine but threw a 404. Ideas?

# scp file.name [EMAIL PROTECTED]:/home/username

Should do it for you.

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


   
-
Pinpoint customers who are looking for what you sell. 
   
-
Ready for the edge of your seat? Check out tonight's top picks on Yahoo! TV. 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Transfering a File From One Server To Another

2007-07-12 Thread Doug Poland
On Thu, Jul 12, 2007 at 07:42:07AM -0700, Pat Singer wrote:
> Hi;
>   I have a server that's screwed up. I'm building out another server
>   now. I need to transfer a 1/2G file from the old one. FTP doesn't
>   work. I tried this: wget http://203.223.111.11/path/to/file It
>   connected to the machine but threw a 404. Ideas?  TIA,
>
This is a nice fit for netcat.

target# nc -l 1234 > file
source# nc target 1234 < file

man nc(1) for details and other tricks


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


Re: Transfering a File From One Server To Another

2007-07-12 Thread Steve Bertrand
Pat Singer wrote:
> Hi;
>   I have a server that's screwed up. I'm building out another server now. I 
> need to transfer a 1/2G file from the old one. FTP doesn't work. I tried this:
>   wget http://203.223.111.11/path/to/file
>   It connected to the machine but threw a 404. Ideas?

Oh, and BTW, /path/to/file must be under your web servers documents
directory (if it wasn't to begin with). If it wasn't, it would throw the
404.

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


Re: Transfering a File From One Server To Another

2007-07-12 Thread Steve Bertrand
Pat Singer wrote:
> Hi;
>   I have a server that's screwed up. I'm building out another server now. I 
> need to transfer a 1/2G file from the old one. FTP doesn't work. I tried this:
>   wget http://203.223.111.11/path/to/file
>   It connected to the machine but threw a 404. Ideas?

# scp file.name [EMAIL PROTECTED]:/home/username

Should do it for you.

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