Networking Forums

Networking Forums > Computer Networking > Linux Networking > app to send and receive file over a network?

Reply
Thread Tools Display Modes

app to send and receive file over a network?

 
 
Rui Maciel
Guest
Posts: n/a

 
      10-05-2007, 07:58 PM
Is there an application (or application package) that enables the users to
send and receive files over a network connection? To be more precise, an
app which, to send the file, the user only needs to feed the file name and
the destination's IP address and to receive the file the user simply needs
to run the app and wait that the file is sent.


Thanks in advance
Rui Maciel


 
Reply With Quote
 
 
 
 
Robert Harris
Guest
Posts: n/a

 
      10-05-2007, 10:35 PM
Rui Maciel wrote:
> Is there an application (or application package) that enables the users to
> send and receive files over a network connection? To be more precise, an
> app which, to send the file, the user only needs to feed the file name and
> the destination's IP address and to receive the file the user simply needs
> to run the app and wait that the file is sent.
>
>
> Thanks in advance
> Rui Maciel
>
>

scp is the usual program used, but you need to have sshd running on the
destination machine for it to work.

In fact, any file transfer requires that the destination can run the
appropriate server program, e.g. if you use ftp, then the server must
run ftpd.

Robert
 
Reply With Quote
 
Alexander N. Spitzer
Guest
Posts: n/a

 
      10-06-2007, 12:16 AM
Rui Maciel wrote:
> Is there an application (or application package) that enables the users to
> send and receive files over a network connection? To be more precise, an
> app which, to send the file, the user only needs to feed the file name and
> the destination's IP address and to receive the file the user simply needs
> to run the app and wait that the file is sent.
>
>
> Thanks in advance
> Rui Maciel
>
>


There are many options, here are a couple. Some much less secure then
other and not appropriate to be freely available on the internet...

1) scp and setup ssh keys so a password is not required

2) rsync can we setup with public write, you can require passwords

3) ncftpput (ncftpd.org?) to automate ftp with passwords in the command
line or config file.

4) lftp - another automatable ftp program.


Alexander Spitzer
Bonsai Bonanza
http://www.BonsaiBonanza.com



Alexander Spitzer
Bonsai Bonanza
http://www.BonsaiBonanza.com
 
Reply With Quote
 
Rui Maciel
Guest
Posts: n/a

 
      10-06-2007, 12:27 AM
Robert Harris wrote:

> scp is the usual program used, but you need to have sshd running on the
> destination machine for it to work.
>
> In fact, any file transfer requires that the destination can run the
> appropriate server program, e.g. if you use ftp, then the server must
> run ftpd.


That crossed my mind but, due to the daemons and all the setup needed, it is
a bit too much to handle.

What I was searching for was some sort of minimalistic, contained
application (or applications package) that enabled the users to transfer a
given file without any fuss whatsoever. You know, some sort of wget-type
app which, instead of connecting to some FTP or HTTP server, connects to a
minimalist server ran for the only purpose of sending a single file.

Does something like that exist?


Rui Maciel
 
Reply With Quote
 
Mark Hobley
Guest
Posts: n/a

 
      10-06-2007, 02:08 AM
Rui Maciel <(E-Mail Removed)> wrote:
> What I was searching for was some sort of minimalistic, contained
> application (or applications package) that enabled the users to transfer a
> given file without any fuss whatsoever. You know, some sort of wget-type
> app which, instead of connecting to some FTP or HTTP server, connects to a
> minimalist server ran for the only purpose of sending a single file.


What about kermit? This enables you to send files over a telnet session.

Mark.

--
Mark Hobley
393 Quinton Road West
QUINTON
Birmingham
B32 1QE

Email: markhobley at hotpop dot donottypethisbit com

http://markhobley.yi.org/

 
Reply With Quote
 
Hactar
Guest
Posts: n/a

 
      10-06-2007, 05:07 AM
In article <4706d662$0$3486$(E-Mail Removed)>,
Rui Maciel <(E-Mail Removed)> wrote:
> Robert Harris wrote:
>
> > scp is the usual program used, but you need to have sshd running on the
> > destination machine for it to work.
> >
> > In fact, any file transfer requires that the destination can run the
> > appropriate server program, e.g. if you use ftp, then the server must
> > run ftpd.

>
> That crossed my mind but, due to the daemons and all the setup needed, it is
> a bit too much to handle.
>
> What I was searching for was some sort of minimalistic, contained
> application (or applications package) that enabled the users to transfer a
> given file without any fuss whatsoever. You know, some sort of wget-type
> app which, instead of connecting to some FTP or HTTP server, connects to a
> minimalist server ran for the only purpose of sending a single file.
>
> Does something like that exist?


