Operating System - Linux
1752286 Members
5172 Online
108786 Solutions
New Discussion юеВ

FTP between RH 7.2 and MPE 6.0

 
dan dobbs
Frequent Advisor

FTP between RH 7.2 and MPE 6.0

Greetings! I'm trying to get a file from my HP/3000 via my Red Hat box. I can ftp to the HP/3000, log in, and change directories, but when I try to 'get' a file I receive this message: "ftp> get SLIFLAT
local: SLIFLAT remote: SLIFLAT

502 PASV command not implemented by this server.

Passive mode refused."

I can ftp between my MPE and HP/Ux boxes without any problem. Ideas?

Thanks!

-dd
Hey, that's not a spoon.
2 REPLIES 2
dan dobbs
Frequent Advisor

Re: FTP between RH 7.2 and MPE 6.0

Sorry, never mind. Looks like all I have to do is type 'passive'. My apologies.

-dd
Hey, that's not a spoon.
Kodjo Agbenu
Honored Contributor

Re: FTP between RH 7.2 and MPE 6.0

Hello Dan,

It seems that you found the answer by yourself.

In fact, with the FTP protocol, 2 connections are opened :

- the first one is used for commands (open, user, cd, pwd...). It goes from the FTP client to the FTP server on port 21.

- The second one is used for data exchange (dir, get, put...). It goes from the FTP server to the FTP client on port 20.

It is not generally a good idea, from the security point of view, to open connection from the FTP server to your client. Imagine what could happen if your FTP client had security flaws...

Therefore, the passive mode is another implementation of the FTP protocol, that makes both command and data connections to be opened from client to server.

Just a remark : generally, firewalls are configured so that ONLY passive mode can be allowed.

Good luck.

Kodjo
Learn and explain...