Skip to main content

Active Directory lab setup

 

Active Directory Lab Setup

This Active Directory lab is setuped in QEMU virt Manager For Red Team Project

goad.local



Setting up domain controller

Initial Configuration (sconfig)

Change computer name to DC01

Set Static IP -

IP: 192.168.100.10 

Subnet: 255.255.255.0 

Gateway: 192.168.100.1 

DNS: 127.0.0.1

 

Installing AD DS Role

In PowerShell

Install-WindowsFeature AD-Domain-Services -IncludeManagementTools

Promote to Domain Controller

Install-ADDSForest `
-DomainName "goad.local" `
-DomainNetbiosName "GOAD" `
-InstallDNS

Creating Basic Lab Users

New-ADUser -Name "labuser" -SamAccountName labuser ` -AccountPassword (ConvertTo-SecureString "Password123!" -AsPlainText -Force) ` -Enabled $true  

Comments