From: Stan Bischof on 3 Jun 2010 16:31 Todd <todd(a)invalid.com> wrote: > When I get the new server in place, I will be able to telnet > into the old server. > > Once I establish a telnet connection, is there a way > to transfer files over it? As has been discussed here ad nauseum , it may be possible if all the right pieces are in place ( your telnet daemon and shell allow it, etc ), but you really should be using ftp. If your machine is running a telnet daemon it is very likely also running an ftp daemon, in which case use ftp and you are set to go. Stan
From: The Natural Philosopher on 3 Jun 2010 16:45 Todd wrote: > On 06/02/2010 09:32 PM, jellybean stonerfish wrote: >> >> I don't have a telnet server up to connect to, so I cant test it, and >> never have, but I thought telnet allowed you to log on and get a command >> line interface to the system. Can you telnet in, and get a command line, >> or am I totally confused. > > When I get the new server in place, I will be able to telnet > into the old server. > > Once I establish a telnet connection, is there a way > to transfer files over it? > Not binary, no. But you will have at least an FTP CLIENT on the remote. Use that to suck stuff off the local. > -T > >
From: The Natural Philosopher on 3 Jun 2010 16:48 Todd wrote: > On 06/03/2010 10:43 AM, Robert Heller wrote: > >> I'm assuming that the two machines are on some (private) LAN. If this >> must go >> over the pubic Internet, the OP should create a disposable >> (unprivilaged!) account on the newbox, and once the files have been >> transfered, disable that account and close up (or shutdown) vsftpd. > > They will be inches from each other. I was hoping to avoid > having to set up ftpd on the new machine. the set up an ftp client and ftpd on the new one. good grief! wait till you have to do it over a modem 500 miles away! You will be able to bootstrap SOMETHING. Even if its cut and pasting source code onto the machine and COMPILING it. If you have telnet access, you can do it, one way or another.
From: Kenny McCormack on 3 Jun 2010 16:54 In article <hu929o$ut7$4(a)speranza.aioe.org>, Todd <todd(a)invalid.com> wrote: >On 06/02/2010 09:32 PM, jellybean stonerfish wrote: >> >> I don't have a telnet server up to connect to, so I cant test it, and >> never have, but I thought telnet allowed you to log on and get a command >> line interface to the system. Can you telnet in, and get a command line, >> or am I totally confused. > >When I get the new server in place, I will be able to telnet >into the old server. > >Once I establish a telnet connection, is there a way >to transfer files over it? > >-T > > Yes. With ftp. I suppose it is possible, but it is very unlikely that the box does not have the "ftp" command installed. The basic "ftp" command is pretty much core Unix; it is hard to imagine a Unix installation that is missing it. To summarize, what you need is (running on the target box): 1) telnet server (this seems to be known true) 2) ftp client (this remains to be seen) -- (This discussion group is about C, ...) Wrong. It is only OCCASIONALLY a discussion group about C; mostly, like most "discussion" groups, it is off-topic Rorsharch [sic] revelations of the childhood traumas of the participants...
From: The Natural Philosopher on 3 Jun 2010 17:33
Kenny McCormack wrote: > In article <hu929o$ut7$4(a)speranza.aioe.org>, Todd <todd(a)invalid.com> wrote: >> On 06/02/2010 09:32 PM, jellybean stonerfish wrote: >>> I don't have a telnet server up to connect to, so I cant test it, and >>> never have, but I thought telnet allowed you to log on and get a command >>> line interface to the system. Can you telnet in, and get a command line, >>> or am I totally confused. >> When I get the new server in place, I will be able to telnet >> into the old server. >> >> Once I establish a telnet connection, is there a way >> to transfer files over it? >> >> -T >> >> > > Yes. With ftp. I suppose it is possible, but it is very unlikely that > the box does not have the "ftp" command installed. The basic "ftp" > command is pretty much core Unix; it is hard to imagine a Unix > installation that is missing it. > > To summarize, what you need is (running on the target box): > 1) telnet server (this seems to be known true) > 2) ftp client (this remains to be seen) > any client that works like RCP ftp, or even NFS, will work, given that you can put any daemon you like up on the new machine. |