Visit this link to setup and install Windows server in proxmox: https://www.youtube.com/watch?v=bEoGu50G09E
This guide covers:
- 🏢 Active Directory Domain Services (AD DS)
- 🌐 DNS Server (Forward & Reverse Lookup Zones)
- ⏱️ NTP Server Configuration
Go to:
Control Panel > Network and Sharing Center > Change adapter settings
- Right-click Ethernet → Properties → IPv4
Configure:
- IP Address →
10.100.30.2 - Subnet Mask →
255.255.255.0 - Gateway →
10.100.30.1 - Preferred DNS →
10.100.30.2(itself)
Click OK
Go to:
Server Manager > Manage > Add Roles and Features
- Select: Role-based or feature-based installation
- Select your server
- ✅ Check:
- Active Directory Domain Services
- DNS Server (auto-selected)
Click Next → Install
After installation:
Click
- Select: Add a new forest
- Root domain name:
local.lab
Click Next
- Forest Functional Level: Windows Server 2016+
- Domain Functional Level: Windows Server 2016+
- ✅ DNS Server
- Set DSRM Password
Click Next → Install
🔁 Server will reboot automatically
Go to:
Server Manager > Tools > Active Directory Users and Computers
Right-click your domain → New > Organizational Unit
Create the following:
- 💰 Finance
- 💼 Sales
- 🧑💼 HR
💡 This helps organize users and apply Group Policy later.
Right-click Sales OU → New > User
- 👤 Username:
Sale1 - 🔑 Password:
UMbrceT7
Right-click HR OU → New > User
- 👤 Username:
Hr1 - 🔑 Password:
zGW4twKh
Right-click Finance OU → New > User
- 👤 Username:
Fin1 - 🔑 Password:
pu7D7zDz
For each user:
- ✅ User must change password at next logon: ❌ Disabled
- 🔒 Password never expires: ✅ Enabled (lab only)
- 🚫 Account is disabled: ❌ Disabled
Click Finish
Go to:
Server Manager > Tools > DNS
- Expand server → Forward Lookup Zones
- You should see:
- ✅
local.lab(auto-created)
- ✅
- Right-click → New Zone
Configure:
- Zone Type: Primary
- Zone Name:
local.lab(optional)
- Right-click → Reverse Lookup Zones > New Zone
- Zone Type: Primary
- IPv4 Reverse Lookup Zone
- Network ID:
10.100.10
Click Finish
- Right-click → New Pointer (PTR)
Fill:
- Host IP:
2 - Hostname:
ise.local.lab
Click OK
Open Command Prompt (Admin):
w32tm /config /manualpeerlist:"time.windows.com,0x8" /syncfromflags:manual /reliable:yes /update
net stop w32time
net start w32timenetsh advfirewall firewall add rule name="NTP" dir=in action=allow protocol=UDP localport=123w32tm /query /status
w32tm /query /configuration- 🧠 DNS is critical for AD — must point to itself
- ⏱️ NTP ensures Kerberos authentication works properly
- 🔐 AD integrates with Cisco ISE for enterprise authentication
This setup includes:
- 🏢 Active Directory Domain Controller
- 🌐 DNS Server with forward & reverse lookup
- ⏱️ NTP Server for time synchronization
- 👥 Centralized user authentication





