SlideShare a Scribd company logo
MCTS Guide to Configuring
Microsoft Windows Server 2008
      Active Directory


Chapter 8: Introduction to Windows
            Networking
Objectives
• Describe networks using Windows terminology
• Configure and troubleshoot TCP/IP protocols
• Describe IPv6 addressing




MCTS Windows Server 2008 Active Directory       2
Windows Networking Terminology
•   Network media
•   Network Interface Card (NIC)
•   NIC driver
•   Hub or switch
•   Router
•   Network protocol
•   Client
•   Service
•   Network
•   Internetwork
•   Network connection
•   Network discovery
MCTS Windows Server 2008 Active Directory   3
The Network and Sharing Center
• Can create network connections, view the status of
  existing connections, and troubleshoot network
  problems
• Additionally, you can enable and disable the
  discovery of other computers on the network, and
  configure folder sharing
• Three sections:
    – The network map
    – Sharing and Discovery
    – Tasks


MCTS Windows Server 2008 Active Directory              4
The Network Map
• The network map displays a graphical view of the
  network from your computer’s perspective
• Upon connection to a network, Windows asks you
  to select the type of network you are connecting to:
  Home, Work, or Public
• Based on this choice, Windows designates your
  network as one of the following types:
    – Public
    – Private
    – Domain


MCTS Windows Server 2008 Active Directory                5
The Network Map (cont.)
• Devices that run Windows Server 2003 or Windows
  XP can’t be placed on the map, because they lack
  the necessary Link Layer Topology Discovery
  (LLTD) protocol
• Other reasons that a device can’t be placed:
    – A computer running Vista connected to a network designated
      as public
    – LLTD is disabled
    – Network discovery is turned off
    – Firewall settings on the computer or network are preventing
      Windows from detecting the computer
    – The NIC drivers don’t support LLTD


MCTS Windows Server 2008 Active Directory                           6
The Network Map (cont.)




MCTS Windows Server 2008 Active Directory   7
The Sharing and Discovery Section
• You can enable and disable the following functions
  in the Sharing and Discovery section:
    –   Network discovery
    –   File sharing
    –   Public folder sharing
    –   Printer sharing
• This section can also display information about
  what’s currently being shared on the computer




MCTS Windows Server 2008 Active Directory              8
The Tasks Section
• The Tasks section has links to perform the
  following tasks:
    –   View computers and devices
    –   Connect to a network
    –   Set up a connection or network
    –   Manage network connections
    –   Diagnose and repair




MCTS Windows Server 2008 Active Directory      9
TCP/IP Operation and Configuration
• TCP/IP is the default network protocol installed on
  Windows computers. Windows Server 2008 and
  Vista are the first two to have IPv4 and IPv6
  installed by default
• TCP/IP is a suite of protocols:
    –   Domain Name System (DNS)
    –   Dynamic Host Configuration Protocol (DHCP)
    –   Transmission Control Protocol (TCP)
    –   User Datagram Protocol (UDP)
    –   Internet Protocol version 4 (IPv4)
    –   Internet Control Message Protocol (ICMP)
    –   Address Resolution Protocol (ARP)

MCTS Windows Server 2008 Active Directory               10
TCP/IP Communication
• When a user opens a web page, a DNS request is sent to
  resolve the website name to an IP address
• Once the client has the IP address of the website, it then
  determines whether the address is on the same network or a
  different network
• If the client is on the same network, the client requests the
  MAC address of the Web server. If not, the client sends the
  request for the Web page to a router or default gateway
• Routers then forward the request to other routers, until the
  request reaches a router connected to the Web server’s
  network


MCTS Windows Server 2008 Active Directory                    11
IPv4 Address Configuration
• IP addresses are 32-bit numbers divided into four 8-bit
  values called octets, each octet can have a value from 0 to
  255
• Subnet masks are also 32-bit numbers, that serve to
  determine how many bits are allocated to a network ID, and
  how many are allocated to a host ID
• When written in binary, 1’s in the subnet mask that
  correspond to bits in the IP address mean the matching bit
  locations are part of the network ID
• 192.168.1.0 = 11000000.10101000.00000001.00000000
  255.255.255.0 = 11111111.11111111.11111111.00000000
• Above shows 192.168.1 as the network ID, .0 as the host ID

MCTS Windows Server 2008 Active Directory                   12
Assigning IP Address Classes
• Three classes of IP addresses can be assigned:
  Class A, Class B, or Class C




