- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Telnet Commands to copy file from Host to Client
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-13-2004 01:20 PM
тАО03-13-2004 01:20 PM
Telnet Commands to copy file from Host to Client
What is the command sequence to copy a file on the HPUX machine to my windows client.
Also I may want to copy files from Windows to HPUX using Telnet.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-13-2004 02:00 PM
тАО03-13-2004 02:00 PM
Re: Telnet Commands to copy file from Host to Client
Then you can actually share public keys and copy between sytems with the the scp command.
For HP-UX
http://software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=T1471AA
For Windows:
http://www.networksimplicity.com/openssh
I'm attaching a document on generating and exchanging public keys.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-13-2004 02:39 PM
тАО03-13-2004 02:39 PM
Re: Telnet Commands to copy file from Host to Client
Nevertheless we may use your information at a later stage in the project.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-14-2004 03:06 AM
тАО03-14-2004 03:06 AM
Re: Telnet Commands to copy file from Host to Client
If you are not worried about security, and you want to copy a file from your HPUX server to your windows client, then you can use FTP to do that. TELNET is for remote host sessions rather than remote file transferring.
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-14-2004 05:10 AM
тАО03-14-2004 05:10 AM
Re: Telnet Commands to copy file from Host to Client
Or os there a combination of commands to accomplish that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-14-2004 05:10 AM
тАО03-14-2004 05:10 AM
Re: Telnet Commands to copy file from Host to Client
Or is there a combination of commands to accomplish that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-14-2004 05:39 AM
тАО03-14-2004 05:39 AM
Re: Telnet Commands to copy file from Host to Client
as steven said, telnet just provides means for a remote connection. Anything else is provided by ftp or rcp. Any newer window version has a ftp client. Connect with ftp and copy the files or, if you need it nore often you could use samba of nfs to provide a network drive on the HPUX machine, then you can copy from/to HPUX like in windows.
greetings,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-14-2004 12:37 PM
тАО03-14-2004 12:37 PM
Re: Telnet Commands to copy file from Host to Client
ftp is the best option for you as you needn't have install any software.
From the Windows client (say)
c:\> cd
c:\> ftp
Give the username/password
Make it binary or ascii as per requirement.
Binary ( for data files)
Ascii ( for text files)
ftp> bin or ascii
ftp> get
ftp> put
You can do "man ftp" on the hpux machine to learn more about ftp.
telnet opens a session for you in the unix box and may not help you to copy files.
hth.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-14-2004 01:54 PM
тАО03-14-2004 01:54 PM
Re: Telnet Commands to copy file from Host to Client
All you need to do is craete a batch file say test.bat with contents as
ftp -s:test1 -i 21.1.1.1
where test1 is the file which contains info about the files to be transferrred and 21.1.1.1 is the IP address of the HPUX box.
and then the test1 will contain the following text.
testuser
testpass
bi
lcd c:\windows\desktop\folder
cd /var/tmp
mput file1
bye
testuser is the username through which the user will be logged into your hpux server while testpass is the password. You are transferring the file, "file1" from c:\windows\desktop\folder in the windows machine to /var/tmp in the unix box.
Better to make both the test.bat and test1 hidden. Hope this helps you
Regards
naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-14-2004 09:02 PM
тАО03-14-2004 09:02 PM
Re: Telnet Commands to copy file from Host to Client
Try Using the attached file.
Install the software and try exploring it.
It also has ftp for windows.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-14-2004 09:10 PM
тАО03-14-2004 09:10 PM
Re: Telnet Commands to copy file from Host to Client
I used to do something similar all the time down serially attached modems. It is easier because your devices don't change each time you connect :)
Generally speaking though, there is absolutly no point, use "ftp" or "sftp" or "rcp"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-15-2004 12:39 AM
тАО03-15-2004 12:39 AM
Re: Telnet Commands to copy file from Host to Client
Regards
Gerhard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-15-2004 12:51 AM
тАО03-15-2004 12:51 AM
Re: Telnet Commands to copy file from Host to Client
Why not just activate SAMBA on your HPUX Machine. Once it is set up, your windows PC can see the user's home directory from Dindows and use normal FileManager/Explorer operations to copy files from/to the UNIX machine.
There should be plenty of info on easily configuring Samba (or CIFS/9000 server as HP bundles it..)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-15-2004 02:46 AM
тАО03-15-2004 02:46 AM
Re: Telnet Commands to copy file from Host to Client
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-15-2004 02:53 AM
тАО03-15-2004 02:53 AM
Re: Telnet Commands to copy file from Host to Client
No need to purchase NFS (PC-NFS, ec..) software for Windows these days.. Microsoft is already offerring their SFU 3.5 (Services for Unix) product - free for Windows 2000 Pro, XP Pro and 2000 server licensees..
SFU has a built-in NFS client already if that is what certain sites require.
I would still prefer SMB though (Samba/CIFS).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-12-2006 04:14 AM
тАО12-12-2006 04:14 AM
Re: Telnet Commands to copy file from Host to Client
From your HPUX 'sh' shell:
# kermit
Good Morning!
C-Kermit 8.0.200, 12 Dec 2001, for HP-UX 11.00
Copyright (C) 1985, 2001,
Trustees of Columbia University in the City of New York.
Type ? or HELP for help.
(/) C-Kermit>
At the kermit prompt, just type:
send /BINARY /filepath/filename
send /TEXT /filepath/filename
e.g.
send /TEXT /etc/nsswitch.conf
send /BINARY /home/Jeff_Lynne/ELO_Xanadu.mp3
Then on Hyper-Terminal click pull-down menu "Transfer" then "Receive" with "kermit" protocol.
-or-
receive /TEXT filename
receive /BINARY filename
Then on Hyper-Terminal click pull-down menu "Transfer" then "Send" with "kermit" protocol.
You can do HELP send, HELP receive in kermit for more information.
Best of Luck!
Jonathan
The Claremont Colleges
Claremont, CA 91711