This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Unblocking sites by category

Hi, we are running Astaro 8.306 and have been having problems for a while now with unblocking sites by category. For example, if I give a specific user an exception under Web Security > Web Filtering > Exceptions and open the job search category, sites will continue to be blocked for being part of the job search category and have to be manually added one by one. Both URL filter and content removal are checked on the exceptions.

This is set up so that all requests "Coming from these source networks" are opened "Matching these URLs" (with the individual URLs listed). We want to completely bypass and unblock the entire job search category, but the user's browser explicitly says that the content is being blocked because it's part of the job search category even when we have 'job search' checked under 'AND Going to these categories of websites.'

Are we just missing something that will get this to work? Any help is appreciated. Thanks.


This thread was automatically locked due to age.
Parents
  • Paul, the lines are supposed to be REGEX (Regular Expressions), and that doesn't use the same notation as DOS file names.  For example:

    http://bar.cabl.com
    http://www.bar.cabl.com
    http://bar.cabl.com


    Should be replaced by:
    ^https?://[A-Za-z0-9.]*cabl\.com

    I added the s? so that it would match with http and https. [A-Za-z0-9.]* matches with any combination of A-Za-z0-9. in any amount.

    None of the following will match with what you want:
    http://*.rothstaffing.com
    http://*.about.com
    http://*.theladders.com
    http://*.salary.com


    and Going to these Categories of websites:

    Entertainment
    Job Search

    I would use just the categories instead of the list of sites, and definitely not both.

    Cheers - Bob
    PS I think your solution would be easier to maintain if you used Proxy Profiles
Reply
  • Paul, the lines are supposed to be REGEX (Regular Expressions), and that doesn't use the same notation as DOS file names.  For example:

    http://bar.cabl.com
    http://www.bar.cabl.com
    http://bar.cabl.com


    Should be replaced by:
    ^https?://[A-Za-z0-9.]*cabl\.com

    I added the s? so that it would match with http and https. [A-Za-z0-9.]* matches with any combination of A-Za-z0-9. in any amount.

    None of the following will match with what you want:
    http://*.rothstaffing.com
    http://*.about.com
    http://*.theladders.com
    http://*.salary.com


    and Going to these Categories of websites:

    Entertainment
    Job Search

    I would use just the categories instead of the list of sites, and definitely not both.

    Cheers - Bob
    PS I think your solution would be easier to maintain if you used Proxy Profiles
Children
No Data