Creating authentication policy silos
Now that we have created the authentication policy, the next step is to create a new authentication policy silo. My requirement is to create a policy silo to prevent the user account Peter
from accessing REBEL-PC01
.
Policy silos can be created using ADAC or the New-ADAuthenticationPolicySilo
PowerShell cmdlet:
Figure 16.23: Creating new authentication policy silos
In this demo, let's create a new authentication policy silo called Restricted_REBEL_PC01
:
New-ADAuthenticationPolicySilo -Name Restricted_REBEL_PC01 -UserAuthenticationPolicy AP_1hr_TGT -ComputerAuthenticationPolicy AP_1hr_TGT -ServiceAuthenticationPolicy AP_1hr_TGT -Enforce
In the preceding command, -UserAuthenticationPolicy
, -ComputerAuthenticationPolicy
, and -ServiceAuthenticationPolicy
refer to the authentication policies that will be attached to the policy silo. Here, we are only using one policy, but if needed, the policy silo can be attached to multiple...