FTP thru Unix doesn't auth usrname & pswd, but Windows app does - why?!


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers FTP thru Unix doesn't auth usrname & pswd, but Windows app does - why?!
# 1  
Old 07-23-2009
FTP thru Unix doesn't auth usrname & pswd, but Windows app does - why?!

Strange one this...

One of our contacts switched FTP servers, a different IP and now using port 2121 instead of 21.

Changed the details in a Windows application using the username & password provided and it works no problem.

Tried to FTP through Unix and although I can connect to the FTP server, when I then enter the username & password to gain the access I require it tells me the same username & password are incorrect?!

Any ideas why?

---------- Post updated at 02:56 PM ---------- Previous update was at 01:58 PM ----------

Further to this, I have discovered in Unix that you can append to the 'open' command the specific port number - e.g. open 246.57.64.33 [2121]

Again, although the windows app can connect correctly Unix doesn't recognise that port to open?!
# 2  
Old 07-23-2009
You don't state which operating systems are involved.
The usual unix syntax is:

Code:
ftp 246.57.64.33 2121

or

open 246.57.64.33 2121

# 3  
Old 07-23-2009
Apologies - but that worked - so simple!?!

Thanks for your help
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

FTP from windows to unix server using unix shell script

Hi, Is it possible to ftp a huge zip file from windows to unix server using unix shell scripting? If so what command i need to use. thanks in advance. (1 Reply)
Discussion started by: Shri123
1 Replies

2. Shell Programming and Scripting

UNIX script to FTP file from UNIX server to windows

Hi, I am new to this subject.....Can someone please help me out with the script... unix usernm "sdhftst" unix pwd "chsd13" windows usernm "dfghtst" windows pwd "chsd13" path..../xxx/xxxxx/xxxxxx/xxxxxxx please can u get me a script...its only one file to get ftp. Thanks... (2 Replies)
Discussion started by: himakiran9
2 Replies

3. AIX

Do I need to configure my local windows to FTP files from local windows to a UNIX AIX server?

Hi Friends, I have this script for ftping files from AIX server to local windows xp. #!/bin/sh HOST='localsystem.net' USER='myid_onlocal' PASSWD='mypwd_onlocal' FILE='file.txt' ##This is a file on server(AIX) ftp -n $HOST <<END_SCRIPT quote USER $USER quote PASS $PASSWD put $FILE... (1 Reply)
Discussion started by: rajsharma
1 Replies

4. Shell Programming and Scripting

ftp from windows to unix using a perl script on unix machine

i need to ftp a file from windows to a unix machine by executing a sript(perl/shell/php) from that unix machine.i can also use HTML and javascript to build forms. (3 Replies)
Discussion started by: raksha.s
3 Replies

5. Shell Programming and Scripting

ftp from unix to windows

How to do ftp from unix to windows i have some files in a dir in unix box and i want to put those files in windows through FTP. How to do this ? (9 Replies)
Discussion started by: ali560045
9 Replies

6. UNIX for Dummies Questions & Answers

simple app to communicate windows and linux/unix

Careful!!! This is a newbie question! Hello Community I'd like to develop a very simple application, on the one side (some windows pcs with a listener and sender) on the other side a linux server that does the same. Any suggestions about doing that? telnet, smbclient????? It must be... (3 Replies)
Discussion started by: ncatdesigner
3 Replies

7. UNIX for Advanced & Expert Users

FTP Between UNIX & Windows drops leading blanks

I am using ftp on Solaris to transfer files to Windows 2000 that have leading blanks in the name (ex. " 12345A4444.BIN"). When they get to Windows the leading blanks are stripped off. Has anyone encountered this and is there a fix? If I use Hummingbird it is ok but that is not an option for... (6 Replies)
Discussion started by: worf52
6 Replies

8. IP Networking

UNIX OS & Windows XP

Hello, Can someone please tell me if it is possible to install a Unix Os on a system that already has a Windows XP? If so, how do i go about it doing it?: (6 Replies)
Discussion started by: Ike
6 Replies
Login or Register to Ask a Question