INF204x Module 1 Lab 1: Configuring and Troubleshooting Networking Part 1

Size: px
Start display at page:

Download "INF204x Module 1 Lab 1: Configuring and Troubleshooting Networking Part 1"

Transcription

1 INF204x Module 1 Lab 1: Configuring and Troubleshooting Networking Part 1 Estimated Time: 90 minutes Your organization plans to implement IPv6 in their existing Active Directory environment including Windows 10 computers. In preparation for this implementation, you need to evaluate the scenario that involves IPv6 based communication between a Windows 10 domain member computer and a Windows Server 2012 R2 Active Directory domain controller. Objectives After completing this lab, students will be able to: Configure IPv6 addresses on a Windows 10 computer Configure DHCPv6 on a Windows 10 computer Configure DNSv6 on a Windows 10 computer Configure IPv6 routing on a Windows 10 computer Troubleshoot IPv6 configuration on a Windows 10 client computer Lab Environment The lab consists of two virtual machines: LON-WIN10 - Windows 10 Enterprise client (Adatum.com Active Directory domain member) with IPv4 address of LON-DC1 Windows Server 2012 R2 Datacenter server (Adatum.com Active Directory domain controller) with IPv4 address of Note: It is important to point out that dynamic IPv6 configuration in Windows operating systems typically relies on the combination of two complementing mechanisms. The first of them consists of router advertisements from an IPv6-capable router. The second one is an IPv6 address assignment (along with DNSv6 settings such as IPv6 addresses of DNS servers and DNS suffixes to be assigned to the DHCPv6 client) from a DHCPv6 server. However, this lab currently provides the ability to implement only the second of these two mechanisms, by relying on a Windows Server 2012 R2-based DHCP Server. While this still allows you to implement a functional IPv6 scenario, it requires additional steps that would not be necessary if an IPv6-capable router was present. These additional steps include IPv6 routing table changes (and, in a multi-subnet environment, would also involve assigning a default gateway). Even though it is unlikely that you will have to resort to performing these steps in real-life deployments, we hope that these additional steps will expand your knowledge of IPv6 and potentially might come handy someday while troubleshooting or setting up your own IPv6 lab.

2 Exercise 1: Identify the default network configuration of the virtual machines in the lab In this exercise, you will evaluate the default networking configuration of the lab virtual machines (VMs). The main tasks for this exercise are as follows: 1. Identify IPv4 and IPv6 configuration of the Windows Server 2012 R2 server virtual machine 2. Identify IPv4 and IPv6 configuration of the Windows 10 virtual machine 3. Test IPv4 and IPv6 connectivity between the virtual machines 4. Test DNSv4 and DNSv6 name resolution between the virtual machines Task 1: Identify IPv4 and IPv6 configuration of the Windows Server 2012 R2 server virtual machine 1. Sign in to the Windows Server 2012 R2 (LON-DC1) lab virtual machine with the following credentials: USERNAME: ADATUM\Administrator PASSWORD: Pa$$w0rd 2. On the lab virtual machine, launch Windows PowerShell by clicking on its icon in the taskbar. 3. In the Administrator: Windows PowerShell window, type the following and press the Enter key. Get-NetIPAddress Sort InterfaceIndex FT InterfaceIndex, InterfaceAlias, AddressFamily, IPAddress, PrefixLength Autosize 4. Examine the output and note that the Ethernet interface has both an IPv4 and IPv6 address assigned to it. The IPv6 address starts with fe80:: and has the prefix length of 64. This is a linklocal address. Note that this address contains a suffix (following the % sign) matching the network interface index. Also note that the IPv6 information is displayed first. Again IPv6 is the default and the preferred protocol. Note: Link-local addresses are functionally equivalent to IPv4 APIPA addresses since they facilitate communication within the local subnet. To find out more about link-local addresses, refer to IPv6 for the Windows Administrator: IPv6 Fundamentals at fundamentals/ 5. At the Windows PowerShell prompt, type the following and press the Enter key wf.msc 6. In the Windows Firewall with Advanced Security window, click Inbound Rules in the left window pane. In the list of Inbound Rules in the middle pane, verify that the File and Printer Sharing (Echo Request ICMPv4-In) and File and Printer Sharing (Echo Request ICMPv6-In) rules are enabled for All profiles. Note: With the firewall rules allowing inbound ICMP traffic, we will be able to test connectivity from a Windows 10 domain member lab virtual machine to the Windows Server 2012 R2 domain controller lab virtual machine. We will rely on this ability throughout the remainder of the lab.

3 Task 2: Identify IPv4 and IPv6 configuration of the Windows 10 virtual machine 1. Sign in to the Windows 10 (LON-WIN10) lab virtual machine with the following credentials: USERNAME: ADATUM\Administrator PASSWORD: Pa$$w0rd 2. On your lab virtual machine, click the Windows logo in the lower left corner. Click All apps in the Start menu. In the All apps menu, click the Windows PowerShell folder. In the list of programs in the PowerShell folder, right click Windows PowerShell. In the right-click menu, click Run as administrator. 3. In the Administrator: Windows PowerShell window, type the following and press the Enter key. Get-NetIPAddress Sort-Object InterfaceIndex Format-Table InterfaceIndex, InterfaceAlias, AddressFamily, IPAddress, PrefixLength Autosize 4. Examine the output and note that the Ethernet interface has both an IPv4 and IPv6 address assigned to it. The IPv6 address starts with fe80:: and has the prefix length of 64. This is a linklocal address. Note that this address contains the suffix (following the % sign) matching the network interface index. 5. At the Windows PowerShell prompt, type the following and press the Enter key wf.msc 6. In the Windows Firewall with Advanced Security window, click Inbound Rules in the left window pane. In the list of Inbound Rules in the middle pane, verify that the File and Printer Sharing (Echo Request ICMPv4-In) and File and Printer Sharing (Echo Request ICMPv6-In) rules are enabled for All profiles. Note: Here as well, with the firewall rules allowing inbound ICMP traffic, we will be able to test connectivity from the Windows Server 2012 R2 domain controller lab virtual machine to the Windows 10 domain member lab virtual machine. Task 3: Test IPv4 and IPv6 connectivity between the virtual machines 1. From the Windows 10 (LON-WIN10) virtual machine, switch to the Administrator: Windows PowerShell window, type the command and press the Enter key: Invoke-Command -ComputerName 'LON-DC1' -ScriptBlock {Get-NetIPAddress Where- Object InterfaceAlias -eq 'Ethernet' Select-Object IPAddress} 2. The output should include the listing of the IPv4 and IPv6 address assigned to the Ethernet network interface on LON-DC1. 3. At the Windows PowerShell prompt, type the following command and press the Enter key (make sure to replace the <IPv4 address of LON-DC1> with the actual IPv4 address of LON- DC1 included in the output returned by the command executed in step 1 of this task).

