Create three virtual machines

Assignment Help Computer Networking
Reference no: EM132844204

WSS3 Project

Your company has received a new contract to plan and configure their new office structure, and you have been tasked to setup a Sandbox environment with servers and a workstation to begin testing Proof of Design network infrastructure. You will be creating Several virtual machines to run in the Sandbox.

Part 1: IP Structure

You will be subnetting 10.0.0.0/24 for the Sandbox network.

The first usable IP address of the "Servers and Workstations" subnet will be used as the gateway IP address for the Servers and Workstations

You will need to subnet your network with the following information, please create a VLSM structure for your Sandbox:

Infrastructure: 9
Servers and Workstations: 120
Printers: 15
Wireless Aps: 32

Enter your VLSM in the table below:

Name

Network Address

CIDR

Subnet Mask

Usable Range

Broadcast Address

Wildcard Mask

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Question 1 If the population of the network doubles, what will the Network ID and CIDR be?

Part 2: Virtualization

1. Create a switch labelled WSS3-Proj-YOURFIRSTNAME-SW, on the Windows 10 Host machine (Please be sure to change "YOURFIRSTNAME" to your first name

2. Run the PowerShell cmdlets

function global:prompt {[Environment]::MachineName+" "+[Environment]::UserName+" PS> "}

then
Get-VMSwitch -Name "WSS3Project*"

3. Take a screenshot and paste it here:

<Provide a screenshot here>

4. Create 3 virtual machines connected to the WSS3-Proj-YOURFIRSTNAME-SW switch with 2048 MB RAM on each, and labelled as follows, replacing "YOURFIRSTNAME" with your first name:

WSS3 Project DC1.YOURFIRSTNAME.com
WSS3 Project SVR1.YOURFIRSTNAME.com
WSS3 Project WS1.YOURFIRSTNAME.com

5. On your Windows 10 workstation, run the PowerShell cmdlets

function global:prompt {[Environment]::MachineName+" "+[Environment]::UserName+" PS> "}

then

Get-VM -Name "*Project*"

6. Take a screenshot and paste it here:

<Provide a screenshot here>

Question 2 What full Powershell command will create the virtual switch in this section?

Question 3 When should you use the .vhdx format instead of .vhd format?

Part 3: Installation and Configuration

1. Install the operating systems with the following common configurations:
Subnet Mask: of the Servers and Workstations Subnet
DNS: Second IP of the Servers and Workstations subnet
Gateway: First IP of the Servers and Workstations subnet
Enable: Remote desktop without network level authentication
Change: the time zone and time settings so the time is correct
Local Administrator account: "LocalYOURFIRSTNAME" replace "YOURFIRSTNAME" with your first name *** Make sure it has the same privileges as the Default Administrator Account, and so the password never expires

2. Setup the VIRTUAL MACHINE: WSS3 Project DC1.YOURFIRSTNAME.com with the following information:
OPERATING SYSTEM: Server 2016 Datacenter with GUI
IP: Second IP of the Servers and Workstations subnet
Change: The hostname of the server to DC1
As a security measure log into the Local Administrator account you created in step 1

a. In Server Manager take a screenshot of the properties area of the local server and paste it here:

<Provide a screenshot here>

b. Open an administrative PowerShell prompt and type the following PowerShell cmdlets:

function global:prompt {[Environment]::MachineName+" "+[Environment]::UserName+" PS> "}

Then

Get-NetIPConfiguration

Then

Get-NetIPAddress | Format-Table
Take a screenshot and paste the output here:

<Paste Output Here>

3. Setup the VIRTUAL MACHINE: WSS3 Project SVR1.YOURFIRSTNAME.com with the following information:
OPERATING SYSTEM: Server 2016 Datacenter with GUI
IP: Third IP of the Servers and Workstations subnet
Change: The hostname of the server to SVR1
As a security measure log into the Local Administrator account you created in step 1

a. In Server Manager take a screenshot of the properties area of the local server and paste it here:

<Provide a screenshot here>

b.Open an administrative PowerShell prompt and type the following PowerShell cmdlets:

function global:prompt {[Environment]::MachineName+" "+[Environment]::UserName+" PS> "}

then

Get-NetIPConfiguration

then

Get-NetIPAddress | Format-Table

Take a screenshot and paste the output here:

<Paste Output Here>

4. Setup the VIRTUAL MACHINE: WSS3 Project WS1.YOURFIRSTNAME.com with the following information:
OPERATING SYSTEM: Windows 10 Pro
IP: Fourth IP of the Servers and Workstations subnet
Change: The hostname of the server to WS1
As a security measure log into the Local Administrator account you created in step 1

a. In System Properties take a screenshot showing that Remote desktop is enabled, and paste it here:
<Provide a screenshot here>
b. Open an administrative PowerShell prompt and type the following PowerShell cmdlets:

function global:prompt {[Environment]::MachineName+" "+[Environment]::UserName+" PS> "}

Then
Hostname
Then
Get-timezone

Then
Get-NetIPConfiguration
Then

Get-NetIPAddress | Format-Table

Take a screenshot of all three commands and paste the output here:

<Paste Output Here>

Question 4 A user returning from holidays has attempted to login 6 times, the account is locked out. Which powershell command will you need to execute to allow the user to log into the domain again?

Question 5 What Powershell cmdlet would you use to start an interactive session with a remote computer by the name of WS1?

Part 4: DNS

1. Install the DNS role on DC1
2. Create the Domain called YOURFIRSTNAME.com replacing "YOURFIRSTNAME" with your first name
3. Make sure that you allow both secure and nonsecure dynamic updates
4. Enable Reverse lookup zone for your domain
5. Make sure that you allow both secure and nonsecure dynamic updates
6. Create zone records:
An A record for DNS1 pointing to the IP if DC1
An A record for RTR1 which points to the first IP address of the Servers and Workstations subnet
7. Open an administrative PowerShell prompt
a. Type the following Powershell cmdlets:
function global:prompt {[Environment]::MachineName+" "+[Environment]::UserName+" PS> "}

Then
Get-DnsServerResourceRecord -ZoneName YOURFIRSTNAME.com
Then
Get-DnsServerResourceRecord -ComputerName DC1 -ZoneName "0.0.10.in-addr.arpa"
Take a screenshot and paste the output here:

Question 6 List 2 record types that are found on an AD DS integrated DNS that you wouldn't find on a public DNS server

Part 5: AD DS

1. Install the AD DS role on DC1
a. Log into the DC1 as the local administrator account
b. Promote to be a domain controller
c. Create a Domain in a new forest called YOURFIRSTNAME.com replacing "YOURFIRSTNAME" with your first name using integrated DNS
d. Use the Administrator account for Delegation
e. Login as YOURFIRSTNAME\Administrator (replacing "YOURFIRSTNAME" with your first name)
f. Open an administrative PowerShell prompt, and type the following Powershell cmdlets:
function global:prompt {[Environment]::MachineName+" "+[Environment]::UserName+" PS> "}

Then
Get-WindowsFeature | Where-Object {$_. name -eq "DNS"} | Format-List Name,Installstate
Then
Get-WindowsFeature | Where-Object {$_. name -eq "AD-Domain-Services"} | Format-List Name,Installstate
Take a screenshot and paste the output here:
<Paste Output Here>

2. Create an OU called IT
a. Create your own Administrative account in the IT OU called YOURFIRSTNAME-IT replacing "YOURFIRSTNAME" with your first name, with the same memberships as the administrator account
b. Log into the domain controller with your YOURFIRSTNAME-IT account you created
c. You must only use this account for the remainder of the project
d. Create the OUs in the root of the domain: Administration, Shipping, Finance, and Sales
e. Open an administrative PowerShell prompt, and type the following Powershell cmdlets:

function global:prompt {[Environment]::MachineName+" "+[Environment]::UserName+" PS> "}

Then
Get-ADOrganizationalUnit -Filter 'Name -like "*"' | Format-Table Name, DistinguishedName
f. Take a screenshot and paste the output here:
<Paste Output Here>

3. Create a Global Security group for each OU
a. Use the name of the OU and add "Group" to the end of the group name (IT Group")
b. Open an administrative PowerShell prompt, and type the following Powershell cmdlets:
function global:prompt {[Environment]::MachineName+" "+[Environment]::UserName+" PS> "}

Then
Get-ADGroup -Filter 'Name -like "*Group"' | Format-Table Name, Distinguishedname
c. Take a screenshot and paste the output here:
<Paste Output Here>

4. Create a template account for each of the OU's you have created starting with the unique characters: --
a. Each must be labelled -OU NAME-Template (Replace OU NAME with the name of the OU)
b. Each must be added as a member of the OU's group
c.The template accounts must be disabled
d.Open an administrative PowerShell prompt, and type the following Powershell cmdlets:
function global:prompt {[Environment]::MachineName+" "+[Environment]::UserName+" PS> "}

Then
Get-ADUser -Filter 'Name -like "--*"' | Format-Table Name, Distinguishedname,Enabled

e.Take a screenshot and paste the output here:
<Paste Output Here>

Question 7 When is a user's access token created?

Question 8 What is the interface within Active Directory Administrative Center that simplifies the delegation of permissions for domains, OUs, or containers?

Question 9 Which term is described as the process of configuring one or more groups as members of another group?

Part 6: Join Computers to the domain
1. Create an OU called Servers, and one called Workstations
2. Join SVR1 and WS1 to the Domain
3. Move SVR1 to the Servers OU
4. Move WS1 to the Workstations OU
5. Log into DC1 with your YOURFIRSTNAME-IT account you created
6. Open an administrative PowerShell prompt, and type the following Powershell cmdlets:
function global:prompt {[Environment]::MachineName+" "+[Environment]::UserName+" PS> "}

Then
get-adcomputer -filter 'Name -like "*"' | FT DNSHostName,Enabled,DistinguishedName,SID
Take a screenshot and paste the output here:
<Paste Output Here>

Question 10 What is the syntax command-line utility for joining a domain using Netdom.exe?

Question 11 List an example of two graphical tool in Windows Server 2016 that can create user objects.

Part 7: Group Policy
1. Create a Group Policy Object called "Workstations":
Folder Redirection
Redirect all users' Documents folder to their own folder on a hidden share called Staff on SVR1's C:\ drive
2. Modify the Default Domain Policy with the following settings:
Password Policy:
Enforce Password History: 12 passwords remembered
Max Password Age: 32 Days
Minimum Password Age: 10 Days
Minimum Password Length: 10 Characters
Complexity requirements: Enabled
Account Lockout policy
Threshold: 5 Attempts
User will be locked out until manually reset
3. Log into WS1 as your YOURFIRSTNAME-IT account you created
4. Take a screenshot of:
The Default Domain Policy GPO displaying the Password Policy, and Account Lockout Policy
The Workstations GPO displaying the Folder Redirection Policy
<Paste Output Here>

Question 12 The Group Policy templates (GPT) folder structure is located in the shared ________ folder on a domain controller.

Question 13 What is the setting on an individual GPO link that forces the GPO's settings to flow down through the AD DS hierarchy, without being blocked by child OUs?

Question 14 Describe Group Policy Preferences (GPPs).

Part 8: AD CS
Install the AD CS Certification Authority Role on SVR1
Key Length 4096
SHA256 Hash Algorithm
Leave the default for the Common Name for this CA
Open an administrative PowerShell prompt, and type the following Powershell cmdlets:
function global:prompt {[Environment]::MachineName+" "+[Environment]::UserName+" PS> "}

Then
Get-CACrlDistributionPoint
Take a screenshot and paste the output here:
<Paste Output Here>

Question 15 A __________ is an electronic document that contains an identity, such as a user or organization name, along with a corresponding public key.

Question 16 Which PKI-related service is used for network devices such as switches and routers to enroll for an X.509 digital certificate from a CA?

Part 9: IPv6 Subnetting

The Sandbox network will also require the use of IPv6 for future use when the company transitions to it. Using the standard IPv6 addressing and its built in subnets, create a subnetting scheme for future use with the Sandbox. Use ULA addresses for this IP architecture.

Attachment:- WSS3 Project.rar

Reference no: EM132844204

Questions Cloud

Project Scheduling : "Market pressures, competition among rivals become brutal in the contemporary time.
Analyze factors that contribute to your participation : Analyze factors that contribute to your participation in a health-promoting activity and place each factor under the appropriate label from the health promotion
Employment harassment and discrimination : Describe/define the principle federal laws associated with harassment and discrimination.
What is the amount of gain or loss should company recognize : Saint Company, What is the amount of gain or loss should the company recognize in its 2015 profit or loss as a result of the redesignation?
Create three virtual machines : Create 3 virtual machines connected to the WSS3-Proj-YOURFIRSTNAME-SW switch with 2048 MB RAM on each, and labelled as follows, replacing "YOURFIRSTNAME"
Compute amount of overhead applied in forming department : Variable manufacturing overhead per machine-hour $2.30. Compute the amount of overhead applied in the Forming Department to Job A460
How is business strategy developed : Describe the general framework for planning, why is it important? How is a business strategy developed?
What amount should debt investment be reported for saint co : On January 2, 2013 Saint Company invested in a 4-year, What amount should debt investment be reported in the December 31, 2014 statement of financial position?
What is the nature of the universe : In 250-300 words, explain the Christian perspective of the nature of spirituality and ethics in contrast to the perspective of postmodern relativism within.

Reviews

Write a Review

Computer Networking Questions & Answers

  Networking and types of networking

This assignment explains the networking features, different kinds of networks and also how they are arranged.

  National and Global economic environment and ICICI Bank

While working in an economy, it has a separate identity but cannot operate insolently.

  Ssh or openssh server services

Write about SSH or OpenSSH server services discussion questions

  Network simulation

Network simulation on Hierarchical Network Rerouting against wormhole attacks

  Small internet works

Prepare a network simulation

  Solidify the concepts of client/server computing

One-way to solidify the concepts of client/server computing and interprocess communication is to develop the requirements for a computer game which plays "Rock, Paper, Scissors" using these techniques.

  Identify the various costs associated with the deployment

Identify the various costs associated with the deployment, operation and maintenance of a mobile-access system. Identify the benefits to the various categories of user, arising from the addition of a mobile-access facility.

  Describe how the modern view of customer service

Describe how the greater reach of telecommunication networks today affects the security of resources which an organisation provides for its employees and customers.

  Technology in improving the relationship building process

Discuss the role of Technology in improving the relationship building process Do you think that the setting of a PR department may be helpful for the ISP provider? Why?

  Remote access networks and vpns

safekeeping posture of enterprise (venture) wired and wireless LANs (WLANs), steps listed in OWASP, Securing User Services, IPV4 ip address, IPV6 address format, V4 address, VPN, Deploying Voice over IP, Remote Management of Applications and Ser..

  Dns

problems of IPV, DNS server software, TCP SYN attack, Ping of Death, Land attack, Teardrop attack, Smurf attack, Fraggle attack

  Outline the difference between an intranet and an extranet

Outline the difference between an intranet and an extranet A programmer is trying to produce an applet with the display shown in Figure 1 below such that whenever one of the checkboxes is selected the label changes to indicate correctly what has..

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd