When enabled, the ProxySG appliance forwards Authorization and Proxy-Authorization headers upstream to the OCS. This command can be used in explicit and transparent proxy deployments. The default setting for this command is disable.
Here is CPL code you can use if you want to forward authentication credentials explicitly to some web sites
<Proxy>
condition=forward_credentials authenticate.forward_credentials(yes)
define condition forward_credentials
url.domain=<domain name>
end
In case you want to limit to specific user groups from Active directory
<Proxy>
condition=__GROUP137 condition=forward_credentials authenticate.forward_credentials(yes)
define condition forward_credentials
url.domain=<domain name>
end
define condition __GROUP137
realm=Realm_name group=<Group_name>
end