Page 1 of 1

Feat Req. - White List for IP Addresses / Domain

Posted: Fri Aug 24, 2012 12:11 am
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.

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

Posted: Fri Aug 24, 2012 12:20 pm
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