Feat Req. - White List for IP Addresses / Domain

Post here if you have some suggestions or you want to request a new feature.
Post Reply
ZDAS777
Posts: 1
Joined: Fri Aug 24, 2012 12:00 am

Feat Req. - White List for IP Addresses / Domain

Post by ZDAS777 »

We would like to have a white list feature for certain IP addresses when logging into the server. We currently have ANTI Hammer set. This is nice, except we have long bans set when this does happen. It would be nice to exclude or unban "OUR" external IP address when it is accessed through the DNS.

As an example, opening FTP with Internet Explorer will automatically try to login anonymous multiple times. When someone does this, it creates a ban on our external IP because it ties into our firewall through the DNS. This does have its advantages. However, it would be very nice to reopen specific IPs if this happens.

If there is a LUA script I can create for the scheduler, that would be great also. Thanks for the assist.
FTP
Site Admin
Posts: 2072
Joined: Tue Sep 29, 2009 6:09 am

Re: Feat Req. - White List for IP Addresses / Domain

Post by FTP »

Just add the following lua script into "Event Manager -> FTP Events -> OnExceedUSERPASS -> Lua Script":

Code: Select all

if "%IP" == "192.168.0.106" then
    c_DelTempBlockIp("%Domain", "%IP")
end
Post Reply