MCTS Windows Server 2008 Active Directory          13
IP Address Assignment Rules
• Rules for IP address assignment
    – Every IP address configuration must have a subnet mask
    – All hosts on the same physical network must share the same
      network ID in their IP addresses
    – All host IDs on the same network must be unique
    – You can’t assign an IP address in which all the host ID bits are
      binary 0
    – You can’t assign an IP address in which all the host ID bits are
      binary 1
    – Computers assigned different network IDs can communicate
      only if a router is present to forward packets



MCTS Windows Server 2008 Active Directory                            14
Subnetting
• Default subnet mask for an address class does not always
  apply
• Bits can be borrowed from the host ID portion of an address
  class in order to create additional “sub-networks”
• Example: 172.31.0.0 subnetted to 255.255.255.0
    – Creates 256 new networks, with 254 host IDs
    – Rule for number of networks = 2n
    – Rule for number of hosts = 2n – 2
• An IP network is referred to as a broadcast domain
• Creating multiple subnets can be beneficial in large
  environments to reduce the amount of traffic (broadcast
  traffic specifically) computers are exposed to

MCTS Windows Server 2008 Active Directory                   15
Configuring Multiple IP Addresses
• Windows OSs allow assigning multiple IP
  addresses to a single network connection, via
  Advanced TCP/IP settings dialog box
• Multiple IP addresses can be useful in these
  situations:
    – The computer is hosting a service that must be accessed by
      using different addresses
    – The computer is connected to a physical network that hosts
      multiple IP networks




MCTS Windows Server 2008 Active Directory                          16
Configuring the Default Gateway
• A default gateway is almost always used in IP
  configurations
• The default gateway can not be in a network ID
  outside of the host’s network ID
• Just as you can configure multiple IP addresses,
  multiple gateways can be configured
• Windows attempts to select the gateway with the
  best metric automatically
• Metric is a value assigned to the gateway based on
  the speed of the interface used to access the
  gateway
MCTS Windows Server 2008 Active Directory          17
Using Multihomed Servers
• A multihomed server has two or more NICs, each
  attached to a different IP network
• Each NIC requires its own IP address for the
  network to which it’s connected
• Reasons for this type of configuration:
    – A server is accessed by internal clients and external clients
    – A server provides resources for computers on multiple subnets
      of the network
    – A server is configured as a router or VPN server
• Multihomed servers can run into routing issues due
  to multiple default gateways being configured
MCTS Windows Server 2008 Active Directory                         18
Using the Route Command
• Windows computers maintain a routing table that dictates
  where a packet should be sent, based on the packet’s
  destination address
• Typing route print displays the routing table
• Results are displayed in five columns:
    –   Network Destination
    –   Netmask
    –   Gateway
    –   Interface
    –   Metric
• Route command can be used to change the routing table,
  and to fix issues caused by using a multihomed server

MCTS Windows Server 2008 Active Directory                    19
Using the Route Command (cont.)




MCTS Windows Server 2008 Active Directory   20
IP Configuration Command-Line Tools
• Other command line tools available to assist with
  IP configuration:
    –   Ping
    –   Ipconfig
    –   Arp
    –   Tracert
    –   Nslookup
• Additional tools are available, but are generally
  used to verify correct IP configuration settings and
  connectivity

MCTS Windows Server 2008 Active Directory                21
The Ping Command
• Ping is used to test the connectivity between two
  computers, by sending an ICMP Echo Request
  packet
• If the destination receives the ICMP Echo Request
  and can respond, it’ll reply with an ICMP Echo
  Reply packet
    – Example: Reply from 192.168.100.201 bytes=32 time=<1ms
      TTL=128
• To see the options available for the ping command,
  type ping /? at the command prompt

MCTS Windows Server 2008 Active Directory                      22
The Ipconfig Command
• Ipconfig is usually used to display a computers IP
  address settings, but it can perform other tasks
  based on the options given:
    –   /all
    –   /release
    –   /renew
    –   /displaydns
    –   /flushdns
    –   /registerdns




MCTS Windows Server 2008 Active Directory              23
The Arp Command
• The Arp command displays or makes changes to
  the Address Resolution Protocol (ARP) cache,
  which contains IP address – MAC address pairs
• Can add static ARP entries
• Some options for ARP command:
    – -a, -g: displays current ARP entries
    – -d: deletes ARP entries
    – -s: adds a static ARP entry




MCTS Windows Server 2008 Active Directory         24
The Tracert Command
• Usually called “trace route” because it displays the
  route packets take between two computers
• Works by sending out packets with a TTL value
  starting at 1 and increases the value until the
  destination is reached
• Useful for troubleshooting the routing topology of a
  complex network and finding bottlenecks




