Join us this Friday for AI in Action at the Virtual Happy Hour! This free virtual event is open to all—enroll now on Academy and don’t miss out.
Join us this Friday for AI in Action at the Virtual Happy Hour! This free virtual event is open to all—enroll now on Academy and don’t miss out.
All of your examples look like they should work, we will look into this and get back to you...
Thanks! Some more information that might be of interest:
I have tried the configurations with readonly="false" too, but no difference.
The 10.1.74.1 IP address that shows up isn't actually the client address, I guess it's visible to the server as this address because of some router/DMZ or VM configuration. But the client's address (as reported by the client) is in the 172.17 range also included.
Update: We have now changed the firewall config to use the client's real IP. That didn't make any difference. I currently have this config:
<add name="dev" description="dev" ipAddress="172.17.0.0/16" allowLocal="true" />
And I get these kinds of messages in the log:
2011-01-18 11:00:17,063 [15] ERROR - No match for client IP 172.17.18.89. Access denied for access key dev.
There is a hotfix in the works for the search service which will include a fix for the issue causing this as well as the issue causing the escaping issue causing http://world.episerver.com/Templates/Forum/Pages/Thread.aspx?id=46912&epslanguage=en
Yes there is a hotfix available, but you must request it from the EPiServer support.
I think it should also be included in the R2 versions of CMS and Relate?
One way of getting around this can be to create a name in the hosts file (C:\windows\system32\drivers\etc\hosts )
10.1.1.50 Site1
and then put the site1 name in the hostheader/bindings of the site in the IIS.
For sites with an internal ip and external ip address we got this errormessage; No match for client IP xx.xxx.xx.xx. Access denied for access key local. Solution for Patrik worked. EPiServer version 8.1.
I'm setting up Full Text Search on a different machine. In the section <episerver.search.indexingservice><clients> i have tried to configure the remote machines ranges, but all of the below render the same error message in the log:
2011-01-14 08:44:08,985 [10] ERROR - No match for client IP 10.1.74.1. Access denied for access key dev.
These are the client configs i have tried (there are two subnets needed, but the test machine as you can see accesses the server through 10.1.74.1):
<add name="dev" description="dev" ipAddress="172.17.0.0/16,10.1.74.0/24" allowLocal="true" />
<add name="dev" description="dev" ipAddress="172.17.0.0/16,10.1.0.0/16" allowLocal="true" />
<add name="dev" description="dev" ipAddress="172.17.0.0/8,10.1.0.0/8" allowLocal="true" />
<add name="dev" description="dev" ipAddress="10.1.74.1/8" allowLocal="true" />
So it seems no matter how large I make those ranges, or even if I add just the range used, it still doesn't work. And once again the classes I need to test this at a lower leve are internal so I can't see where it goes wrong.