Build Internet Infrastructure LO2
Build Internet Infrastructure LO2
Ethiopian TVET-System
INFORMATION TECHNOLOGY
HARDWARE AND NETWORK SERVICE
LEVEL IV
LEARNING GUIDE # 1O
Unit of Competence : Build Internet Infrastructure
Module Title : Building Internet Infrastructure
LG Code : ICT HNS4 M03 1110
INTRODUCTIO
Learning Guide #10
N
This learning guide is developed to provide you the necessary information regarding the following content coverage
and topics –
This guide will also assist you to attain the learning outcome stated in the cover page.
Specifically, upon completion of this Learning Guide, you will be able to –
Learning Activities
1. Read the specific objectives of this Learning Guide.
2. Read the information written in the “Information Sheets 1” in pages 3-4.
3. Accomplish the “Self-check” in page 4.
4. If you earned a satisfactory evaluation proceed to “Information Sheet 2”. However, if your rating is unsatisfactory,
see your teacher for further instructions or go back to Learning Activity # 9.
5. Submit your accomplished Self-check. This will form part of your training portfolio.
6. Read the information written in the “Information Sheet 2” in pages 5-6.
7. Accomplish the “Self-check” in page 6.
4. If you earned a satisfactory evaluation proceed to “Information Sheet 3”. However, if your rating is unsatisfactory,
see your teacher for further instructions or go back to Learning Activity # 9.
5. Submit your accomplished Self-check. This will form part of your training portfolio.
6. Read the information written in the “Information Sheet 3” in pages 7-11.
7. Accomplish the “Self-check” in page 11.
8. However, if your rating is unsatisfactory, see your teacher for further instructions or go back to Learning Activity
#9.
9. Your teacher will evaluate your output either satisfactory or unsatisfactory. If unsatisfactory, your teacher shall
advice you on additional work. But if satisfactory you can proceed to Learning Guide 10.
Your teacher will evaluate your output either satisfactory or unsatisfactory. If unsatisfactory, your teacher
shall advice you on additional work. But if satisfactory you can proceed to the next topic.
3. Select the language, regional settings, and keyboard and click next
4. Click Install Now
5. Select Windows Server 2008 Enterprise (Server Core Installation) and Click Next
6. Accept the EULA and Click Next
7. Click Custom (Advanced)
8. Select the Disk to install the Operating System and Click Next
9. Logon to the system after installation is completed
10. Change the password , Enter Pa$$word in each New Password and Confirm Password boxes and Press ENTER
11. Click OK
Exercise 1: Perform Post-Installation Configuration on Server Core
1. Type netdom renamecomputer %computername% /newname:ServerCore and Press ENTER
2. Confirm the operation press Y
3. Type netsh interface ipv4 set address name=”Local Area Connection” source=static address=10.10.0.12
mask=255.255.0.0 gateway=10.10.0.1 1 and Press ENTER
a. Sets the IP address for NIC
4. Type netsh interface ipv4 set dns name=”Local Area Connection” source=static address=10.10.0.10 primary Press
ENTER
a. Sets the Preferred DNS
5. Type ipconfig /all and Press ENTER
a. Confirm the IP configuration
6. Type shutdown –r –t 0
a. Restarts the server
7. Log on as Administrator
8. Type netdom join %computername% /domain: finalvision.com
a. Joins the server to the finalvision.com domain
9. Restart by typing shutdown –r –t 0
10. Type oclist
a. Lists the server roles that are installed
11. Type ocsetup and Press ENTER
12. Click OK
13. Type ocsetup DNS-Server-Core-Role Press ENTER
a. Must be followed directory , commands are case sensitive
b. Installs the DNS Server role on the Core Server
14. Type oclist
a. Observer DNS Role is installed
Exercise 2: Create a Domain Controller with Server Core
1. Type dcpromo /unattend /replicaOrNewDomain: replica /replicaDomainDNSName: finalvision.com /ConfirmGC:
Yes /UserName:Finalvision\Administrator /Password: * /SafeModeAdminPassword:Pa$$w0rd Press Enter
a. This will start the Domain Controller install
2. When prompted to enter credentials , type Pa$$w0rd for the administrator account in FinalVision.com in the
FinalVision.com domain and Click OK
a. Domain Controller will be installed
Exercise 3: Remove a Domain Controller
1. Logon to the Server Core
2. Type dcpromo /unattend /AdministratorPassword:Pa$$w0rd
a. This will remove the Domain Controller
Module 3 – Creating and Managing a Custom MMC
Requirements
Use the DC1 that was created in Module 1 - Exercise 1.
Exercise 1: Create a Custom MMC
1. Logon to the DC1 as Administrator (Pa$$w0rd)
2. Click Start button and in Start Search box type MMC and Press ENTER
3. Choose Add/Remove Snap-in from File Menu
4. Select Active Directory Users and Computers and click Add
a. Notice Active Directory Schema is not presented
4. Type $objUser.Put(“sAMAccountName”,”mary.star”)
a. Populates the Pre-Windows 2000
5. Type $objUser.SetInfo()
a. Writes account into Active Directory
6. Type $objUser.distinguishedName
7. Type $objuser | get-member
a. Lists the populated attributes
Exercise 3: Create a New User with a Windows PowerShell Script
1. Log on to DC1 as Administrator
2. Open Notepad
3. Type the following
4. Save the script to your Documents folder as “Newuser.ps1”, with quotes to save as a non-text document
5. Open Windows PowerShell
6. Type cd documents and press ENTER
7. Type set-executionpolicy remotesigned
a. This will enable script execution
8. Type .\newuser.ps1 and press ENTER
9. Confirm that the user was created in Active Directory
Exercise 4: Create a New User with a VBScript Script
1. Open Notepad
2. Type the following
3. Save the script in your Documents folder as “Newuser.vbs”, including the quotes so that it is a non-text document
4. Open the command prompt
5. Type cd %userprofile%\documents and press ENTER
6. Type cscript.exe newuser.vbs
7. Confirm that the user was created successfully in Active Directory
Module 8– Supporting User Objects and Accounts
Requirements
Use the DC1 that was created in Exercise 1
First Level Employees, Groups
A global security group in the Groups OU named Sales
Scott Milner
Toya Jackson
Mary Star
Exercise 1: View All Attributes of a User
1. Logon to DC1 as an Administrator
2. Open ADUC
3. Open Employees OU and Right-Click Scott Milner
4. Choose Properties
5. Examine the tabs of the Properties dialog box
6. Click the Telephone tab and enter information into the Notes field. Click OK
7. Click View menu and select Advanced Features
8. Open the Properties of Scott Milner and Click the Attribute Editor tab
2. Save the file to your Documents folder with the name “Importgroups.csv”
3. Open a command prompt
4. Type csvde –I –f “%userprofile%\importgroups.csv”
5. Confirm the changes in ADUC
Exercise 3: Modify Group Membership with LDIFDE
1. Open Notepad and type the following
13. Click OK
Exercise 2: Delegate Management of Group Membership
1. Open the Properties dialog box of ACL_Budget_Edit group
2. Click the Manage by tab
3. Click the Change button
4. Type the user name for Scott Milner and click OK
5. Select the Manager Can Update Membership List check box Click OK
Exercise 3: Validate the Delegation of Membership Management
1. Open a command prompt
2. Type runas /user:Scott cmd.exe
3. Enter the Password Pa$$w0rd
4. Type the following dsmod group “CN=ACL_Budget_Edit, OU=Groups, DC=FinalVision, DC=Com” –addmbr
“CN=Finance, OU=Groups, DC=FinalVision, DC=Com”
5. Close command prompt
6. Confirm the changes in ADUC
Module 11– Creating Computers and Joining the Domain
Requirements
Use the DC1 that was created in Mod 1 Exercise 1
First Level Admins, Groups
A global security group in the Admins\Groups OU named Server Admins
A global security group in the Admins\Groups OU named Help Desk
Employees OU
Scott Milner member of Domain Users and Server Admins
Toya Jackson
Mary Star member of Domain Users and Help Desk
Exercise 1: Create OUs for Client and Server Computer Objects
1. Logon to DC1 as an Administrator
2. Open ADUC and expand the domain
3. Create Desktops and Servers OUs
Exercise 2: Create Computers Objects
1. Right-Click the Desktops OU and select Computer
2. Computer Name box DESKTOP101
3. Click the Change button next to the User or Group box
4. Type Help Desk in the Select User Or Group dialog box that will be allowed to join the computer to the domain
5. Click OK
6. Create a New Computer in Server OU named Server02
7. Click Change button next to User or Group box
8. Type Server Admins
9. Click OK
10. Click OK
Exercise 3: Delegate the Ability to Create Computer Objects
1. Logon to DC1 as an Administrator
2. Open ADUC
3. Click View menu and ensure Advanced Features is selected
4. Bring up the properties of Desktops OU
5. Click the Security tab
6. Click Advanced
7. Click Add
8. Type Help Desk
9. Click the Object tab
10. Select This Object and All Descendant Objects from the Drop-Down list
11. In the Permissions list select Allow next to Create Computer Objects
12. Click OK three times
Exercise 4: Redirect the Default Computer Container
1. Open a command prompt
2. Type redircmp “OU=Desktops, DC=FinalVision, DC=Com”
Module 12– Create and Manage a Custom MMC
Requirements
Use the DC1 that was created in Mod 1 Exercise 1
First Level Admins, Groups
A global security group in the Admins\Groups OU named Server Admins
A global security group in the Admins\Groups OU named Help Desk
Employees OU
Scott Milner member of Domain Users and Server Admins
Toya Jackson
Mary Star member of Domain Users and Help Desk
Windows PowerShell must be installed
Exercise 1: Create a Computer with Dsadd
1. Logon to DC1 as an Administrator
2. Open a command prompt
3. Type dsadd computer “CN=DESKTOP100, OU=Employees, DC=FinalVision, DC=Com”
4. Confirm the computer was created
Exercise 2: Import Computers by Using CSVDE
1. Open Notepad
Name:____________________ Date:_________________
Instruction: Answer all the questions listed below, if you have some clarifications- feel free to ask your teacher.
You can ask you teacher for the copy of the correct answers