MCTS Windows Server 2008 Active Directory            25
The Nslookup Command
• Used to test and troubleshoot DNS operation
• Can be used in command mode or interactive
  mode
• In command mode, you type “nslookup host” to
  query for the host’s address
• In interactive mode, you can simply type host to get
  the host’s address
• Typing a question mark at the interactive mode
  prompt gives a list of available options


MCTS Windows Server 2008 Active Directory           26
Managing Protocols
• Each network connection in Windows Server 2008 has
  protocols and services associated with it
• Services / protocols can be unbound (disabled) or bound
  (enabled) to a connection in the connection’s Properties
  dialog box, by selecting or deselecting the check box next to
  the service or protocol
• List of services / protocols
    –   Client for Microsoft Networks
    –   QoS Packet Scheduler
    –   File and Printer Sharing for Microsoft Networks
    –   Internet Protocol Version 6 (TCP/IPv6)
    –   Internet Protocol Version 4 (TCP/IPv4)
    –   Link-Layer Topology Discovery Mapper I/O Driver
    –   Link-Layer Topology Discovery Responder

MCTS Windows Server 2008 Active Directory                     27
Managing Protocols (cont.)




MCTS Windows Server 2008 Active Directory   28
Network Bindings
• By default, every installed service and protocol is
  bound to every network connection
• Protocol bindings can be rearranged by selecting
  the protocol to be moved, and then by clicking the
  up or down arrows in the Adapters and Bindings
  tab
• Network connections are then prioritized in the
  order shown under this tab



MCTS Windows Server 2008 Active Directory               29
Network Bindings (cont.)




MCTS Windows Server 2008 Active Directory   30
Network Providers
• A network provider is a software component that
  allows Windows applications to connect to
  resources on other computers
• Different OSs may require different procedures,
  which requires different network providers
• Network providers exist for Windows networks,
  virtual networks (VMware), Novell networks, Linux
  networks, and more
• Performs actions such as making and breaking
  network connections

MCTS Windows Server 2008 Active Directory             31
Network Providers (cont.)




MCTS Windows Server 2008 Active Directory   32
Internet Protocol Version 6
• Previous Windows OSs use a Dual-stack
  architecture, meaning that IPv4 and IPv6 use
  separate implementations of the protocols in the
  TCP/IP suite
• Windows Server 2008 and Vista use dual-IP layer
  architecture, which means that the IP protocol is
  the only component of the TCP/IP suite that’s
  different in IPv6



MCTS Windows Server 2008 Active Directory             33
Internet Protocol Version 6 (cont.)




                                Dual-stack architecture


MCTS Windows Server 2008 Active Directory                 34
Internet Protocol Version 6 (cont.)




                             Dual-IP layer architecture

MCTS Windows Server 2008 Active Directory                 35
IPv6 Overview
• Originally named IPng (IP next generation), IPv6
  was created in 1994 by the Internet Engineering
  Task Force (IETF)
• IPv6 includes the following improvements
    –   Large address space
    –   Hierarchical address space
    –   Autoconfiguration
    –   Built-in Quality of Server (QoS) support
    –   Built-in security




MCTS Windows Server 2008 Active Directory            36
IPv6 Address Structure
• Subnetting as done in IPv4 is no longer applicable
• Uses 128 bits, instead of IPv4’s 32 bits, for an
  address
• IPv6 addresses are written as eight 16-bit
  hexadecimal numbers separated by colons:
    – Fe80:0:0:0:18ff:0024:8e5a:60
    – Things to note about IPv6 addresses:
         • One or more consecutive 0 values can be written as a double
           colon, but only one double colon can exist in an IPv6 address
         • Leading 0s are optional
• Addresses that start with fe80 are called link-local
  addresses and are self-configuring
MCTS Windows Server 2008 Active Directory                                  37
The IPv6 Host ID
• Host ID of an IPv6 is typically 64 bits and uses the
  interface’s 48 bit MAC address for a large portion
  of the address, as well as a 16 bit value of FF-FE
  that is inserted after the first 24 bits of the MAC
  address
• First two zeros in a MAC address are replaced with
  02
• This autoconfigured 64-bit host ID is referred to as
  an Extended Unique Identifier (EUI)-64 interface ID
• Windows Server 2008 and Vista don’t use EUI-64
  by default

MCTS Windows Server 2008 Active Directory            38
Subnetting with IPv6
• Subnetting will still exist in IPv6, but due to the
  large address space available, most address
  allocations will have a /48 prefix
• This leaves 80 bits for assigning subnets and host
  IDs
