0

It appears that I'm getting FTP connection attempts from unknown sources. The SYN_RECEIVED state is nearly always showing.

netstat output

        C:\Users\Administrator>netstat -aon | findstr "1596"
  TCP    0.0.0.0:21             0.0.0.0:0              LISTENING       1596
  TCP    198.XXX.XX.XX:21       121.254.204.3:21       SYN_RECEIVED    1596
  TCP    [::]:21                [::]:0                 LISTENING       1596

I have added my remote ip-address on "IIS - FTP IP Address and Domain Restrictions", is that enough? Anything more I can do like an incoming rule on the Firewall?

Thanks.

bezbiker
  • 3
  • 1

1 Answers1

0

Short answer: you don't.

If you know the origin IP addresses of a reasonable number of valid clients you can allow those addresses specifically in your firewall and block everything else.

(If the data transferred is valuable, make sure you use FTP over TLS (FTPS), or switch to SFTP. The latter also comes with the ability to use key based authentication which may be more secure than human-generated username/password combinations. Note that SFTP is a completely separate protocol from FTP and FTPS).

Mikael H
  • 4,868
  • 2
  • 8
  • 15
  • Thank you Mikael. I have white-listed my remote ip-addresses on the firewall for port 21 and it is working. – bezbiker Feb 07 '21 at 03:23