4 Test-NetConnection ComputerName <IPv4 address of LON-DC1> 4. The command tests IPv4 network connectivity between LON-WIN10 and LON-DC1. Verify that the value of the PingSucceeded property in the output returned by this command is True. 5. At the Windows PowerShell prompt, type the following command and press the Enter key (make sure to replace the <IPv6 address of LON-DC1> with the actual IPv6 address of LON- DC1 included in the output returned by the command executed in step 1 of this task). Important: Make sure to remove the trailing % and the interface index from the IPv6 address returned by the command executed in step 1 of this task when using it in the Test-NetConnection cmdlet. Test-NetConnection ComputerName <IPv6 address of LON-DC1> 6. The command tests IPv6 network connectivity between LON-WIN10 and LON-DC1. Verify that the value of the PingSucceeded property in the output returned by this command is True. Note: This confirms that, by default, we can communicate by using IPv6 link-local addresses between two computers on the same subnet (as mentioned earlier, this is a subject to operating system-level firewall rules). Task 4: Test DNSv4 and DNSv6 name resolution between the virtual machines 1. On the Windows 10 (LON-WIN10) virtual machine, from the Administrator: Windows PowerShell window, type the following command and press the Enter key: Resolve-DnsName Name LON-WIN10.adatum.com -DnsOnly 2. The output lists the DNS records associated with the LON-WIN10.adatum.com name. Note that, at this point, there is only an A record (referencing the IPv4 address of LON-WIN10) but there is no AAAA record (which would resolve the LON-WIN10 name to its corresponding IPv6 address). 3. Rerun the same command for LON-DC1 by typing the following command and pressing the Enter key: Resolve-DnsName Name LON-DC1.adatum.com -DnsOnly 4. The output lists the DNS records associated with the LON-DC1.adatum.com name. Note that, in this case as well, at this point, there is only an A record (referencing the IPv4 address of LON- DC1) but there is no AAAA record (which would resolve the LON-DC1 name to its corresponding IPv6 address). 5. You can also verify this running the following command: Test-NetConnection -ComputerName LON-DC1.adatum.com InformationLevel Detailed 6. The output returned by the command will include the AllNameResolutionResults property, which value should contain only the IPv4 address of LON-DC1.adatum.com, since DNS name resolution to its IPv6 address is currently not possible (due to the lack of the corresponding AAAA DNS record).

5 Note: If you rerun the Test-NetConnection cmdlet but specify the hostname of LON-DC1 (rather than its fully qualified domain name), you will actually see both IPv4 and IPv6 addresses returned as the value of the AllNameResolutionResults property. In this case, the cmdlet relies on Link-Local Multicast Name Resolution (LLMNR) mechanism to resolve the name of another host on the same subnet to its link-local IPv6 address. Keep in mind that LLMNR is dependent on the Network Discovery being enabled on the target system (in this case, LON-DC1). Results: After completing this exercise, you will have identified IP configuration of both lab virtual machines (LON-WIN10 and LON-DC1). You also tested IPv4 and IPv6 connectivity as well as DNSv4 and DNSv6 name resolution between them. Exercise 2: Implement DHCPv6. In this exercise, you will implement DHCPv6 to assign IPv6 addresses to Windows 10 computers by using the Windows Server 2012 R2-based DHCP server role. The main tasks for this exercise are as follows: 1. Install and configure DHCP Server role on the Windows Server 2012 R2 lab virtual machine (LON-DC1) 2. Implement DHCP server connection bindings on the Windows Server 2012 R2 lab virtual machine (LON-DC1) 3. Examine the resulting DHPCv6 configuration on the Windows 2012 R2 lab virtual machine (LON-DC11) 4. Examine the resulting DHPCv6 configuration on the Windows 10 lab virtual machine (LON-WIN10) 5. Test IPv6 connectivity between the lab virtual machines (LON-DC1 and LON-WIN10) 6. Modify IPv6 routing table on the Windows 10 virtual machine (LON-WIN10) Task 1: Configure DHCP Server role on the Windows Server 2012 R2 lab virtual machine (LON-DC1) 1. On the Windows Server 2012 R2 lab virtual machine (LON-DC1), in the Server Manager window, click Tools. In the drop-down menu, click DHCP. This will launch the DHCP console. 2. In the DHCP console, right click on the lon-dc1.adatum.com icon and verify that the server has been authorized. If not, click Authorize in the right-click menu. 3. In the DHCP console, right-click the IPv6 node and click New Scope in the right-click menu. This will launch New Scope Wizard. 4. On the Welcome to the New Scope Wizard page, click Next. 5. On the Scope Name page, type in Adatumv6 in the Name textbox and click Next. Note: The naming convention is arbitrary, but you should consider choosing one that will help you identify the purpose of each scope. Our choice is based purely on the fact that there is an existing IPv4 scope named Adatum. 6. On the Scope Prefix page, type in fd44:ecc6:e322:: in the Prefix textbox and click Next.

6 Note: In this lab, we are creating a range that will be allocating Unique Local IPv6 addresses. To find out more about unique local addresses, refer to IPv6 for the Windows Administrator: IPv6 Fundamentals at fundamentals/ 7. On the Add Exclusions page, click Next. 8. On the Scope Lease page, leave the defaults in place and click Next. 9. On the Completing the New Scope Wizard page, ensure that the Activate Scope Now option is set to Yes and click Finish. Important: While at this point the IPv6 scope has been created in activated, the DHCP server is not able to lease IPv6 addresses to DHCPv6 clients because it does not have appropriately configured bindings. To remediate this, you must first assign a static IPv6 address to the network interface reachable by DHCPv6 clients. You should also create an exclusion in the DHCPv6 scope that contains that IPV6 address. You will implement these steps in the next task. Task 2: Implement DHCP server connection bindings on the Windows Server 2012 R2 lab virtual machine (LON-DC1) 1. On the Windows Server 2012 R2 lab virtual machine (LON-DC1), switch to the Start screen, type ncpa.cpl, and press the Enter key. This will open the Network Connections window. 2. Right-click the Ethernet connection and select Properties from its right-click menu. 3. In the Ethernet Properties dialog box, select Internet Protocol Version 6 (TCP/IPv6) and click Properties. 4. In the Internet Protocol Version 6 (TCP/IPv6) Properties dialog box, select Use the following IPv6 address option button. In the IPv6 address textbox, type in fd44:ecc6:e322::dc1. Note that your choice of IPv6 address is arbitrary, as long as the 64-bit prefix matches the one designated for the DHCPv6 scope (we decided to use dc1 as the Interface ID portion of the address purely for convenience). Ensure that the Subnet prefix lenght is set to Click OK. Ignore the message stating that The DNS server list is empty. The local IP address will be configured as the primary DNS server address because Microsoft DNS is installed on this machine. Click OK to close the message box. 6. In the Ethernet Properties dialog box, click Close. 7. Switch back to the DHCP console. Under the IPv6 node, right-click Exclusions and select New Exclusion Range from the right-click menu. 8. In the Add Exclusion dialog box, type in dc1 in the Start IPv6 Address textbox and in the End IPv6 Address textbox. Note: Keep in mind that dc1 in this case has nothing to do with the server name. Instead, this represents the interface ID portion of the static IP address you assigned to the server LON-DC1 (which we simply chose to set to the hexadecimal value dc1). 9. Click Add and click Close.