• 80 bits allows 16 subnet bits (since the interface ID
  requires 64 bits), allowing up to 65,536 subnets




MCTS Windows Server 2008 Active Directory             39
Subnetting with IPv6 (cont.)




                          Typical IPV6 address structure




MCTS Windows Server 2008 Active Directory                  40
Chapter Summary
• The Network and Sharing Center can view the status of
  network connections and configure their properties
• The network map is a visual representation of computers
  and connecting devices in your network
• TCP/IPv4, the predominant networking protocol in use today,
  is actually a suite of protocols and services, such as DNS,
  DHCP, TCP, IPv4, ICMP, and ARP, among others
• TCP/IP communication is a multi-step process that often
  involves the use of several different protocols in the TCP/IP
  suite



MCTS Windows Server 2008 Active Directory                    41
Chapter Summary (cont.)
• An IP address is a 32-bit dotted decimal number
  divided into four octets. Every IP address must
  have a subnet mask to indicate which part of the
  address is the network ID and which part is the
  host ID. Three IP classes exist: A, B, C
• Subnetting uses a modified subnet mask to divide
  a large network into smaller, more manageable
  networks
• You can configure multiple IP addresses and
  default gateways on a network connection

MCTS Windows Server 2008 Active Directory            42
Chapter Summary (cont.)
• Several command-line tools are available for
  checking status and troubleshooting IP
  configuration, including Ping, Ipconfig, Arp, Tracert,
  and Nslookup




MCTS Windows Server 2008 Active Directory              43

More Related Content

PPT
Mcts chapter 2
PPT
Mcts chapter 3
PPT
Mcts chapter 5
PPT
Mcts chapter 6
PPT
Mcts chapter 1
PPT
Mcts chapter 4
PPT
Chapter01 Introduction To Windows Server 2003
PPTX
Understanding the Windows Server Administration Fundamentals (Part-1)
Mcts chapter 2
Mcts chapter 3
Mcts chapter 5
Mcts chapter 6
Mcts chapter 1
Mcts chapter 4
Chapter01 Introduction To Windows Server 2003
Understanding the Windows Server Administration Fundamentals (Part-1)

What's hot (20)

PDF
Windows Server 2003 Administration
PPTX
Windows server
PDF
Microsoft Windows Server 2012 R2 Overview - Presented by Atidan
PPTX
Windows 2008 basics
PPTX
MCSA Installing & Configuring Windows Server 2012 70-410
PPT
Asish verma
PDF
Configuring and administrate server
PPTX
Windows Server 2008 R2
PPTX
WINDOWS SERVER 2008
PPTX
Understanding the Windows Server Administration Fundamentals (Part-2)
PDF
Server 2008 r2 ppt
PPTX
What's New in Windows Server 2012 R2
PDF
Windows Server 2012
PPTX
Why Upgrade To Windows Server 2012
PPTX
Microsoft Offical Course 20410C_02
PPTX
Windows Server 2008 R2 Overview
PPTX
Window server editions
PPT
70-410 Installing and Configuring Windows Server 2012
PPTX
Microsoft Offical Course 20410C_13
PPT
Windows Server 2008 R2 Overview
Windows Server 2003 Administration
Windows server
Microsoft Windows Server 2012 R2 Overview - Presented by Atidan
Windows 2008 basics
MCSA Installing & Configuring Windows Server 2012 70-410
Asish verma
Configuring and administrate server
Windows Server 2008 R2
WINDOWS SERVER 2008
Understanding the Windows Server Administration Fundamentals (Part-2)
Server 2008 r2 ppt
What's New in Windows Server 2012 R2
Windows Server 2012
Why Upgrade To Windows Server 2012
Microsoft Offical Course 20410C_02
Windows Server 2008 R2 Overview
Window server editions
70-410 Installing and Configuring Windows Server 2012
Microsoft Offical Course 20410C_13
Windows Server 2008 R2 Overview
Ad

Viewers also liked (17)

