Lab 0.0: Routing and Windows
Summary
Machine Setup
fw01-paul 10.0.5.2 (Static)
wks01-paul 10.0.5.100 (Static) Gate = 10.0.5.2 DNS = 10.0.5.5
ad01-paul 10.0.5.5 (Static) Gate = 10.0.5.2 DNS = 10.0.5.5
mgmt01-paul 10.0.5.10 (Static) Gate = 10.0.5.2 DNS = 10.0.5.5
Steps
Add LAN Adapter to fw01
Had to cable all the VM's
Configure fw01-paul
Configure wk01-paul
Finish web config fw01-paul
Make sure to uncheck block RFC1918 Private Network
Configure ad01-paul
Use
sconfig
to get to configuration menuType
powershell
Type
Install-WindowsFeature AD-Domain-Services -IncludeManagementTools
to install ADType
Install-ADDSForest -DomainName paul.local
to great the forest for paul.local
Join wk01-paul to domain
Configure mgmt01-paul
Add Roles and Features under
Remote Server Administrations Tools
thenRole Administration Tools
checkDNS Server Tools
,DHCP Server Tools
,File Services Tools
,AD DS and AD LDS Tools
Now add ad01-paul to
All Server list
(DONT FORGET THIS STEP)Create user and user-adm (Add to domain admins)
Create Reverse Look Up Zone and add points for computers
Terms
Domain Controllers - This is a server that controllers the data for the domain. I want to know more about the extent which these can be used.
Server Core - Windows Server operating system. I want to know more about why it's just a cmd window and how I can better understand why way around it.
RFC1918 - This blocks pings from private networks. I want to know more about why we need to not check this and how it has effected our way of networking.
Notes
Get PTR Records in powershell
Get-DnsServerResourceRecord -ComputerName [DNS-Server] -ZoneName [Reverse IP].in-addr.arpa -RRType Ptr
Last updated