This lab involves setting up a Web Server, configuring DNS for website names, and creating multiple IP-based and Name-based sites.
| VM | Role | IP Address |
|---|---|---|
| Server | IIS, DNS, DC | 10.10.10.10 + Additional IPs |
| Client | Windows 10 | 10.10.10.15 |
- Install Roles: Web Server (IIS) and DNS.
- Bind Additional IPs:
- Add
10.10.10.50through10.10.10.55to the server's network adapter.
- Add
- Create Directories:
C:\Data\pet-rescue.org\wwwC:\Data\creativedesigns.net\wwwC:\Data\xyzsports.co.uk\www
- Create Content: Place a unique
index.htmlin each folder (e.g.,<h1>Welcome to Pet Rescue</h1>).
Create Forward Lookup Zones and A Records:
pet-rescue.org->10.10.10.50creativedesigns.net->10.10.10.52xyzsports.co.uk->10.10.10.54
In IIS Manager, create new websites:
- Name:
PetRescue - Path:
C:\Data\pet-rescue.org\www - Binding: IP
10.10.10.50, Port80
- Name:
CreativeDesigns - Path:
C:\Data\creativedesigns.net\www - Binding: IP
10.10.10.52, Port80
- Name:
XYZSports - Path:
C:\Data\xyzsports.co.uk\www - Binding: IP
10.10.10.54, Port80, Host Namewww.xyzsports.co.uk
From the Client VM:
- Open a browser.
- Navigate to the URLs (e.g.,
http://www.pet-rescue.org). - Verify the correct custom HTML page loads for each site.