ProxySG Content Policy Language Guide
56
authenticated=
True if authentication was requested and the credentials could be verified; otherwise, false.
Syntax
authenticated=(yes|no)
Layer and Transaction Notes
•Use in <Admin> and <Proxy> layers.
Applies to proxy and administrator transactions.
This condition cannot be combined with the authenticate() property.
Examples
; In this example, only users authenticated in any domain are granted access to a
; specific site.
<proxy>
client.address=10.10.10.0/24 authenticate(LDAPRealm)
client.address=10.10.11.0/24 authenticate(NTLMRealm)
client.address=10.10.12.0/24 authenticate(LocalRealm)
;anyone else is unauthenticated
; This rule would restrict unauthorized users. Use this when overriding previously
; granted access.
<proxy> server_url.domain=xyz.com
deny authenticated=no
; This rule would grant access and would be used to override a previous denial.
; It assumes a deny in a previous layer.
<proxy> server_url.domain=xyz.com
allow authenticated=yes
See Also
• Conditions: attribute.name=, group=, has_attribute.name=,
http.transparent_authentication=, realm=, user=, user.domain=
•Properties: authenticate( ), authenticate.force( ), check_authorization(),
socks.authenticate( ), socks.authenticate.force( )