Add Windows Local Server
To add a local Windows server that is already part of the your Active Directory domain, follow the steps from the Add Windows Local Workstation documentation.
Allow Network Services on Host
Once the agent has been installed and starts up, the server will have full outbound access to the organization’s ACSC network. Additionally, other devices on the organization’s ACSC network will have inbound access to the server (using the server’s ACSC IP address) according to the Windows firewall rules configured on the server for Domain (aka DomainAuthenticated) firewall profile.
To enable inbound access to other network services on the server exclusively through the ACSC network, configure Windows Defender Firewall rules on the server that allow access through the acsc0
network interface on the server.
For example, you could run the following PowerShell command on the server to allow access from the ACSC network to a web server running on TCP port 80 of the server:
PS> New-NetFirewallRule `
-Name custom1 `
-DisplayName "Web Server HTTP-In ACSC" `
-Group "Custom" `
-Enabled True `
-Direction Inbound `
-Action Allow `
-Protocol TCP `
-LocalPort 80 `
-InterfaceAlias acsc0