Hi everyone, I've some cases, but I'll post each one separetelly.
I opened traffic to load images from arduino.cc site. Arduino use flickr service to show its images inside the portal.
First I tried with * .flickr.com and *.staticflickr.com, something similar worked well with other sites, but unfortunately this time it did not work. After a few hours I resolved it with regular expressions:
(^ |. * \.) * staticflickr \ .com
(^ |. * \.) * flickr \ .com
Now I try to open traffic to www.manageengine.com, but no custom application works properly:
* .manageengine.com
manageengine.com
(^ |. * \.) * manageengine \ .com (this as a regular expression in another app)
The browser sends an error ERR_CONNECTION_RESET.
In wireshark I can see that the manageengine.com server resets the connection.
If I open all internet traffic to single local ip address, www.manageengine.com load without problem in that host.
What am I doing wrong? Why in some cases did it work for me and not in this one?