Admin-Ahead Community

Windows => General Windows => Topic started by: Chetan Singh on March 10, 2014, 10:46:08 am

Title: Access FTP which is running on custom port!
Post by: Chetan Singh on March 10, 2014, 10:46:08 am
Hello,

In windows Server we can we can not connect to the FTP with custom port normally (Like that Linux Server).  This article will show you how to access FTP service which is running on "2222" port.

Code: [Select]
C:\>ftp
ftp> open 10.10.10.10 2222
Connected to 10.10.10.10.
220 Microsoft FTP Service
User (168.144.130.84:(none)): chetan
331 Password required
Password:
230 User logged in.
ftp> ls
200 PORT command successful.
125 Data connection already open; Transfer starting.
aspnet_client
bkg-gry.jpg
Designer
desktop.ini
iis-8.png
iisstart.htm
msweb-brand.png
ws8-brand.png
226 Transfer complete.
ftp: 111 bytes received in 0.02Seconds 6.94Kbytes/sec.
ftp>

Thank you,