Hello,
I'm trying to access the F:\inetpub\wwwroot_pub folder via FTP on a VM with Windows Server 2019 Datacenter. I can FTP into the server but the web folders inside the wwwroot_pub folder are not listed. Instead, the directory is empty. I'm using an Administrator account to FTP into the server. I'm using FileZilla as my FTP client.
Here's the connection log:
Status: Connecting to X.X.X.X:21...
Status: Connection established, waiting for welcome message...
Status: Insecure server, it does not support FTP over TLS.
Status: Logged in
Status: Retrieving directory listing of "/"...
Command: CWD /
Response: 250 CWD command successful.
Command: PWD
Response: 257 "/" is current directory.
Command: TYPE I
Response: 200 Type set to I.
Command: PASV
Response: 227 Entering Passive Mode (X,X,X,X,217,190).
Command: LIST
Response: 150 Opening BINARY mode data connection.
Error: Connection timed out after 20 seconds of inactivity
Error: Failed to retrieve directory listing
Status: Disconnected from server
Status: Connecting to X.X.X.X:21...
Status: Connection established, waiting for welcome message...
Status: Insecure server, it does not support FTP over TLS.
Status: Logged in
Status: Retrieving directory listing of "/"...
Command: CWD /
Response: 250 CWD command successful.
Command: TYPE I
Response: 200 Type set to I.
Command: PASV
Response: 227 Entering Passive Mode (X,X,X,X,217,194).
Command: LIST
Response: 150 Opening BINARY mode data connection.
Error: Connection timed out after 20 seconds of inactivity
Error: Failed to retrieve directory listing
I followed the instructions at configure-ftp-server-on-azure-virtual-machine
Can anyone explain what additional steps are needed to view the files in the directory.
Thank you.