tftp?

--
-eben (E-Mail Removed)P http://royalty.mine.nu:81
SCORPIO: Get ready for an unexpected trip when you fall screaming
from an open window. Work a little harder on improving your low self
esteem, you stupid freak. -- Weird Al, _Your Horoscope for Today_
 
Reply With Quote
 
Kalyan Manchikanti
Guest
Posts: n/a

 
      10-06-2007, 05:32 AM
On Oct 5, 12:58 pm, Rui Maciel <rui.mac...@gmail.com> wrote:
> Is there an application (or application package) that enables the users to
> send and receive files over a network connection? To be more precise, an
> app which, to send the file, the user only needs to feed the file name and
> the destination's IP address and to receive the file the user simply needs
> to run the app and wait that the file is sent.
>
> Thanks in advance
> Rui Maciel


You can script most of this using "nc" => netcat in linux..

hth,
Kalyan


 
Reply With Quote
 
David Brown
Guest
Posts: n/a

 
      10-06-2007, 11:50 AM
Rui Maciel wrote:
> Robert Harris wrote:
>
>> scp is the usual program used, but you need to have sshd running on the
>> destination machine for it to work.
>>
>> In fact, any file transfer requires that the destination can run the
>> appropriate server program, e.g. if you use ftp, then the server must
>> run ftpd.

>
> That crossed my mind but, due to the daemons and all the setup needed, it is
> a bit too much to handle.
>
> What I was searching for was some sort of minimalistic, contained
> application (or applications package) that enabled the users to transfer a
> given file without any fuss whatsoever. You know, some sort of wget-type
> app which, instead of connecting to some FTP or HTTP server, connects to a
> minimalist server ran for the only purpose of sending a single file.
>
> Does something like that exist?
>
>
> Rui Maciel


netcat might suit your purpose:

http://www.oreilly.com/pub/h/1058

It's about as minimalistic as it gets, but you have to start the
transfer commands at each end.
 
Reply With Quote
 
Bill Marcum
Guest
Posts: n/a

 
      10-06-2007, 04:03 PM
On 2007-10-05, Rui Maciel <(E-Mail Removed)> wrote:
> Is there an application (or application package) that enables the users to
> send and receive files over a network connection? To be more precise, an
> app which, to send the file, the user only needs to feed the file name and
> the destination's IP address and to receive the file the user simply needs
> to run the app and wait that the file is sent.
>
>
> Thanks in advance
> Rui Maciel
>

You could send email attachments. If you really want to send files to
user@1.2.3.4, the destination machine must have an smtp server, but
otherwise the recipient can use fetchmail.
 
Reply With Quote
 
Allen Kistler
Guest
Posts: n/a

 
      10-06-2007, 04:56 PM
Rui Maciel wrote:
> Robert Harris wrote:
>
>> scp is the usual program used, but you need to have sshd running on the
>> destination machine for it to work.
>>
>> In fact, any file transfer requires that the destination can run the
>> appropriate server program, e.g. if you use ftp, then the server must
>> run ftpd.

>
> That crossed my mind but, due to the daemons and all the setup needed, it is
> a bit too much to handle.
>
> What I was searching for was some sort of minimalistic, contained
> application (or applications package) that enabled the users to transfer a
> given file without any fuss whatsoever. You know, some sort of wget-type
> app which, instead of connecting to some FTP or HTTP server, connects to a
> minimalist server ran for the only purpose of sending a single file.
>
> Does something like that exist?


You mean something small and light, not run as root, so the admin of the
server doesn't need to know it's running? And multiple clients, who
have been installed by the smallest, most undetectable payload possible,
can update themselves by downloading a more complete installation
package from the small, light, undetected server? Perhaps the next step
is the client and the server can be symmetric and bundled together, for
easy, automatic, cascaded distribution? All of it should use accepted
tools that already exist, so that, you know, nothing would seem out of
the ordinary. Is that what you mean?
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can a router receive as well as send? Chris Shearer Cooper Network Routers 3 07-27-2007 10:46 AM
Send/Receive Procedures in pppd 2.4.1 addams013 Linux Networking 0 01-30-2007 02:02 PM
Ex-wanadoo - can now receive but not send in OE Rose28 Broadband 4 09-04-2006 08:38 PM
Time taken for send/receive. cathode23@gmail.com Linux Networking 1 08-29-2005 10:08 PM
Can't send only receive! Magnus Wireless Internet 1 05-31-2004 11:25 PM



1 2 3 4 5 6 7 8 9 10 11