Issue with FTP "get" command


 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Issue with FTP "get" command
# 1  
Old 01-08-2009
Issue with FTP "get" command

Hey people..

I have a strange problem with FTP with one of our clients.
They want to use ftp in following manner.

First the client FTP's to its domain FTP Server

And then tries to "get" the files shared in his windows network shares.

get \\abcdserver.com\Test\test.txt

I tried this using Windows standard FTP Client but this doesn't seems to be a valid user case.
Even Linux doesn't supports this.

Any thoughts on this, if it's a valid use case????

I would like to know if standard supports such case or is it an invalid case.
IMO, its invalid since to resolve abcdserver.com you need to do a DNS query and again authentication is required at abcdserver.com to access the shared folder Test.

Please enlighten.

Thanks in advance
# 2  
Old 01-08-2009
Aside from that, all FTP implementations I know can only serve from directories mounted locally. Your client would have to connect that Share (e.g. net use X: \\abcdserver.com\Test in cmd.exe) before being able to use it with FTP.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

2. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

3. Shell Programming and Scripting

Need help - "sed" command issue

we have two parameters as below in our script and passing values while executing. row_count=356 col_count=239 I have below sed command in my script MAILMSG=`grep -v "##" mail_body.txt | sed 's/$Row_Count/'${row_count}'/g;s/$Colu_Count/'${col_count}'/g;s/$Accepted/'5%/g` It is... (3 Replies)
Discussion started by: JSKOBS
3 Replies

4. Shell Programming and Scripting

""Help Me!""Beginner awk learning issue

Hi All, I have just now started learning awk from the source - Awk - A Tutorial and Introduction - by Bruce Barnett and the bad part is that I am stuck on the very first example for running the awk script. The script is as - #!/bin/sh # Linux users have to change $8 to $9 awk ' BEGIN ... (6 Replies)
Discussion started by: csrohit
6 Replies

5. UNIX for Dummies Questions & Answers

Unix "look" Command "File too large" Error Message

I am trying to find lines in a text file larger than 3 Gb that start with a given string. My command looks like this: $ look "string" "/home/patrick/filename.txt" However, this gives me the following message: "look: /home/patrick/filename.txt: File too large" So, I have two... (14 Replies)
Discussion started by: shishong
14 Replies

6. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

7. Solaris

Issue with "kill -9" command

Hello All, We have korn shell script running in production fine up untill now. The script will basically do grep "informatica" to check and see if any processes are running. If running get the process id's and kill them. we are using "kill -9" command to do this, it looks like today it could not... (5 Replies)
Discussion started by: Ariean
5 Replies

8. Shell Programming and Scripting

Command Character size limit in the "sh" and "bourne" shell

Hi!!.. I would like to know what is maximum character size for a command in the "sh" or "bourne" shell? Thanks in advance.. Roshan. (1 Reply)
Discussion started by: Roshan1286
1 Replies

9. UNIX for Advanced & Expert Users

Command Character size limit in the "sh" and "bourne" shell

Hi!!.. I would like to know what is maximum character size for a command in the "sh" or "bourne" shell? Thanks in advance.. Roshan. (1 Reply)
Discussion started by: Roshan1286
1 Replies

10. UNIX for Dummies Questions & Answers

Command Character size limit in the "sh" and "bourne" shell

Hi!!.. I would like to know what is maximum character size for a command in the "sh" or "bourne" shell? Thanks in advance.. Roshan. (1 Reply)
Discussion started by: Roshan1286
1 Replies
Login or Register to Ask a Question