Lesson 5 - Managing Windows Networking Flashcards
(78 cards)
What is a subnet mask?
Number of bits applied to an IP address to mask the network ID portion from the host/interface ID portion.
What is a IP?
Internet Protocol is a format for logical host and networking addressing. In IPv4, a 32-bit binary address is expressed in dotted decimal notation, such as 192.168.1.1. In IPv6, addresses are 128-bit expressed as hexadecimal.
What is a DNS?
A Domain Name System is a service that maps fully qualified domain name labels to IP addresses on most TCP/IP networks, including the Internet.
What is DHCP?
A Dynamic Host Configuration Protocol is a protocol used to automatically assign IP addressing information to hosts that have not been configured manually.
What is NLA?
Network Location Awareness is a Windows feature that categorizes network profile as public or private. Each profile can have a different firewall configuration, with public network types being more restricted, by default.
What is VPN?
A virtual private network is a secure tunnel created between two endpoints connected via an unsecure transport network (typically the Internet).
What is WWAN?
A Wireless Wide Area Network is a network covering a large area using wireless technologies, such as a cellular radio data network or line-of-sight microwave transmission.
What is a proxy server?
A proxy server that mediates the communications between a client and another server. It can filter and often modify communications as well as provide caching services to improve performance.
You are assisting a user with configuring a static IP address. The user has entered the following configuration values and now cannot access the Internet. Is there a configuration issue or a different problem?
IP: 192.168.1.1
Mask: 255.255.255.0
Gateway: 192.168.1.0
DNS: 192.168.1.0
There is a configuration problem. 192.168.1.0 is not a host address. With the subnet mask 255.255.255.0, it identifies the network range as 192.168.1.0/24. The gateway is usually configured as the first available host address in this range: 192.168.1.1. The DNS server should also be set to 192.168.1.1.
You are assisting another user who is trying to configure a static IP on a Windows workstation. The user says that 255.255.255.0 is not being accepted in the prefix length box. Should the user open a different dialog to complete the configuration or enter a different value?
The Network & Interface settings Edit IP settings dialog can be used. 255.255.255.0 is the subnet mask in dotted decimal format. The dialog just requires the number of mask bits. Each “255” in a dotted decimal mask represents 8 bits, so the user should enter 24.
You are supporting a user who has just replaced a wireless router. The user has joined the new wireless network successfully but can no longer find other computers on the network. What should you check first?
Use Network & Internet to check the network profile type. When the network changed, the user probably selected the wrong option at the prompt to allow the PC to be discoverable, and the profile is probably set to Public. Change the type Private.
True or false? Windows Defender Firewall cannot be disabled.
False. It is not usually a good idea to do so, but it can be disabled via Security Center or the Control Panel applet.
You need to set up a VPN connection on a user’s Windows laptop. The VPN type is IKEv2. What other information, if any, do you need to configure the connection?
You must also input the fully qualified domain name (FQDN) or IP address of the remote access VPN server.
What is an ipconfig command tool?
A Command tool used to gather information about the IP configuration of a Windows host.
What is a ping command?
A ping command is a cross-platform command tool for testing IP packet transmission.
What is a tracert command?
A tracert command is diagnostic utilities that trace the route taken by a packet as it “hops” to the destination host on a remote network. Tracert is the Windows implementation, while traceroute runs a Linux.
What is a pathping command?
A pathping command is a Windows utility for measuring latency and packet loss across an internetwork.
What is a nslookup command?
A nslookup command is a cross-platform command toll for querying DNS resource records.
What is netstat command?
Netstat is a cross-platform command tool to show network information on a machine running TCP/IP, notably active connections, and the routing table.
A DHCP server has been reconfigured to use a new network address scheme following a network problem. What command would you use to refresh the IP configuration on Windows client workstations?
ipconfig /renew
A computer cannot connect to the network. The machine is configured to obtain a TCP/IP configuration automatically. You use ipconfig to determine the IP address and it returns 0.0.0.0. What does this tell you?
This is an irregular state for a Windows PC. If a DHCP server cannot be contacted, the machine should default to using an APIPA address (169.254.x.y). As it has not done this, something is wrong with the networking software installed on the machine. The best option is probably to perform a network reset via the Settings > Network & Internet > Status page.
You are pinging a host at 192.168.0.99 from a host at 192.168.0.200. The response is “Reply from 192.168.0.200: Destination host unreachable.” The hosts use the subnet mask 255.255.255.0. Does the ping output indicate a problem with the default gateway?
No. The hosts are on the same IP network (192.168.0.0/24). This means that 192.168.0.200 does not try to use a router (the gateway) to send the probes. 192.168.0.200 uses address resolution protocol (ARP) to find the host with the IP 192.168.0.99. The host unreachable message indicates that there was no response, but the problem will be an issue such as the host being disconnected from the network or configured to block discovery rather than a gateway issue.
You are checking that a remote Windows workstation will be able to dial into a web conference with good quality audio/video. What is the best tool to use to measure latency between the workstation’s network and the web conferencing server?
pathping measures latency over a longer period and so will return a more accurate measurement than the individual round trip time (RTT) values returned by ping or tracert.
Which command produces the output shown in this screenshot?
This is output from netstat. The -n switch has been used to show ports in numeric format and the -o switch to show the PID of the process that opened the port.