PPT
Mcts chapter 7
DOC
yogesh Resume
PDF
Mcts windows 7 configuring 70 680 study guide
PPT
Guide to Windows 7 - Managing Disks
PDF
FEA Report
PPT
7th ed ppt ch07
PPSX
10 robotic manufacturing systems
PPSX
Lecture Lesson 1 Windows 7 Configuration
PPTX
Introducing Widows 7
PPT
Guide to Windows 7 - Using the System Utilities
PDF
Chapter 1 exam 70-640 windows server 2008 active directory, config…
PPT
Intro to fea software
PPT
Guide To Windows 7 - Installing Windows 7
PDF
CHAPTER 1 Accounting and the Business Environment
PPT
Guide to Windows 7 - Managing File Systems
PPTX
Ansys Workbench Basics
PPTX
Windows 7 Features
Mcts chapter 7
yogesh Resume
Mcts windows 7 configuring 70 680 study guide
Guide to Windows 7 - Managing Disks
FEA Report
7th ed ppt ch07
10 robotic manufacturing systems
Lecture Lesson 1 Windows 7 Configuration
Introducing Widows 7
Guide to Windows 7 - Using the System Utilities
Chapter 1 exam 70-640 windows server 2008 active directory, config…
Intro to fea software
Guide To Windows 7 - Installing Windows 7
CHAPTER 1 Accounting and the Business Environment
Guide to Windows 7 - Managing File Systems
Ansys Workbench Basics
Windows 7 Features
Ad

Similar to Mcts chapter 8 (20)

PPT
chsadsadasdasdasdasdsadsadsadsadsadasda10.ppt
PDF
Advance Applied Networking with classes.
PPTX
CCN CEP.pptx
PPTX
Chapter 6 - Networking
PPTX
Microsoft Offical Course 20410C_05
PPTX
09 Systems Software Programming-Network Programming.pptx
PPT
Basics of Networking
PPTX
Addressing in networking (IP,MAC,Port addressing)
PDF
Chapter 4 internetworking [compatibility mode]
PPTX
Week 2 - Computer networks lab - ACU.pptx
PPT
Classless Interdomain Data Routing CIDR.ppt
PPTX
70-410_r2_lecture_slides_lehjhjkhjkhjhkjhjkhkjsson_10.pptx
PPTX
Configuring IPv4 and IPv6 Addressing to STEM
PDF
ccna 1 v5.0 itn practice final exam answers
PPTX
Internet architecture protocol
PDF
Ccnav5.org ccna 1-v50_itn_practice_final_exam_answers
PDF
Lecture 2 -_understanding_networks_2013
PPTX
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
PPT
chapter-4-networking hjgjjgj did hfhhfhj
chsadsadasdasdasdasdsadsadsadsadsadasda10.ppt
Advance Applied Networking with classes.
CCN CEP.pptx
Chapter 6 - Networking
Microsoft Offical Course 20410C_05
09 Systems Software Programming-Network Programming.pptx
Basics of Networking
Addressing in networking (IP,MAC,Port addressing)
Chapter 4 internetworking [compatibility mode]
Week 2 - Computer networks lab - ACU.pptx
Classless Interdomain Data Routing CIDR.ppt
70-410_r2_lecture_slides_lehjhjkhjkhjhkjhjkhkjsson_10.pptx
Configuring IPv4 and IPv6 Addressing to STEM
ccna 1 v5.0 itn practice final exam answers
Internet architecture protocol
Ccnav5.org ccna 1-v50_itn_practice_final_exam_answers
Lecture 2 -_understanding_networks_2013
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
chapter-4-networking hjgjjgj did hfhhfhj

Recently uploaded (20)

PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Hybrid model detection and classification of lung cancer
PPTX
Tartificialntelligence_presentation.pptx
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Heart disease approach using modified random forest and particle swarm optimi...
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
Approach and Philosophy of On baking technology
PDF
WOOl fibre morphology and structure.pdf for textiles
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
PDF
Mushroom cultivation and it's methods.pdf
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
Univ-Connecticut-ChatGPT-Presentaion.pdf
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
NewMind AI Weekly Chronicles - August'25-Week II
Hybrid model detection and classification of lung cancer
Tartificialntelligence_presentation.pptx
Unlocking AI with Model Context Protocol (MCP)
A comparative analysis of optical character recognition models for extracting...
Heart disease approach using modified random forest and particle swarm optimi...
Encapsulation_ Review paper, used for researhc scholars
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Approach and Philosophy of On baking technology
WOOl fibre morphology and structure.pdf for textiles
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
Mushroom cultivation and it's methods.pdf
Digital-Transformation-Roadmap-for-Companies.pptx
Group 1 Presentation -Planning and Decision Making .pptx
MIND Revenue Release Quarter 2 2025 Press Release
SOPHOS-XG Firewall Administrator PPT.pptx

