How to FTP command to port 990

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ddtpmyra
    Contributor
    • Jun 2008
    • 333

    How to FTP command to port 990

    I have this problem when I use the FileZilla and using port 990 ftp application all is good I can connect and can see the files. But now I'm try to create a batch file using dos command on my txt file is not successful.

    Here's how i do it.
    Code:
    c:> ftp connect.abc.com
    Connected to connect.abc.om
    login: login123
    331 Password required for login123
    password: 123
    Login password incorrect!
    Login failed.
    ftp>_
    How can I tell my command to use port 990? or other way to do this.
  • jonathan184
    New Member
    • Nov 2006
    • 154

    #2
    try this
    ftp connect.abc.com :990

    Comment

    • NeoPa
      Recognized Expert Moderator MVP
      • Oct 2006
      • 32653

      #3
      Not sure where the official help is for FTP.EXE (FTP /? doesn't work unfortunately), but List of FTP commands for the Microsoft command-line FTP client should give you everything you need in that respect.

      From the details of the Open command it seems entering the port# after the IP or name of the server might work. Otherwise, syntax for specifying a server is often seen where a specific port may be applied after a colon (:) as Jonathan suggested.

      Good luck :-)

      Comment

      • NeoPa
        Recognized Expert Moderator MVP
        • Oct 2006
        • 32653

        #4
        It seems that /? will work with FTP.EXE as long as a (dummy) host is also supplied. Not very intuitive I grant you, but worse is that the help doesn't explain how to override the port anywhere, so it's down to trial and error I'm afriad :-(
        Code:
        FTP.EXE DUMMY /?

        Comment

        Working...