Troubleshoot Windows Networking Flashcards

Lesson 14B (32 cards)

1
Q
A

ipconfig

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
A

ping

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
A

Examples of error messages using ping.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
A

Using tracert in Windows.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
A

Using nslookup to query the mail server configured for the comptia.org domain name using
Google’s public DNS servers (8.8.8.8).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
A

Displaying listening connections and the processes that opened each port with netstat.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

IP Configuration

Limited connectivity

A

The adapter is set to obtain an address automatically, but no DHCP server can be contacted.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Automatic Private IP Addressing (APIPA)

A

It’s a backup system for when a device can’t get an IP address from a DHCP server.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

IP Configuration

“No Internet access”

A

This means that the IP configuration is valid for the local network but that Windows cannot identify a working Internet connection.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

ipconfig command tool

A

information is displayed through Network &
Internet settings or the adapter’s status dialog.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

ipconfig Command

A

displays the IP address, subnet mask, and
default gateway (router) for all network adapters to which TCP/IP is bound.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Run ipconfig

A
  • Use commands like* ipconfig /all* to check current settings,* ipconfig /release* & ipconfig /renew to refresh IP, and* ipconfig /flushdns *to clear DNS cache.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q
  • Verify DHCP & APIPA
A
  • If “No Internet Access” appears, test connectivity with ping 8.8.8.8 and consider changing DNS settings.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q
  • Reset Network Settings
A
  • Use* netsh int ip* reset and netsh winsock reset to restore default configurations. Let me know if you need deeper insight into any of these steps!
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

ipconfig /displaydns

A

Display the DNS resolver cache. This contains host and domain names that have been queried recently.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

hostname Command

A

displays name of local machine.

If machine is configured as a server, client machines will need to use the hostname to access shared folders and printers.

17
Q

Network reset
command

A

clear any custom adapter configurations and network connections, including VPN connections, on Settings > Network & Internet > Status page. Reconfigure.

18
Q

ping command

A

command-line diagnostic tool used to test whether
a host can communicate with another host on the same network or on a remote network.

19
Q

ping command

Loopback Test (ping 127.0.0.1)

A

Confirms that TCP/IP is installed correctly.

20
Q

ping command

Workstation IP Test

A

– Ensures the assigned IP is correct and detects potential duplicates.

21
Q

ping command

Default Gateway Test

A

– Verifies the router is active and local network communication is working.

22
Q

ping command

Remote Host Test

A

– Confirms the ability to communicate beyond the router to external networks.

23
Q

“Reply from SenderIP Destination unreachable”

A

Indicates no response to ARP probes, suggesting the host is either disconnected, non-discoverable, or misconfigured (e.g., duplicate IP or incorrect subnet).

24
Q

“Reply from GatewayIP: Destination unreachable”

A

– Means the router has no route to the destination, pointing to a possible network misconfiguration.

25
# ping command "Request timed out"
Suggests the destination host is either offline or configured to ignore ping requests.
26
To troubleshoot remote network connectivity
The `tracert` command traces the path a packet takes to its destination, identifying routing issues at each hop using IP addresses or FQDNs to diagnose network delays or unreachable hosts.
27
The `tracert` and `pathping` commands
help diagnose network routing issues by tracing packet paths, measuring latency, and detecting packet loss, while troubleshooting steps include checking the router’s status, verifying ISP service, and restarting the router if necessary.
28
To troubleshoot name resolution issues
first check for security blocks like firewalls or misconfigured proxy settings, then verify whether the application or OS is failing. Establish if the issue is isolated to one client or affects multiple hosts. If DNS resolution is suspected, use the `nslookup` command to query DNS records, compare results from different servers, and identify potential configuration issues.
29
To troubleshoot network ports
use the *netstat* command to examine open connections on a local host, checking whether file sharing or email ports are accessible. By default, *netstat* lists active and listening TCP ports, with various switches available for deeper analysis
30
Troubleshooting Network ports:
**- -a** includes UDP listening ports, **- -b** identifies processes using each port (requires admin privileges), **- -o** shows process IDs instead of names, **- -n** speeds up queries by displaying numeric addresses, **- -e **and -s provide Ethernet and protocol statistics.
31
Process ID (PID)
unique numerical identifier assigned by the operating system to each running process (Command-line). It's used for various purposes, including process management, resource allocation, and debugging.
32