Mcts chapter 8

  • 1. MCTS Guide to Configuring Microsoft Windows Server 2008 Active Directory Chapter 8: Introduction to Windows Networking
  • 2. Objectives • Describe networks using Windows terminology • Configure and troubleshoot TCP/IP protocols • Describe IPv6 addressing MCTS Windows Server 2008 Active Directory 2
  • 3. Windows Networking Terminology • Network media • Network Interface Card (NIC) • NIC driver • Hub or switch • Router • Network protocol • Client • Service • Network • Internetwork • Network connection • Network discovery MCTS Windows Server 2008 Active Directory 3
  • 4. The Network and Sharing Center • Can create network connections, view the status of existing connections, and troubleshoot network problems • Additionally, you can enable and disable the discovery of other computers on the network, and configure folder sharing • Three sections: – The network map – Sharing and Discovery – Tasks MCTS Windows Server 2008 Active Directory 4
  • 5. The Network Map • The network map displays a graphical view of the network from your computer’s perspective • Upon connection to a network, Windows asks you to select the type of network you are connecting to: Home, Work, or Public • Based on this choice, Windows designates your network as one of the following types: – Public – Private – Domain MCTS Windows Server 2008 Active Directory 5
  • 6. The Network Map (cont.) • Devices that run Windows Server 2003 or Windows XP can’t be placed on the map, because they lack the necessary Link Layer Topology Discovery (LLTD) protocol • Other reasons that a device can’t be placed: – A computer running Vista connected to a network designated as public – LLTD is disabled – Network discovery is turned off – Firewall settings on the computer or network are preventing Windows from detecting the computer – The NIC drivers don’t support LLTD MCTS Windows Server 2008 Active Directory 6
  • 7. The Network Map (cont.) MCTS Windows Server 2008 Active Directory 7
  • 8. The Sharing and Discovery Section • You can enable and disable the following functions in the Sharing and Discovery section: – Network discovery – File sharing – Public folder sharing – Printer sharing • This section can also display information about what’s currently being shared on the computer MCTS Windows Server 2008 Active Directory 8
  • 9. The Tasks Section • The Tasks section has links to perform the following tasks: – View computers and devices – Connect to a network – Set up a connection or network – Manage network connections – Diagnose and repair MCTS Windows Server 2008 Active Directory 9
  • 10. TCP/IP Operation and Configuration • TCP/IP is the default network protocol installed on Windows computers. Windows Server 2008 and Vista are the first two to have IPv4 and IPv6 installed by default • TCP/IP is a suite of protocols: – Domain Name System (DNS) – Dynamic Host Configuration Protocol (DHCP) – Transmission Control Protocol (TCP) – User Datagram Protocol (UDP) – Internet Protocol version 4 (IPv4) – Internet Control Message Protocol (ICMP) – Address Resolution Protocol (ARP) MCTS Windows Server 2008 Active Directory 10
  • 11. TCP/IP Communication • When a user opens a web page, a DNS request is sent to resolve the website name to an IP address • Once the client has the IP address of the website, it then determines whether the address is on the same network or a different network • If the client is on the same network, the client requests the MAC address of the Web server. If not, the client sends the request for the Web page to a router or default gateway • Routers then forward the request to other routers, until the request reaches a router connected to the Web server’s network MCTS Windows Server 2008 Active Directory 11
  • 12. IPv4 Address Configuration • IP addresses are 32-bit numbers divided into four 8-bit values called octets, each octet can have a value from 0 to 255 • Subnet masks are also 32-bit numbers, that serve to determine how many bits are allocated to a network ID, and how many are allocated to a host ID • When written in binary, 1’s in the subnet mask that correspond to bits in the IP address mean the matching bit locations are part of the network ID • 192.168.1.0 = 11000000.10101000.00000001.00000000 255.255.255.0 = 11111111.11111111.11111111.00000000 • Above shows 192.168.1 as the network ID, .0 as the host ID MCTS Windows Server 2008 Active Directory 12
  • 13. Assigning IP Address Classes • Three classes of IP addresses can be assigned: Class A, Class B, or Class C MCTS Windows Server 2008 Active Directory 13
  • 14. IP Address Assignment Rules • Rules for IP address assignment – Every IP address configuration must have a subnet mask – All hosts on the same physical network must share the same network ID in their IP addresses – All host IDs on the same network must be unique – You can’t assign an IP address in which all the host ID bits are binary 0 – You can’t assign an IP address in which all the host ID bits are binary 1 – Computers assigned different network IDs can communicate only if a router is present to forward packets MCTS Windows Server 2008 Active Directory 14
  • 15. Subnetting • Default subnet mask for an address class does not always apply • Bits can be borrowed from the host ID portion of an address class in order to create additional “sub-networks” • Example: 172.31.0.0 subnetted to 255.255.255.0 – Creates 256 new networks, with 254 host IDs – Rule for number of networks = 2n – Rule for number of hosts = 2n – 2 • An IP network is referred to as a broadcast domain • Creating multiple subnets can be beneficial in large environments to reduce the amount of traffic (broadcast traffic specifically) computers are exposed to MCTS Windows Server 2008 Active Directory 15
  • 16. Configuring Multiple IP Addresses • Windows OSs allow assigning multiple IP addresses to a single network connection, via Advanced TCP/IP settings dialog box • Multiple IP addresses can be useful in these situations: – The computer is hosting a service that must be accessed by using different addresses – The computer is connected to a physical network that hosts multiple IP networks MCTS Windows Server 2008 Active Directory 16
  • 17. Configuring the Default Gateway • A default gateway is almost always used in IP configurations • The default gateway can not be in a network ID outside of the host’s network ID • Just as you can configure multiple IP addresses, multiple gateways can be configured • Windows attempts to select the gateway with the best metric automatically • Metric is a value assigned to the gateway based on the speed of the interface used to access the gateway MCTS Windows Server 2008 Active Directory 17
  • 18. Using Multihomed Servers • A multihomed server has two or more NICs, each attached to a different IP network • Each NIC requires its own IP address for the network to which it’s connected • Reasons for this type of configuration: – A server is accessed by internal clients and external clients – A server provides resources for computers on multiple subnets of the network – A server is configured as a router or VPN server • Multihomed servers can run into routing issues due to multiple default gateways being configured MCTS Windows Server 2008 Active Directory 18
  • 19. Using the Route Command • Windows computers maintain a routing table that dictates where a packet should be sent, based on the packet’s destination address • Typing route print displays the routing table • Results are displayed in five columns: – Network Destination – Netmask – Gateway – Interface – Metric • Route command can be used to change the routing table, and to fix issues caused by using a multihomed server MCTS Windows Server 2008 Active Directory 19
  • 20. Using the Route Command (cont.) MCTS Windows Server 2008 Active Directory 20
  • 21. IP Configuration Command-Line Tools • Other command line tools available to assist with IP configuration: – Ping – Ipconfig – Arp – Tracert – Nslookup • Additional tools are available, but are generally used to verify correct IP configuration settings and connectivity MCTS Windows Server 2008 Active Directory 21
  • 22. The Ping Command • Ping is used to test the connectivity between two computers, by sending an ICMP Echo Request packet • If the destination receives the ICMP Echo Request and can respond, it’ll reply with an ICMP Echo Reply packet – Example: Reply from 192.168.100.201 bytes=32 time=<1ms TTL=128 • To see the options available for the ping command, type ping /? at the command prompt MCTS Windows Server 2008 Active Directory 22
  • 23. The Ipconfig Command • Ipconfig is usually used to display a computers IP address settings, but it can perform other tasks based on the options given: – /all – /release – /renew – /displaydns – /flushdns – /registerdns MCTS Windows Server 2008 Active Directory 23
  • 24. The Arp Command • The Arp command displays or makes changes to the Address Resolution Protocol (ARP) cache, which contains IP address – MAC address pairs • Can add static ARP entries • Some options for ARP command: – -a, -g: displays current ARP entries – -d: deletes ARP entries – -s: adds a static ARP entry MCTS Windows Server 2008 Active Directory 24
  • 25. The Tracert Command • Usually called “trace route” because it displays the route packets take between two computers • Works by sending out packets with a TTL value starting at 1 and increases the value until the destination is reached • Useful for troubleshooting the routing topology of a complex network and finding bottlenecks MCTS Windows Server 2008 Active Directory 25
  • 26. The Nslookup Command • Used to test and troubleshoot DNS operation • Can be used in command mode or interactive mode • In command mode, you type “nslookup host” to query for the host’s address • In interactive mode, you can simply type host to get the host’s address • Typing a question mark at the interactive mode prompt gives a list of available options MCTS Windows Server 2008 Active Directory 26
  • 27. Managing Protocols • Each network connection in Windows Server 2008 has protocols and services associated with it • Services / protocols can be unbound (disabled) or bound (enabled) to a connection in the connection’s Properties dialog box, by selecting or deselecting the check box next to the service or protocol • List of services / protocols – Client for Microsoft Networks – QoS Packet Scheduler – File and Printer Sharing for Microsoft Networks – Internet Protocol Version 6 (TCP/IPv6) – Internet Protocol Version 4 (TCP/IPv4) – Link-Layer Topology Discovery Mapper I/O Driver – Link-Layer Topology Discovery Responder MCTS Windows Server 2008 Active Directory 27
  • 28. Managing Protocols (cont.) MCTS Windows Server 2008 Active Directory 28
  • 29. Network Bindings • By default, every installed service and protocol is bound to every network connection • Protocol bindings can be rearranged by selecting the protocol to be moved, and then by clicking the up or down arrows in the Adapters and Bindings tab • Network connections are then prioritized in the order shown under this tab MCTS Windows Server 2008 Active Directory 29
  • 30. Network Bindings (cont.) MCTS Windows Server 2008 Active Directory 30
  • 31. Network Providers • A network provider is a software component that allows Windows applications to connect to resources on other computers • Different OSs may require different procedures, which requires different network providers • Network providers exist for Windows networks, virtual networks (VMware), Novell networks, Linux networks, and more • Performs actions such as making and breaking network connections MCTS Windows Server 2008 Active Directory 31
  • 32. Network Providers (cont.) MCTS Windows Server 2008 Active Directory 32
  • 33. Internet Protocol Version 6 • Previous Windows OSs use a Dual-stack architecture, meaning that IPv4 and IPv6 use separate implementations of the protocols in the TCP/IP suite • Windows Server 2008 and Vista use dual-IP layer architecture, which means that the IP protocol is the only component of the TCP/IP suite that’s different in IPv6 MCTS Windows Server 2008 Active Directory 33
  • 34. Internet Protocol Version 6 (cont.) Dual-stack architecture MCTS Windows Server 2008 Active Directory 34
  • 35. Internet Protocol Version 6 (cont.) Dual-IP layer architecture MCTS Windows Server 2008 Active Directory 35
  • 36. IPv6 Overview • Originally named IPng (IP next generation), IPv6 was created in 1994 by the Internet Engineering Task Force (IETF) • IPv6 includes the following improvements – Large address space – Hierarchical address space – Autoconfiguration – Built-in Quality of Server (QoS) support – Built-in security MCTS Windows Server 2008 Active Directory 36
  • 37. IPv6 Address Structure • Subnetting as done in IPv4 is no longer applicable • Uses 128 bits, instead of IPv4’s 32 bits, for an address • IPv6 addresses are written as eight 16-bit hexadecimal numbers separated by colons: – Fe80:0:0:0:18ff:0024:8e5a:60 – Things to note about IPv6 addresses: • One or more consecutive 0 values can be written as a double colon, but only one double colon can exist in an IPv6 address • Leading 0s are optional • Addresses that start with fe80 are called link-local addresses and are self-configuring MCTS Windows Server 2008 Active Directory 37
  • 38. The IPv6 Host ID • Host ID of an IPv6 is typically 64 bits and uses the interface’s 48 bit MAC address for a large portion of the address, as well as a 16 bit value of FF-FE that is inserted after the first 24 bits of the MAC address • First two zeros in a MAC address are replaced with 02 • This autoconfigured 64-bit host ID is referred to as an Extended Unique Identifier (EUI)-64 interface ID • Windows Server 2008 and Vista don’t use EUI-64 by default MCTS Windows Server 2008 Active Directory 38
  • 39. Subnetting with IPv6 • Subnetting will still exist in IPv6, but due to the large address space available, most address allocations will have a /48 prefix • This leaves 80 bits for assigning subnets and host IDs • 80 bits allows 16 subnet bits (since the interface ID requires 64 bits), allowing up to 65,536 subnets MCTS Windows Server 2008 Active Directory 39
  • 40. Subnetting with IPv6 (cont.) Typical IPV6 address structure MCTS Windows Server 2008 Active Directory 40
  • 41. Chapter Summary • The Network and Sharing Center can view the status of network connections and configure their properties • The network map is a visual representation of computers and connecting devices in your network • TCP/IPv4, the predominant networking protocol in use today, is actually a suite of protocols and services, such as DNS, DHCP, TCP, IPv4, ICMP, and ARP, among others • TCP/IP communication is a multi-step process that often involves the use of several different protocols in the TCP/IP suite MCTS Windows Server 2008 Active Directory 41
  • 42. Chapter Summary (cont.) • An IP address is a 32-bit dotted decimal number divided into four octets. Every IP address must have a subnet mask to indicate which part of the address is the network ID and which part is the host ID. Three IP classes exist: A, B, C • Subnetting uses a modified subnet mask to divide a large network into smaller, more manageable networks • You can configure multiple IP addresses and default gateways on a network connection MCTS Windows Server 2008 Active Directory 42
  • 43. Chapter Summary (cont.) • Several command-line tools are available for checking status and troubleshooting IP configuration, including Ping, Ipconfig, Arp, Tracert, and Nslookup MCTS Windows Server 2008 Active Directory 43