Yes, that is correct. "Ignore" means nothing has to be deleted from the Zone File to import into CF.
I have noted that some IPs still get through CF. I have seen some similar posts on other boards.
(1)
the request goes to
http[s]://MyIPaddress/...
instead of to
http[s]://MyDomainName/...
(2)
the request goes with a
"GET http"
(not "GET / HTTP")
I do not see anyway of addressing these concerns in any tabs in my CF Dashboard.
To address (1), I have put into my .httaccess
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^MyIPAaddress
RewriteRule ^(.*)$
http://MyDomainName/$1 [L,R=301]
To address (2), I have added a filter to my fail2ban jail.local
[Definition]
failregex = ^<HOST> .*GET http
ignoreregex =
There still are some leaks/strays into my access.log and ssl_access.log.
Thanks.