7 Task 3: Examine the resulting DHPCv6 configuration on the Windows Server 2012 R2 lab virtual machine (LON-DC1) 1. Switch to the Administrator: Windows PowerShell window and, at the prompt, type the following and press the Enter key: Ipconifg /renew6 Ethernet 2. Verify that the output displayed once the command above completes includes the IPv6 address from the DHCPv6 scope you defined earlier. Note: At this point, there are three IPv6 addresses assigned to the Ethernet interface on LON-DC1. The first one is the automatically allocated link-local one (starting with fe80::), the second one is the static one you assigned earlier in this exercise (fd44:ecc6:e322::dc1), and the third one (also starting with fd44:ecc6:e322::) has been provided dynamically by the DHCP server from its DHCPv6 scope. Task 4: Examine the resulting DHPCv6 configuration on the Windows 10 lab virtual machine (LON-WIN10) 1. Switch to the Windows 10 (LON-WIN10) virtual machine. On LON-WIN10, in the Administrator: Windows PowerShell window, type the following command and press the Enter key: Ipconifg /renew6 Ethernet 2. Verify that the output displayed once the command above completes includes the IPv6 address from the DHCPv6 scope you defined earlier. Note: At this point, there are two IPv6 addresses assigned to the Ethernet interface on LON-WIN10. The first one is the automatically allocated link-local one (starting with fe80::) and the second one (starting with fd44:ecc6:e322::) has been provided dynamically by the DHCP server from its DHCPv6 scope. Task 5: Test IPv6 connectivity between the lab virtual machines (LON-DC1 and LON-WIN10) 1. On the Windows 10 (LON-WIN10) virtual machine, switch to the Administrator: Windows PowerShell window, type the command and press the Enter key: Invoke-Command -ComputerName 'LON-DC1' -ScriptBlock {Get-NetIPAddress Where- Object InterfaceAlias -eq 'Ethernet' Select-Object IPAddress} 2. The output should include the listing of all IPv6 addresses assigned to the Ethernet network interface on LON-DC1. At the Windows PowerShell prompt, type the following command and press the Enter key (make sure to replace the <IPv6 address of LON-DC1> with the actual DHCPv6 assigned IPv6 address of LON-DC1 included in the output returned by the command executed in step 1 of this task.

8 Test-NetConnection ComputerName <IPv6 address of LON-DC1> 3. The command tests IPv6 network connectivity between LON-WIN10 and LON-DC1. Notice that the test fails. Important: You might be surprised that the test fails at this point, even though both LON-WIN10 and LON-DC1 appear to have DHCPv6 assigned IPv6 addresses from the same scope and both reside on the same subnet. As we mentioned at the beginning of this guide, this is due to the fact that our lab environment does not include an IPv6-capable router. To remediate this shortcoming, you will need to make IPv6 routing table changes. The steps to accomplish this are outlined in the next task. Task 6: Modify IPv6 routing table on the Windows 10 virtual machine (LON- WIN10) 1. On the Windows 10 (LON-WIN10) virtual machine, from the Administrator: Windows PowerShell window, type the command and press the Enter key: Get-NetRoute InterfaceAlias Ethernet 2. The output should include the listing of the local routing table entries for the Ethernet network interface. Note that the table does not include an entry representing the local IPv6 subnet (fd44:ecc6:e322::/64). This is causing the failure of communication by using the IPv6 address dynamically assigned to LON-WIN10 by DHCPv6. 3. To resolve this, at the Windows PowerShell prompt, type the following command and press the Enter key: New-NetRoute InterfaceAlias Ethernet DestinationPrefix fd44:ecc6:e322::/64 NextHop :: AddressFamily IPv6 RouteMetric The command will return the new route table entries. Note that since we have not included the PolicyStore parameter, the route is added automatically to both ActiveStore and PersistentStore. Effectively, the change takes effect immediately and persists following reboots. 5. At the Windows PowerShell prompt, rerun the following command and press the Enter key (make sure to replace the <IPv6 address of LON-DC1> with the actual DHCPv6 assigned IPv6 address of LON-DC1 included in the output returned by the command executed in step 1 of the previous task). Test-NetConnection ComputerName <IPv6 address of LON-DC1> 6. Note that this time the command succeeded, as indicated by the value True of the PingSucceeded property in the returned output. Important: Note that we did not have to modify the routing table on LON-DC1. The reason for it is that we assigned to it a static IPv6 address in the fd44:ecc6:e322::/64 subnet, which automatically took care of adjusting appropriately its local routing table. You can easily verify this by running the Get- NetRoute InterfaceAlias Ethernet command from the Windows PowerShell prompt on LON-DC1.

9 Results: After completing this exercise, you will have installed and configured DHCP server role on the Windows Server 2012 R2 lab virtual machine, implemented its DHCP server connection bindings, and examined the resulting DHCPv6 configuration on the Windows Server 2012 R2 and Windows 10 lab virtual machines. You also identified an issue when testing IPv6 connectivity between the two lab virtual machines and resolved it by modifying the IPv6 routing table on the Windows 10 lab virtual machine. Exercise 3: Implement DNSv6 In this exercise, you will configure DNSv6 to facilitate reverse DNS lookups from Windows 10 computers by using the Windows Server 2012 R2-based DNS server role. The main tasks for this exercise are as follows: 1. Test DNSv6 name resolution from the Windows 10 lab virtual machine 2. Modify DNSv6 DNS Server settings on the Windows Server 2012 R2 lab virtual machine 3. Configure DHCPv6 scope options on the Windows Server 2012 R2 lab virtual machine Task 1: Test DNSv6 name resolution on the Windows 10 lab virtual machine 1. On the Windows 10 (LON-WIN10) virtual machine, from the Administrator: Windows PowerShell window, type the following command and press the Enter key: Resolve-DnsName Name LON-WIN10.adatum.com -DnsOnly 2. The output lists the DNS records associated with the LON-WIN10.adatum.com name. Note that, at this point, there is not only the A record (referencing the IPv4 address of LON-WIN10) but also the AAAA record (which would resolve the LON-WIN10 name to its corresponding IPv6 address). Important: This might be again a bit of a surprise since you have not configured DNSv6 settings on the Ethernet network interface of LON-WIN10, however, the DHCPv6 client is capable of registering the DNSv6 names by relying on DHCPv6 server. These settings can be managed from the DHCP console, by right-clicking on the IPv6 node, selecting Properties from the right-click menu, clicking DNS tab in the IPv6 Properties dialog box, and modifying the state of the Enable DNS dynamic updates according to the settings below checkbox (along with the two options Dynamically update DNS AAAA and PTR records only if requested by the DHCP clients and Always dynamically update DNS AAAA and PTR records). 3. Now try performing a reverse lookup which should resolve an IPv6 address to the corresponding DNS name. In this case, you will attempt to resolve the IPv6 address which was assigned dynamically to LON-DC1 by using DHCPv6. To accomplish this, type the following command at the Windows PowerShell prompt and press the Enter key (make sure to replace the <IPv6 address of LON-DC1> with the actual DHCPv6 assigned IPv6 address of LON-DC1, which you identified in the previous exercise): Resolve-DnsName Type PTR -Name <IPv6 address of LON-DC1> -DnsOnly 4. You will receive an error message stating that the DNS record does not exist.

10 Note: In order to perform reverse lookups, which rely on the presence of PTR records, you must first create a reverse lookup zone and ensure that it is populated with these PTR records. You will implement these steps in the next task of this exercise. Task 2: Modify DNSv6 DNS Server settings on the Windows Server 2012 R2 lab virtual machine. 1. On the Windows Server 2012 R2 lab virtual machine (LON-DC1), in the Server Manager window, click Tools. In the drop-down menu, click DNS. This will launch the DNS Manager console. 2. In the DNS Manager console, right click on the Reverse Lookup Zones folder and click New Zone in the right-click menu. This will launch New Zone Wizard. 3. On the Welcome to the New Zone Wizard page, click Next. 4. On the Zone Type page, accept the default settings and click Next. 5. On the Active Directory Zone Replication Scope page, accept the default settings and click Next. 6. On the Reverse Lookup Zone Name page, select the IPv6 Reverse Lookup Zone option and click Next. 7. On the Reverse Lookup Zone Name page, in the IPv6 Address Prefix text box, type in fd44:ecc6:e322::/64 and click Next. 8. On the Dynamic Update page, select the Allow both nonsecure and secure dynamic updates option and click Next. 9. On the Completing the New Zone Wizard page, click Finish. This will result in creation of the reverse lookup zone ( e.6.c.c.e.4.4.d.f.ip6.arpa) representing the IPv6 address space of the DHCPv6 scope you created in the second exercise of this lab (fd44:ecc6:e322::/64). Note: Now that you created a reverse lookup zone, you need to populate it with the PTR record for LON-DC In the DNS Manager console, expand the Forward Lookup Zones folder and click the Adatum.com folder. 11. In the list of DNS records in Adatum.com, locate the IPv6 Host (AAAA) record representing the IPv6 address assigned dynamically to LON-DC1 and double-click on it. 12. In the lon-dc1 Properties dialog box, enable the Update associated pointer (PTR) record checkbox (if the checkbox is already enabled, first disable it and then re-enable it). Click OK 13. In the DNS Manager console, right-click the newly created reverse lookup zone ( e.6.c.c.e.4.4.d.f.ip6.arpa) and click Refresh in the right-click menu. 14. In the results pane, verify that the new PTR record for lon-dc1.adatum.com has been created. 15. Switch back to the Windows 10 (LON-WIN10) virtual machine. From the Administrator: Windows PowerShell window, try again performing a reverse lookup to resolve the IPv6 address assigned dynamically to LON-DC1 by typing the following command and pressing the Enter key (make sure to replace the <IPv6 address of LON-DC1> with the actual DHCPv6 assigned IPv6 address of LON-DC1, which you identified in the previous exercise):

11 Resolve-DnsName Type PTR -Name <IPv6 address of LON-DC1> -DnsOnly 16. This time, you should receive the response showing the details of the PTR record, including the name, type, TTL (Time to Live), and the corresponding hostname. Important: In order to ensure proper DNSv6 name registration and name resolution in your environment, you should configure the DHCPv6 scope option on the server hosting the DHCP server role (LON-DC1 in this case). In particular, you should specify the list of DNS sever addresses and DNS suffix search list. You will implement these steps in the next task. Task 3: Configure DHCPv6 scope options on the Windows Server 2012 R2 lab virtual machine. 1. On the Windows Server 2012 R2 lab virtual machine (LON-DC1), switch to the DHCP console. 2. In the DHCP console, expand the folder labeled Scope [fd44:ecc6:e322::] Adatumv6 under the IPv6 node, right-click the Scope Options subfolder, and click Configure Options in the right-click menu. 3. In the Scope Options dialog box, on the General tab, select the checkbox next to the DNS Recursive Name Server IPv6 Address List checkbox. In the New IPv6 address textbox, type in the IPv6 address you assigned to LON-DC1 (fd44:ecc6:e322::dc1) and click Add. 4. In the Scope Options dialog box, on the General tab, select the checkbox next to the Domain Search List checkbox. In the New value textbox, type in the domain name suffix assigned to both LON-WIN10 and LON-DC1 (adatum.com) and click Add. 5. Click OK. 6. Switch to the LON-WIN10. On the Windows 10 (LON-WIN10) virtual machine, from the Administrator: Windows PowerShell window, type the following command and press the Enter key: Ipconifg /renew6 Ethernet 7. From the Windows PowerShell prompt, run the following command: Get-NetIPConfiguration InterfaceAlias Ethernet 8. Verify that the DNSServer property displayed in the output returned by the command includes the fd44:ecc6:e322::dc1 entry. Note: You can quickly verify that the newly assigned IPv6 address of DNS server is used to resolve DNS queries by typing nslookup at the Windows PowerShell prompt. This will return the following output: Default Server: UnKnown Address: fd44:ecc6:e322::dc1 which indicate that the DNS server at the IP address fd44:ecc6:e322::dc1 is referenced by default when performing DNS name resolution. To eliminate the UnKnown entry, add the PTR record corresponding to the AAAA record of LON-DC1 fd44:ecc6:e322::dc1 to the reverse lookup zone you created in the previous task of this exercise.

12 Results: After completing this exercise, you will have tested forward and reverse DNSv6 lookups on the Windows 10 lab virtual machine and identified an issue with the reverse lookups. You have resolved this issue by modifying DNSv6 DNS Server settings on the Windows Server 2012 R2 lab virtual machine. You also configured DHCPv6 scope options of DHCP Server on the Windows Server 2012 R2 lab virtual machine to ensure DNSv6 name resolution on all DHCPv6 clients. Note: When you finish this lab select the End Lab link to reset the virtual machines.

INF204x Module 1 Lab 2: Configuring and Troubleshooting Networking Part 2

INF204x Module 1 Lab 2: Configuring and Troubleshooting Networking Part 2 INF204x Module 1 Lab 2: Configuring and Troubleshooting Networking Part 2 Estimated Time: 60 minutes Your organization plans to expand the use of IPv6 in its existing Windows Server 2012 R2 Active Directory

More information

INF204x Module 1, Lab 3 - Configure Windows 10 VPN

INF204x Module 1, Lab 3 - Configure Windows 10 VPN INF204x Module 1, Lab 3 - Configure Windows 10 VPN Estimated Time: 40 minutes Your organization plans to allow Windows 10 users to connect to the internal network by using the VPN client built into the

More information

Lab: Configuring and Troubleshooting DNS

Lab: Configuring and Troubleshooting DNS Lab: Configuring and Troubleshooting DNS A. Datum is a global engineering and manufacturing company with its head office in London, UK. An IT office and a data center are located in London to support the

More information

Module 3 Remote Desktop Gateway Estimated Time: 90 minutes

Module 3 Remote Desktop Gateway Estimated Time: 90 minutes Module 3 Remote Desktop Gateway Estimated Time: 90 minutes A. Datum Corporation provided access to web intranet web applications by implementing Web Application Proxy. Now, IT management also wants to

More information

20411D D Enayat Meer

20411D D Enayat Meer Lab A Module 8: Implementing Direct Access by Using the Getting Started Wizard Scenario: Recommended lab time is 240 Minutes {a complete class session is dedicated for this lab} Many users at A. Datum

More information

INF214x Basic Networking Practical Exercises

INF214x Basic Networking Practical Exercises INF214x Basic Networking Practical Exercises Overview This course includes practical exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps for

More information

INF204x Module 2 Lab 2: Using Encrypting File System (EFS) on Windows 10 Clients

INF204x Module 2 Lab 2: Using Encrypting File System (EFS) on Windows 10 Clients INF204x Module 2 Lab 2: Using Encrypting File System (EFS) on Windows 10 Clients Estimated Time: 30 minutes You have a standalone Windows 10 client computer that you share with your colleagues. You plan

More information

Module 4 Network Controller Estimated Time: 90 minutes

Module 4 Network Controller Estimated Time: 90 minutes Module 4 Network Controller Estimated Time: 90 minutes A. Datum Corporation intends to deploy and use Network Controller to manage network services and devices. You need to test a deployment of Network

More information

Agha Mohammad Haidari General ICT Manager in Ministry of Communication & IT Cell#

Agha Mohammad Haidari General ICT Manager in Ministry of Communication & IT Cell# Install a DNS server in Windows Server 2008 IT administrators who have little or no experience with Domain Name System (DNS), can learn to install, configure and troubleshoot a Windows Server 2008 DNS

More information

This course comes with a virtual lab environment where you can practice what you learn.

This course comes with a virtual lab environment where you can practice what you learn. INF220x Security Practical Exercises Overview This course comes with a virtual lab environment where you can practice what you learn. In most cases, the userid is Adatum\Administrator and the password

More information

Configure DHCP for Failover Step-by-Step.

Configure DHCP for Failover Step-by-Step. Configure DHCP for Failover Step-by-Step https://technet.microsoft.com/en-us/library/hh831385.aspx Dynamic Host Configuration Protocol (DHCP) failover in Windows Server 2012 is a new method for ensuring

More information

Module 1 Web Application Proxy (WAP) Estimated Time: 120 minutes

Module 1 Web Application Proxy (WAP) Estimated Time: 120 minutes Module 1 Web Application Proxy (WAP) Estimated Time: 120 minutes The remote access deployment is working well at A. Datum Corporation, but IT management also wants to enable access to some internal applications

More information

Test Lab Guide: Windows Server 2012 Base Configuration

Test Lab Guide: Windows Server 2012 Base Configuration Test Lab Guide: Windows Server 2012 Base Configuration Microsoft Corporation Published: September 10, 2012 Abstract This Microsoft Test Lab Guide (TLG) provides step- by- step instructions to create the

More information

List of Virtual Machines Used in This Lab

List of Virtual Machines Used in This Lab INF204x Module 3 Lab1: Deploying Windows 10 to a New Computer by Using Microsoft Deployment Toolkit Lab: Using Microsoft Deployment Toolkit 2013 Update 1 Preview to Deploy Operating Systems Overview of

More information

Lab - Configure the Firewall in Windows 8

Lab - Configure the Firewall in Windows 8 Introduction In this lab, you will explore the Windows Firewall and configure some advanced settings. Recommended Equipment Two computers directly connected or connected over the network Windows 8 installed

More information

Student Lab Manual MS101.1x: Microsoft 365 Security Management

Student Lab Manual MS101.1x: Microsoft 365 Security Management Student Lab Manual MS101.1x: Microsoft 365 Security Management Lab Scenario You are the system administrator for Adatum Corporation, and you have Microsoft 365 deployed in a virtualized lab environment.

More information

Figure 1-1. When we finish Part 2, our server will be ready to have workstations join the domain and start sharing files. Now here we go!

Figure 1-1. When we finish Part 2, our server will be ready to have workstations join the domain and start sharing files. Now here we go! 1 of 18 9/6/2008 4:05 AM Configuring Windows Server 2003 for a Small Business Network, Part 2 Written by Cortex Wednesday, 16 August 2006 Welcome to Part 2 of the "Configuring Windows Server 2003 for a

More information

MCSA Guide to Networking with Windows Server 2016, Exam

MCSA Guide to Networking with Windows Server 2016, Exam MCSA Guide to Networking with Windows Server 2016, Exam 70-741 First Edition Chapter 4 Implementing DHCP 2018 Cengage. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part,

More information

DHCP and DDNS Services

DHCP and DDNS Services This chapter describes how to configure the DHCP server or DHCP relay as well as dynamic DNS (DDNS) update methods. About, page 1 Guidelines for, page 3 Configure the DHCP Server, page 4 Configure the

More information

Computer Networks Lab

Computer Networks Lab Computer Networks Lab Room: BB 219 Additional Information: http://ti.uni-due.de/ti/en/education/teaching/ss18/netlab 1. Practical Training: Network planning and installation of a file server 2. Practical

More information

Lab 11 Deploying and Configuring the DHCP Service

Lab 11 Deploying and Configuring the DHCP Service Lab 11 Deploying and Configuring the DHCP Service THIS LAB CONTAINS THE FOLLOWING EXERCISES AND ACTIVITIES: 11.1 11.2 11.3 11.4 Lab Challenge Installing the DHCP Server Role Creating a DHCPv4 Scope Creating

More information

Personal vdisk Implementation Guide. Worldwide Technical Readiness

Personal vdisk Implementation Guide. Worldwide Technical Readiness Worldwide Technical Readiness Table of Contents Table of Contents... 2 Overview... 3 Implementation Guide... 4 Pre-requisites... 5 Preparing PVS vdisk to be used with Personal vdisk... 6 Creating a Desktop

More information

In most cases, the userid is Adatum\Administrator and the password is Pa55w.rd, but read the instructions carefully.

In most cases, the userid is Adatum\Administrator and the password is Pa55w.rd, but read the instructions carefully. INF219x Advanced Virtualization Practical Exercises Overview This course comes with a virtual lab environment where you can practice what you learn. Launch the lab environment from the Welcome > Getting

More information

Course Outline. Installing and Configuring Windows Server 2012 R2 (Course & Lab)

Course Outline. Installing and Configuring Windows Server 2012 R2 (Course & Lab) Course Outline Installing and Configuring Windows Server 26 Dec 2017 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number of Questions 4. Expert Instructor-Led

More information

Course CLD221x: Enabling Office 365 Clients

Course CLD221x: Enabling Office 365 Clients Course CLD221x: Enabling Office 365 Clients Student Lab Manual Lab Design There are five exercises in this lab, each of which contains one or more tasks. For a successful outcome to the lab, the exercises

More information

Exam Networking with Windows Server 2016

Exam Networking with Windows Server 2016 MCSA / MCSE for Windows Server 2016 Exam 70-741 Networking with Windows Server 2016 Version 15.35 (200 Questions) (70-741) Networking with Windows Server 2016 QUESTION 1 Note: This question is part of

More information

Introduction. Lab Diagram

Introduction. Lab Diagram Introduction The Implement an Advanced DHCP Solution module provides you with the instruction and server hardware to develop your hands on skills in the defined topics. This module includes the following

More information

Module 5: Integrating Domain Name System and Active Directory

Module 5: Integrating Domain Name System and Active Directory Module 5: Integrating Domain Name System and Active Directory Contents Overview 1 Lesson: Configuring Active Directory Integrated Zones 2 Lesson: Configuring DNS Dynamic Updates 14 Lesson: Understanding

More information

LAB 5 IMPLEMENTING WINDOWS IN AN ENTERPRISE ENVIRONMENT

LAB 5 IMPLEMENTING WINDOWS IN AN ENTERPRISE ENVIRONMENT LAB 5 IMPLEMENTING WINDOWS IN AN ENTERPRISE ENVIRONMENT THIS LAB CONTAINS THE FOLLOWING EXERCISES AND ACTIVITIES: Exercise 5.1 Exercise 5.2 Exercise 5.3 Lab Challenge Installing the Windows Assessment

More information

ILTA HAND 6A. Implementing and Using. Windows Server In the Legal Environment

ILTA HAND 6A. Implementing and Using. Windows Server In the Legal Environment ILTA 2013 - HAND 6A Implementing and Using Windows Server 2012 In the Legal Environment Table of Contents Purpose of This Lab... 3 Lab Environment... 3 Presenter... 3 Exercise 1 Getting Familiar with Windows

More information

Deployment Guide: Routing Mode with No DMZ

Deployment Guide: Routing Mode with No DMZ Deployment Guide: Routing Mode with No DMZ March 15, 2007 Deployment and Task Overview Description Follow the tasks in this guide to deploy the appliance as a router-firewall device on your network with

More information

MCTS Guide to Microsoft Windows Server 2008 Network Infrastructure Configuration. Chapter 5 Introduction to DNS in Windows Server 2008

MCTS Guide to Microsoft Windows Server 2008 Network Infrastructure Configuration. Chapter 5 Introduction to DNS in Windows Server 2008 MCTS Guide to Microsoft Windows Server 2008 Network Infrastructure Configuration Chapter 5 Introduction to DNS in Windows Server 2008 Objectives Discuss the basics of the Domain Name System (DNS) and its

More information

DHCP and DDNS Services for Threat Defense

DHCP and DDNS Services for Threat Defense The following topics explain DHCP and DDNS services and how to configure them on Threat Defense devices. About DHCP and DDNS Services, on page 1 Guidelines for DHCP and DDNS Services, on page 3 Configure

More information

This course comes with a virtual lab environment where you can practice what you learn.

This course comes with a virtual lab environment where you can practice what you learn. INF220x Security Practical Exercises Overview This course comes with a virtual lab environment where you can practice what you learn. In most cases, the userid is Adatum\Administrator and the password

More information

Microsoft. Exam Questions Networking with Windows Server Version:Demo

Microsoft. Exam Questions Networking with Windows Server Version:Demo Microsoft Exam Questions 70-741 Networking with Windows Server 2016 Version:Demo NEW QUESTION 1 Note: This question is part of a series of questions that present the same scenario. Each question in the

More information

edp 8.2 Info Sheet - Integrating the ediscovery Platform 8.2 & Enterprise Vault

edp 8.2 Info Sheet - Integrating the ediscovery Platform 8.2 & Enterprise Vault edp 8.2 Info Sheet - Integrating the ediscovery Platform 8.2 & Enterprise Vault 12.0.1 Date: December 2017 Author: Technical Field Enablement (II-TEC@veritas.com) Applies to: ediscovery Platform 8.x and

More information

ForeScout Extended Module for MaaS360

ForeScout Extended Module for MaaS360 Version 1.8 Table of Contents About MaaS360 Integration... 4 Additional ForeScout MDM Documentation... 4 About this Module... 4 How it Works... 5 Continuous Query Refresh... 5 Offsite Device Management...

More information

LAB MANUAL. Craig Zacker.

LAB MANUAL. Craig Zacker. Free ebooks ==> www.ebook777.com LAB MANUAL Craig Zacker www.ebook777.com Free ebooks ==> www.ebook777.com www.ebook777.com This page is intentionally left blank Free ebooks ==> www.ebook777.com Installing

More information

Lab - Configure the Firewall in Windows 7 and Vista

Lab - Configure the Firewall in Windows 7 and Vista Introduction In this lab, you will explore the Windows Firewall and configure some advanced settings. Recommended Equipment Two computers directly connected or connected on a network Windows installed

More information

examcollection.premium.exam.91q

examcollection.premium.exam.91q 70-741.examcollection.premium.exam.91q Number: 70-741 Passing Score: 800 Time Limit: 120 min File Version: 1 Microsoft 70-741 Networking with Windows Server 2016 Exam A QUESTION 1 You have a DHCP server

More information

About XenClient Synchronizer

About XenClient Synchronizer About XenClient Synchronizer About XenClient Synchronizer About XenClient Synchronizer Synchronizer performs all the administrative tasks for the XenClient Enterprise solution. It keeps a database of all

More information

Create a Dual Stack Virtual Private Cloud (VPC) in AWS

Create a Dual Stack Virtual Private Cloud (VPC) in AWS Create a Dual Stack Virtual Private Cloud (VPC) in AWS Lawrence E. Hughes 5 November 2017 This recipe assumes you already have an AWS account. If you don t there is a lot of information online (including

More information

Installing and Configuring Windows Server 2012

Installing and Configuring Windows Server 2012 Installing and Configuring Windows Server 2012 Course 20410C - Five days - Instructor-led - Hands-on Introduction Get hands-on instruction and practice installing and configuring Windows Server 2012, including

More information

Module 9. Configuring IPsec. Contents:

Module 9. Configuring IPsec. Contents: Configuring IPsec 9-1 Module 9 Configuring IPsec Contents: Lesson 1: Overview of IPsec 9-3 Lesson 2: Configuring Connection Security Rules 9-11 Lesson 3: Configuring IPsec NAP Enforcement 9-21 Lab: Configuring

More information

Hands-On Microsoft Windows. Chapter 8 p Managing Windows Server 2008 Network Services

Hands-On Microsoft Windows. Chapter 8 p Managing Windows Server 2008 Network Services Hands-On Microsoft Windows Server 2008 Chapter 8 p Managing Windows Server 2008 Network Services Objectives Install, configure, and troubleshoot DNS Implement Microsoft WINS Install, configure, and troubleshoot

More information

Overview. Audience Profile. Module Title : 20410DC -Installing and Configuring Windows Server Course Outline :: 20410DC::

Overview. Audience Profile. Module Title : 20410DC -Installing and Configuring Windows Server Course Outline :: 20410DC:: Module Title : 20410DC -Installing and Configuring Windows Server 2012 Duration : 5 days Overview Get hands-on instruction and practice installing and configuring Windows Server 2012, including Windows

More information

Install and Manage Windows Nano Server 2016 Step by Step

Install and Manage Windows Nano Server 2016 Step by Step Complete Lab (V2.0) Ahmed Abdelwahed Microsoft Certified Trainer Ahmed_abdulwahed@outlook.com Table of Contents Lab Objective... 3 Windows Nano Server 2016 overview... 3 Current infrastructure environment...

More information

SEVENMENTOR TRAINING PVT.LTD

SEVENMENTOR TRAINING PVT.LTD Installing and Configuring Windows Server 2012 Module 1: Deploying and Managing Windows Server 2012 This module introduces students to the editions of Windows Server 2012 and the new Windows Server 2012

More information

Getting Started with ESX Server 3i Installable Update 2 and later for ESX Server 3i version 3.5 Installable and VirtualCenter 2.5

Getting Started with ESX Server 3i Installable Update 2 and later for ESX Server 3i version 3.5 Installable and VirtualCenter 2.5 Getting Started with ESX Server 3i Installable Update 2 and later for ESX Server 3i version 3.5 Installable and VirtualCenter 2.5 Getting Started with ESX Server 3i Installable Revision: 20090313 Item:

More information

Windows Server 2003 { Domain Controller Installation and Configuration}

Windows Server 2003 { Domain Controller Installation and Configuration} Windows Server 2003 { Domain Controller Installation and } Benedikt Riedel MCSE + Messaging www.go-unified.com www.siemens.com/open Benedikt.riedel@siemens.com Start up the prepared Windows Server 2003

More information

Configuring name resolution

Configuring name resolution CHAPTER 3 Configuring name resolution Name resolution involves translating human readable names, most commonly fully qualified domain names (FQDNs), into IP addresses. Most name resolution on Windows networks

More information

Device Manager. Managing Devices CHAPTER

Device Manager. Managing Devices CHAPTER 2 CHAPTER This chapter describes how to perform routine device management tasks using the Administrator Console. It provides information on managing the devices within your Cisco VXC Manager environment.

More information

ForeScout Extended Module for Tenable Vulnerability Management

ForeScout Extended Module for Tenable Vulnerability Management ForeScout Extended Module for Tenable Vulnerability Management Version 2.7.1 Table of Contents About Tenable Vulnerability Management Module... 4 Compatible Tenable Vulnerability Products... 4 About Support

More information

Cisco TelePresence VCS Cluster Creation and Maintenance

Cisco TelePresence VCS Cluster Creation and Maintenance Cisco TelePresence VCS Cluster Creation and Maintenance Deployment Guide Cisco VCS X8.5 Cisco TMS 13.2 or later December 2014 Contents Introduction 4 Prerequisites 5 Upgrading an X7.1 or later cluster

More information

ForeScout CounterACT. Configuration Guide. Version 1.2

ForeScout CounterACT. Configuration Guide. Version 1.2 ForeScout CounterACT Core Extensions Module: NetFlow Plugin Version 1.2 Table of Contents About NetFlow Integration... 3 How it Works... 3 Supported NetFlow Versions... 3 What to Do... 3 Requirements...

More information

Step 2. Manual configuration of global unicast and link-local addresses

Step 2. Manual configuration of global unicast and link-local addresses Lab: DHCPv6 CIS 116 IPv6 Fundamentals Enter your answers to the questions in this lab using Canvas Quiz DHCPv6 Lab. Step 1. Setup a. Log into NetLab: ccnp.bayict.cabrillo.edu b. Schedule IPv6 Pod 1: no

More information

App Orchestration 2.6

App Orchestration 2.6 Configuring NetScaler 10.5 Load Balancing with StoreFront 3.0 and NetScaler Gateway for Last Updated: June 04, 2015 Contents Introduction... 3 Configure the NetScaler load balancer certificates... 3 To

More information

EdgeConnect for Amazon Web Services (AWS)

EdgeConnect for Amazon Web Services (AWS) Silver Peak Systems EdgeConnect for Amazon Web Services (AWS) Dinesh Fernando 2-22-2018 Contents EdgeConnect for Amazon Web Services (AWS) Overview... 1 Deploying EC-V Router Mode... 2 Topology... 2 Assumptions

More information

ADVANCE WINDOWS 2008 NETWORK MANAGEMENT

ADVANCE WINDOWS 2008 NETWORK MANAGEMENT ADVANCE WINDOWS 2008 NETWORK MANAGEMENT UNIT I DNS Name Resolution- DNS Components- Understanding How a DNS Query Works- Understanding How Caching Works- Exploring Automatic Name Resolution in Local Networks-

More information

Citrix SCOM Management Pack 1.4 for ShareFile

Citrix SCOM Management Pack 1.4 for ShareFile Citrix SCOM Management Pack 1.4 for ShareFile Nov 27, 2017 Citrix SCOM Management Pack for ShareFile is an availability and performance management solution that extends end-toend service monitoring capabilities

More information

Course 20410D: Installing and Configuring Windows Server 2012

Course 20410D: Installing and Configuring Windows Server 2012 Sales 406/256-5700 Support 406/252-4959 Fax 406/256-0201 Evergreen Center North 1501 14 th St West, Suite 201 Billings, MT 59102 Course 20410D: Installing and Configuring Windows Server 2012 Course Specifications

More information

Step by Step DHCP Server Installation & configuration on Microsoft Windows Server 2016

Step by Step DHCP Server Installation & configuration on Microsoft Windows Server 2016 Step by Step DHCP Server Installation & configuration on Microsoft Windows Server 2016 Hussain Shakir LinkedIn: https://www.linkedin.com/in/mrhussain Twitter: https://twitter.com/hshakir_ms Blog: http://mstechguru.blogspot.ae/

More information

Lab Configuring the PIX Security Appliance as a DHCP Server

Lab Configuring the PIX Security Appliance as a DHCP Server Lab 8.5.3 Configuring the PIX Security Appliance as a DHCP Server Objective Scenario Topology Estimated Time: 15 minutes Number of Team Members: Two teams with four students per team. In this lab, students

More information

IPAM - CREATE AND MANAGE IP BLOCKS AND RANGES

IPAM - CREATE AND MANAGE IP BLOCKS AND RANGES IPAM - CREATE AND MANAGE IP BLOCKS AND RANGES Address space management In IPAM, IP address blocks are large chunks of IP addresses that are used for organization of address space. IP address ranges are

More information

IPv6 Transition Technologies (TechRef)

IPv6 Transition Technologies (TechRef) Tomado de: http://technet.microsoft.com/en-us/library/dd379548.aspx IPv6 Transition Technologies (TechRef) Updated: January 7, 2009 IPv6 Transition Technologies Protocol transitions are not easy, and the

More information

Lab - Connect to a Router for the First Time

Lab - Connect to a Router for the First Time Introduction In this lab, you will configure basic settings on a wireless router. Recommended Equipment A computer with Windows installed An Ethernet NIC installed Wireless router Ethernet patch cable

More information

MCSA Windows Server A Success Guide to Prepare- Networking with Windows Server edusum.com

MCSA Windows Server A Success Guide to Prepare- Networking with Windows Server edusum.com 70-741 MCSA Windows Server 2016 A Success Guide to Prepare- Networking with Windows Server 2016 edusum.com Table of Contents Introduction to 70-741 Exam on Networking with Windows Server 2016... 2 Microsoft

More information

Best Practices for Configuring the Dell Compellent SMI-S Provider for Microsoft SCVMM 2012

Best Practices for Configuring the Dell Compellent SMI-S Provider for Microsoft SCVMM 2012 Dell Compellent Storage Center Best Practices for Configuring the Dell Compellent SMI-S Provider for Microsoft SCVMM 2012 Document Revisions Date Revision Comments 04/11/2012 A First Revision THIS BEST

More information

Intel Unite. Enterprise Test Environment Setup Guide

Intel Unite. Enterprise Test Environment Setup Guide Intel Unite Enterprise Test Environment Setup Guide Intel Unite Enterprise Test Environment Setup Guide Page 1 of 49 October 2015 Legal Disclaimers & Copyrights All information provided here is subject

More information

Amazon AppStream 2.0: SOLIDWORKS Deployment Guide

Amazon AppStream 2.0: SOLIDWORKS Deployment Guide 2018 Amazon AppStream 2.0: SOLIDWORKS Deployment Guide Build an Amazon AppStream 2.0 environment to stream SOLIDWORKS to your users June 2018 https://aws.amazon.com/appstream2/ 1 Welcome This guide describes

More information

ForeScout Extended Module for MobileIron

ForeScout Extended Module for MobileIron Version 1.8 Table of Contents About MobileIron Integration... 4 Additional MobileIron Documentation... 4 About this Module... 4 How it Works... 5 Continuous Query Refresh... 5 Offsite Device Management...

More information

Monitoring Windows Systems with WMI

Monitoring Windows Systems with WMI Monitoring Windows Systems with WMI ScienceLogic version 8.8.1 Table of Contents Introduction 4 Monitoring Windows Devices in the ScienceLogic Platform 5 What is SNMP? 5 What is WMI? 5 PowerPacks 5 Configuring

More information

PassReview. PassReview - IT Certification Exams Pass Review

PassReview.  PassReview - IT Certification Exams Pass Review PassReview http://www.passreview.com PassReview - IT Certification Exams Pass Review Exam : 70-741 Title : Networking with Windows Server 2016 Vendor : Microsoft Version : DEMO Get Latest & Valid 70-741

More information

AutomaTech Application Note July 2015

AutomaTech Application Note July 2015 Installing Active Directory Domain Services (AD DS), Remote Desktop Services (RDS), GE Advantage Licensing, and GE Proficy SCADA Thin Clients on Windows Server 2012 R2 SUMMARY This application note provides

More information

DHCPv6 Overview 1. DHCPv6 Server Configuration 1

DHCPv6 Overview 1. DHCPv6 Server Configuration 1 Table of Contents DHCPv6 Overview 1 Introduction to DHCPv6 1 DHCPv6 Address/Prefix Assignment 1 Rapid Assignment Involving Two Messages 1 Assignment Involving Four Messages 2 Address/Prefix Lease Renewal

More information

INF220x Security Practical Exercises

INF220x Security Practical Exercises INF220x Security Practical Exercises This course comes with a virtual lab environment where you can practice what you learn. In most cases, the userid is Adatum\Administrator and the password is Pa55w.rd,

More information

Silver Peak EC-V and Microsoft Azure Deployment Guide

Silver Peak EC-V and Microsoft Azure Deployment Guide Silver Peak EC-V and Microsoft Azure Deployment Guide How to deploy an EC-V in Microsoft Azure 201422-001 Rev. A September 2018 2 Table of Contents Table of Contents 3 Copyright and Trademarks 5 Support

More information

Step by Step Journey to Migration Exchange 2010 sp3 to Exchange Server 2016 Part-I

Step by Step Journey to Migration Exchange 2010 sp3 to Exchange Server 2016 Part-I Step by Step Journey to Migration Exchange 2010 sp3 to Exchange Server 2016 Part-I Hussain Shakir LinkedIn: https://www.linkedin.com/in/mrhussain Twitter: https://twitter.com/hshakir_ms Blog: http://mstechguru.blogspot.com/

More information

MOC 20410B: Installing and Configuring Windows Server 2012

MOC 20410B: Installing and Configuring Windows Server 2012 MOC 20410B: Installing and Configuring Windows Server 2012 Course Overview This course is part one of a three-part series that provides the skills and knowledge necessary to implement a core Windows Server

More information

Windows Server : Installing and Configuring Windows Server 2012 R2. Upcoming Dates. Course Description. Course Outline

Windows Server : Installing and Configuring Windows Server 2012 R2. Upcoming Dates. Course Description. Course Outline Windows Server 2012 20410: Installing and Configuring Windows Server 2012 R2 Get the skills and knowledge necessary to implement a core Windows Server 2012 R2 infrastructure in this 5-day class. You'll

More information

Running the Setup Web UI

Running the Setup Web UI The Cisco Prime IP Express setup interview in the web UI takes you through a series of consecutive pages to set up a basic configuration. For an introduction and details on the basic navigation for the

More information

User Guide. Version R95. English

User Guide. Version R95. English Discovery User Guide Version R95 English September 18, 2017 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS

More information

LevelOne FBR User s Manual. 1W, 4L 10/100 Mbps ADSL Router. Ver

LevelOne FBR User s Manual. 1W, 4L 10/100 Mbps ADSL Router. Ver LevelOne FBR-1416 1W, 4L 10/100 Mbps ADSL Router User s Manual Ver 1.00-0510 Table of Contents CHAPTER 1 INTRODUCTION... 1 FBR-1416 Features... 1 Package Contents... 3 Physical Details... 3 CHAPTER 2

More information

Best Practices for Migrating Servers to Microsoft Azure with PlateSpin Migrate

Best Practices for Migrating Servers to Microsoft Azure with PlateSpin Migrate White Paper PlateSpin Transformation Manager PlateSpin Migrate Best Practices for Migrating Servers to Microsoft Azure with PlateSpin Migrate Updated for PlateSpin Transformation Manager 1.1 and PlateSpin

More information

"Charting the Course to Your Success!" MOC D Installing and Configuring Windows Server Course Summary

Charting the Course to Your Success! MOC D Installing and Configuring Windows Server Course Summary Description Course Summary Get hands-on instruction and practice installing and configuring Windows Server 2012, including Windows Server 2012 R2, in this five-day Microsoft Official Course. This course

More information

Printopia 3 ENTERPRISE ADMINISTRATION GUIDE. Revision 10 October 9,

Printopia 3 ENTERPRISE ADMINISTRATION GUIDE. Revision 10 October 9, Printopia 3 ENTERPRISE ADMINISTRATION GUIDE Revision 10 October 9, 2017 www.decisivetactics.com/printopiapro Legal Copyright 2012-2017 Decisive Tactics, Inc. Printopia is a registered trademark of Decisive

More information

PAN 802.1x Connector Application Installation Guide

PAN 802.1x Connector Application Installation Guide PAN 802.1x Connector Application Installation Guide Version 1.2 "Copyright CodeCentrix. All rights reserved 2015. Version 1.2 Contact Information CodeCentrix www.codecentrix.co.za/contact Email: info@codecentrix.co.za

More information

Course Outline. Installing and Configuring Windows Server 2012 LAB lab - Installing and Configuring Windows Server 2012 LAB

Course Outline. Installing and Configuring Windows Server 2012 LAB lab - Installing and Configuring Windows Server 2012 LAB Course Outline Installing and Configuring Windows Server 02 Jan 2018 Contents 1. Course Objective 2. Expert Instructor-Led Training 3. ADA Compliant & JAWS Compatible Platform 4. State of the Art Educator

More information

MS-20410A: Installing and Configuring Windows Server 2012

MS-20410A: Installing and Configuring Windows Server 2012 MS-20410A: Installing and Configuring Windows Server 2012 Introduction This version of this course 20410A utilizes pre-release software in the virtual machines for the labs. The five day course is part

More information

Symbol 8100 Client User Guide. Version 4.0. Revised 9/19/03

Symbol 8100 Client User Guide. Version 4.0. Revised 9/19/03 Symbol 8100 Client User Guide Version 4.0 Revised 9/19/03 Copyright 2001 by Wavelink Corporation All rights reserved. Wavelink Corporation 11332 NE 122nd Way Suite 300 Kirkland, Washington 98034 Telephone:

More information

Software Installations for Components

Software Installations for Components Install Microsoft Windows Server, page 1 Install VMware Tools, page 3 Configure Network Adapters for Unified CCE Call Server and Unified CCE Data Server, page 4 Set Persistent Static Routes, page 5 Run

More information

Course CLD211.5x Microsoft SharePoint 2016: Search and Content Management

Course CLD211.5x Microsoft SharePoint 2016: Search and Content Management Course CLD211.5x Microsoft SharePoint 2016: Search and Content Management Module 1 Lab - Configure Enterprise Search Introduction This document contains the detailed, step-by-step lab instructions for

More information

ScopTEL TM IP PBX Software. DNS Server Configuration Wizard

ScopTEL TM IP PBX Software. DNS Server Configuration Wizard ScopTEL TM IP PBX Software DNS Server Configuration Wizard Network Module - ifconfig A newly installed server uses DHCP to get an IP address from a DHCP server on the network so make sure the eth0 interface

More information

Installing and Configuring Windows Server 2012

Installing and Configuring Windows Server 2012 Installing and Configuring Windows Server 2012 Course # Exam: Prerequisites Technology: Delivery Method: Length: 20697-1 70-697 Windows Instructor-led (classroom) 5 Days Overview About this Course This

More information

Installing and Configuring Windows Server 2012

Installing and Configuring Windows Server 2012 Course 20410 : Installing and Configuring Windows Server 2012 Page 1 of 6 Installing and Configuring Windows Server 2012 Course 20410: 4 days; Instructor-Led Introduction The course is part one of a series

More information

Chapter 1 Introduction to TCP/IP

Chapter 1 Introduction to TCP/IP Chapter 1 Introduction to TCP/IP Published: November 02, 2004 Updated: April 16, 2007 Writer: Joe Davies 1 Abstract This chapter introduces Transmission Control Protocol/Internet Protocol (TCP/IP), both

More information

Installing and Configuring Windows Server 2012

Installing and Configuring Windows Server 2012 20410 - Installing and Configuring Windows Server 2012 Duration: 5 days Course Price: $2,975 Software Assurance Eligible Course Description Course Overview Get hands-on instruction and practice installing

More information

The OSI model of network communications

The OSI model of network communications The OSI model of network communications The TCP/IP networking layers are mapped to the OSI model The Next Generation TCP/IP stack IPv6 is supported natively in Windows Vista, Windows 7, Windows Server

More information

ForeScout Extended Module for Symantec Endpoint Protection

ForeScout Extended Module for Symantec Endpoint Protection ForeScout Extended Module for Symantec Endpoint Protection Version 1.0.0 Table of Contents About the Symantec Endpoint Protection Integration... 4 Use Cases... 4 Additional Symantec Endpoint Protection

More information

Answer: B. Answer: D. Answer: C

Answer: B. Answer: D. Answer: C Question: 1 Your company has a single Active Directory forest that has an Active Directory domain named na.contoso.com. A server named Server1 runs the DNS server role. You notice stale resource records

More information