unix to winnt file transfer


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers unix to winnt file transfer
Prev   Next
# 1  
Old 07-16-2001
Error unix to winnt file transfer

how to pass files from unix to windows nt?help
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

File Transfer from Window server to UNIX and UNIX to UNIX

Dear All, Can someone help to command or program to transfer the file from windows to Unix server and from one unix server to another Unix server in secure way. I would request no samba client. (4 Replies)
Discussion started by: yadavricky
4 Replies

2. UNIX for Advanced & Expert Users

UNIX - SCP File Transfer

Hi, How do i know if the files are transferred succesfully when i use SCP to transfer files between 2 servers. One more is i am trying to send all the files in a single shot by using * to save the connection time. So can i know when the scp breakes in the middle scp $sourcepath/*... (9 Replies)
Discussion started by: vijaykrc
9 Replies

3. UNIX for Dummies Questions & Answers

transfer file from unix to windows on same PC

Hi, Do any one know the shell script code to transfer a file from unix to windows on same PC (4 Replies)
Discussion started by: monika
4 Replies

4. Shell Programming and Scripting

to transfer a file from unix to window

Hello sir/Madam, I m writing in unix prompt folllowing- >ftp <local ip> // my pc ip is 10.64.0.59 Then following message is displayed- "ftp: connect: Connection refused" Please help me to solve this problem. Thanking you. (3 Replies)
Discussion started by: Nirmal
3 Replies

5. Shell Programming and Scripting

Transfer FILE from UNIX to WIN2000/XP

it's possible make a transfer file with a remote command from UNIX SYSTEM to another computer with WIN2000/XP ??? ex.(rsh,ssh ecc.....????) now i use FTP program or telnet connection but ,i find a solution for execute a transfre file in to shell script UNIX (sh or ksh) from windows system (2 Replies)
Discussion started by: ZINGARO
2 Replies

6. Programming

How to check for a directory during FTP from WinNT to HP-UNIX

hi All, I have to Ftp a Directory from the WinNt to Hp-Unix, before that i have to check wether the same directory is present on HP-Unix, if it is then i have to delete that,& do the fresh FTP. The problem is that i have to implement this in a C Program,which i have to develop on WinNT Envt.... (1 Reply)
Discussion started by: asifkhan
1 Replies

7. UNIX for Advanced & Expert Users

unix automatic file transfer

Hello, I am a beginner with korn shell scripting. I have got a text file that gets produced every night and I need to transfer it to a windows shared area. Is there any command line script (e.g FTP) that I could use to transfer the file automatically without manual intervention everyday? Any... (4 Replies)
Discussion started by: tagem
4 Replies

8. IP Networking

rcp from winnt to unix

I try an RCP command from winnt to unix and it works only with 2 pc but with the two others it dosen't work....? MS-DOS return this error msg : 0826-826 The host name for your address is not known. What can I do to resolve my probleme ? Dimitri Geneva - Switzerland (2 Replies)
Discussion started by: dfrangidis
2 Replies

9. UNIX for Dummies Questions & Answers

importing database from unix to winnt

i am a unix-super-beginner (swaddled and weaned on windows) and am trying to import a database from a unix directory into winnt. can someone help me or am i a hopeless case? (4 Replies)
Discussion started by: sadiecutie
4 Replies

10. IP Networking

File transfer from unix to NT box?

Is there a method to transfer a file from UNIX (AIX) to an NT box without the NT box having any special software running? I can ping the box via the network and I have a valid NT account to use. Is FTP a viable solution ? HELP! (10 Replies)
Discussion started by: jvacc
10 Replies
Login or Register to Ask a Question
Smokeping_probes_FTPtransfer(3) 				     SmokePing					   Smokeping_probes_FTPtransfer(3)

NAME
Smokeping::probes::FTPtransfer - intrusive bandwidth probe OVERVIEW
This probe send and retrieve files to or from an ftp server. It will plot the bandwidth it could use. SYNOPSIS
*** Probes *** +FTPtransfer destfile = path/to/destinationfile.xxx forks = 5 min_interval = 1 mode = get # mandatory offset = 50% passwordfile = /some/place/secret srcfile = src/path/mybig.pdf # mandatory step = 300 timeout = 15 # mandatory # The following variables can be overridden in each target section localaddr = myhost-nat-if passive = yes password = test-password pings = 5 port = 3255 timeout = 10 username = test-user # [...] *** Targets *** probe = FTPtransfer # if this should be the default probe # [...] + mytarget # probe = FTPtransfer # if the default probe is something else host = my.host localaddr = myhost-nat-if passive = yes password = test-password pings = 5 port = 3255 timeout = 10 username = test-user DESCRIPTION
The probe uses the Net::FTP perl client to run performance tests using an FTP server as a target. This probe is intrusive as it transfers real data. By using real data we get a fair shot at figuring out what a link is capable of when it comes to transfering actual files. The password can be specified either (in order of precedence, with the latter overriding the former) in the probe-specific variable `password', in an external file or in the target-specific variable `password'. The location of this external file is given in the probe- specific variable `passwordfile'. See Smokeping::probes::passwordchecker(3pm) for the format of this file (summary: colon-separated triplets of the form `<host>:<username>:<password>') The probe tries to be nice to the server and waits at least X seconds between starting filetransfers, where X is the value of the probe specific `min_interval' variable (1 by default). Many variables can be specified either in the probe or in the target definition, the target-specific variable will override the prove- specific variable. If your transfer takes a lot of time, you may want to make sure to set the timeout and max_rtt properly so that smokeping does not abort the transfers of limit the graph size. VARIABLES
Supported probe-specific variables: destfile Normally the destination filename is the same as the source filename (without the path). If you want keep files in different directories this may not work, and you have to specify destfile as well. Example value: path/to/destinationfile.xxx forks Run this many concurrent processes at maximum Example value: 5 Default value: 5 min_interval The minimum interval between each starting ftp sessions in seconds. Default value: 1 mode The ftp probe can be in either put or get mode. If it is in put mode then it will send a file to the ftp server. In get mode it will retrieve a file from the ftp server. Example value: get This setting is mandatory. offset If you run many probes concurrently you may want to prevent them from hitting your network all at the same time. Using the probe- specific offset parameter you can change the point in time when each probe will be run. Offset is specified in % of total interval, or alternatively as 'random', and the offset from the 'General' section is used if nothing is specified here. Note that this does NOT influence the rrds itself, it is just a matter of when data acqusition is initiated. (This variable is only applicable if the variable 'concurrentprobes' is set in the 'General' section.) Example value: 50% passwordfile Location of the file containing usernames and passwords. Example value: /some/place/secret srcfile The name of the source file. If the probe is in put mode, this file has to be on the local machine, if the probe is in get mode then this file should sit in the remote ftp account. Example value: src/path/mybig.pdf This setting is mandatory. step Duration of the base interval that this probe should use, if different from the one specified in the 'Database' section. Note that the step in the RRD files is fixed when they are originally generated, and if you change the step parameter afterwards, you'll have to delete the old RRD files or somehow convert them. (This variable is only applicable if the variable 'concurrentprobes' is set in the 'General' section.) Example value: 300 timeout The timeout is the maximum amount of time you will allow the probe to transfer the file. If the probe does not succeed to transfer in the time specified, it will get killed and a 'loss' will be loged. Since FTPtransfer is an invasive probe you should make sure you do not load the link for more than a few seconds anyway. Smokeping curently has a hard limit of 180 seconds for any RTT. Example value: 15 This setting is mandatory. Supported target-specific variables: localaddr The local address to be used when making connections Example value: myhost-nat-if passive Use passive FTP protocol Example value: yes password The password for the user, if not present in the password file. Example value: test-password pings How many pings should be sent to each target, if different from the global value specified in the Database section. Note that the number of pings in the RRD files is fixed when they are originally generated, and if you change this parameter afterwards, you'll have to delete the old RRD files or somehow convert them. Example value: 5 port A non-standard FTP port to be used Example value: 3255 timeout Timeout in seconds for the FTP transfer to complete. Example value: 10 username The username to be tested. Example value: test-user AUTHORS
Tobias Oetiker <tobi@oetiker.ch> sponsored by Virtela BUGS
This probe has the capability for saturating your links, so don't use it unless you know what you are doing. The FTPtransfer probe measures bandwidth, but we report the number of seconds it took to transfer the 'reference' file. This is because curently the notion of Round Trip Time is at the core of the application. It would take some re-engineering to split this out in plugins and thus make it configurable ... 2.6.8 2013-03-17 Smokeping_probes_FTPtransfer(3)