Forum Discussion

Pickles's avatar
Pickles
Copper Contributor
Jul 06, 2022
Solved

How do i get two volumes to be accessible remotly via FTP on one IP?

Hi all,   New here, so really grateful for the help. I'm quite new to Windows server so go easy on me. I'm trying to make two of my storage pools acessable remotely. My first on via my private adre...
  • JonathanKay's avatar
    JonathanKay
    Jul 07, 2022

    Pickles 

    Before getting into more, I neglected to mention that if you haven't already found them, there are log files for the IIS FTP Server.  The default location is \inetpub\logs\logfiles and the folder names begin with FTPSVC.  You can find the exact location by going to the FTP site in the IIS Manager, going to FTP Logging, and pressing the View Logs... link from the right-side Action menu. Given what you've said so far, I expect the USER and PASS commands are what you're most interested in checking.  As you debug more, this may provide some hints as to if it's actually connecting or sending the right username, etc.

     

    The format you're using for the FTP port should be fine (ie. ftp://192.168.0.1:21).  However, your syntax for the virtual names feature is incorrect, the virtual name is part of the username with a pipe character.  For example, if I have two FTP sites, one is named blue and the other is named pink, both on port 21, 192.168.0.1, and my username is jon, to access the blue site I would type into Explorer:

    ftp://blue|jon@192.168.0.1

    You should get a prompt for a password and then be allowed to login.  To access the pink site:

    ftp://pink|jon@192.168.0.1

    and so on.

     

    If your password is not accepted, I would verify that the site(s) that don't work have Basic Authentication enabled in the FTP Authentication section of each in IIS Manager.

     

    If you're still having problems, I would recommend you continue testing by using localhost instead of the IP (ie. ftp://pink|jon@localhost) from the server itself (if you weren't already), as you may be trying to solve multiple problems at once, and one problem at a time is usually recommended.

     

    As a side note unrelated to the problem, just in case you're not aware, on any client (or the server if you really wanted), if you go into This PC/My PC/My Computer (whatever it's called on whatever version of Windows you're using), right-click in an empty area, choose "Add a network location", and add the FTP link that you're typing into Explorer into the wizard, it will generate a shortcut that will appear alongside your drives in Explorer and any common file dialogs.  Then it's easily accessible via an icon in any application.

     

     

     

     

Resources