Book Image

MCSA Windows Server 2016 Certification Guide: Exam 70-741

By : Sasha Kranjac, Vladimir Stefanovic
Book Image

MCSA Windows Server 2016 Certification Guide: Exam 70-741

By: Sasha Kranjac, Vladimir Stefanovic

Overview of this book

MCSA: Windows Server 2016 is one of the most sought-after certifications for IT professionals which include working with Windows Server and performing administrative tasks around it. It targets Exam 70-740, Exam 70-741, Exam 70-742 and Exam 70-743 certifications and the demand for these certifications is increasingly high. This book will start with installation, upgrade and migration to Windows Server 2016, cover imaging and deployment and proceed with High Availability and Clustering. Then we will deep dive into fundamental concepts like Core networking, DNS, DHCP, Storage and proceed to Hyper-V, Network Access and Distributed File System. It will also explain Advanced Networking topics such as Software Defined Networking and High-Performance Networking. Furthermore, it will also cover advanced Identity topics in Windows Server 2016 such as Active Directory installation and configuration, Group Policy, Active Directory Certificate Services, and Active Directory Federation Services and Rights Management. Towards the end of this book, test questions and mock preparation items will help in preparing for the certifications with more ease. By the end of this book, you will be able to complete MCSA: Windows Server 2016 certification with more confidence.
Table of Contents (9 chapters)

Configuring routing

To be able to forward the packets from one network to the other, Windows Server 2016 can act as a router for both IPv4 and IPv6 traffic, thanks to the built-in server role. In this way, the Windows Server 2016 computer can act on the network in a similar way to a hardware router device, with additional, Windows operating system-specific functionality. To be able to route traffic to and from different networks or subnets, you will need two or more physical network adapters.

Before you can configure a Windows Server 2016 as a router, you need to install a supporting role. To install a server role that supports routing, perform the following steps:

  1. Open Server Manager.
  2. Click on the Manage menu and choose Add Roles and Features.
  3. On the Before You Begin screen, click on Next. To skip this page next time, select Skip this page by default.
  1. On the Installation Type page, select Role-based or feature-based installation, and then click on Next.
  2. On the Server Selection page, under Server Pool, make sure that the current server is selected. Alternatively, select the server on which you want to install the routing support role. Then, click on Next.
  3. On the Server Role page, select the Remote Access role; then, click on Next:
  1. On the Features page, click on Next.
  2. On the Remote Access page, read the information and then click on Next.
  1. On the Role Services page, select Routing, and then click on Add Features if Add Roles and Features Wizard prompts you to install features required for the routing role:
  1. The wizard automatically selects the DirectAccess and VPN (RAS) role and Web Server Role (IIS); then, click on Next.
  2. On the Role services page for Web Server Role (IIS), click on Next.
  3. On the Confirmation page, click on Install.
  4. When the installation finishes, observe the installation progress page and click on Close.
  5. After the installation finishes, observe the Server Manager window and the yellow triangle containing an exclamation mark near the flag.
  1. Click on the flag and yellow triangle:
  1. The menu shows that the installed DirectAccess and VPN role needs post-deployment configuration in order to be functional.

To configure Windows Server 2016 functionality as a router, perform the following steps:

  1. Open Server Manager.
  2. Click on the Tools menu and choose Routing and Remote Access.
  3. The Routing and Remote Access window opens. Right-click on a server that you want to configure and choose Configure and Enable Routing and Remote Access.
  4. The Routing and Remote Access Server Setup Wizard starts. Then, click on Next.
  1. On the Configuration page, select Custom configuration, and then click on Next:
  1. On the Custom Configuration page, select LAN routing, and then click on Next:

  1. Click on Finish.
  2. Now, wait a few seconds; when the Routing and Remote Access dialog box appears, click on Start Service.

To enable a routing protocol on a Windows Server 2016 operating system, complete the following steps:

  1. Open Server Manager.
  2. Click on the Tools menu and choose Routing and Remote Access.
  3. Under the IPv4 node, right-click on General and choose New Routing Protocol…:
  1. Select RIP Version 2 for Internet Protocol and click on OK:
  1. Note that you will not be able to add the RIP protocol if there are no usable network interfaces installed on a computer. Right-click on RIP and select New Interface….
  2. Choose a network interface to enable RIP on and click on OK; a RIP Properties page opens.
  3. You can accept the defaults, or make the desired changes, and then click on OK to enable the RIP routing protocol on an applicable network interface.

Windows Server 2016 supports Border Gateway Protocol (BGP). BGP is a dynamic routing protocol, which means that it "learns" the routes between connected sites. To install BGP support in the Windows Server 2016 operating system, you must enable the support for each tenant using the PowerShell Enable-RemoteAccessRoutingDomain command.

The following example demonstrates how to install RAS in multitenancy mode with VPN, RAS, and BGP support:

$Sample_RoutingDomain = "SampleTenant"
Install-RemoteAccess -MultiTenancy
Enable-RemoteAccessRoutingDomain -Name $Sample_RoutingDomain -Type All -PassThru

To enable BGP only, without multitenancy capabilities, use the following PowerShell command:

Install-RemoteAccess –VpnType RoutingOnly