Troubleshoot Remote Network, Name Resolution & Ports

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/49

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:05 PM on 6/6/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

50 Terms

1
New cards

What counts as one hop when a packet is forwarded to a remote network?

Each router in the path to the network

2
New cards

What can the path taken by a packet be used to diagnose?

Routing issues

3
New cards

What is the tracert command used to do?

Trace the path a packet of information takes to get to its target

4
New cards

What can tracert take as an argument?

An IP address or FQDN

5
New cards

What happens if the host cannot be located with tracert?

The command will eventually timeout, but it will return every router that was attempted

6
New cards

What does tracert output show?

The number of hops, the ingress interface of the router or host, and the time taken to respond to each probe in milliseconds

7
New cards

What does an asterisk in tracert output mean?

No acknowledgment was received within the timeout period

8
New cards

What does pathping do as an alternative to tracert?

Performs a trace and then pings each hop router a given number of times for a given period

9
New cards

What does pathping determine and measure more accurately?

The round-trip time RTTRTT and link latency

10
New cards

What additional information does pathping show?

Packet loss at each hop

11
New cards

What should you check first if there is a routing issue?

That the local router's Internet connection status is OK

12
New cards

If the router is connected, what should you verify next?

That there are no wider network issues or DNS problems using the ISP's service status page or support helpline

13
New cards

What should you try if there are no ISP-wide issues?

Restarting the router

14
New cards

What does FQDN stand for?

Fully Qualified Domain Name

15
New cards
What three higher-layer areas should you suspect if basic connectivity seems fine?
Security, name resolution, and application/OS
16
New cards
What higher-layer problem could block the connection or involve misconfigured proxy settings?
Security
17
New cards
What higher-layer problem exists if you can connect by IP address but not by name?
Name resolution
18
New cards
What higher-layer problem might exist if the server can be contacted but a specific service is unavailable?
The service process might have crashed
19
New cards
Why should you establish the scope of the problem when troubleshooting unavailable network resources?
To determine whether the problem lies with the first client or with the server, print device, or network infrastructure
20
New cards
If you can connect to a service using a different host, where should the problem lie?
With the first client
21
New cards
If other hosts cannot connect, where does the problem lie?
With the application server or print device or with network infrastructure between the clients and the server
22
New cards
What does DNS do?
Converts human-readable names into computer-readable IP addresses
23
New cards
What does it indicate if pinging a host name fails but pinging its IP address works?
A name resolution issue
24
New cards
Which command can you run to check DNS settings on the network adapter?
ipconfig /all
25
New cards
Which command clears local DNS records?
ipconfig /flushdns
26
New cards
What command can you use to test the DNS server connection?
nslookup
27
New cards
What does nslookup query?
DNS servers for names and IP addresses
28
New cards
What can Host be in nslookup?
A host name/FQDN or an IP address
29
New cards
What is Server in nslookup?
The DNS server to query
30
New cards
What happens if the Server argument is omitted in nslookup?
The default DNS server is used
31
New cards
What does -Option specify in nslookup?
An nslookup sub-command
32
New cards
What is a typical use of an nslookup sub-command?
To query a particular DNS record type
33
New cards
What can comparing results from a different name server help highlight?
Configuration problems
34
New cards
What can you try if the DNS server is not responding?
Use a different DNS server address to verify if the issue is with the DNS server
35
New cards
What is the netstat command used to investigate on the local host?
Open ports and connections
36
New cards
How can netstat help in troubleshooting file sharing or email issues on a server?
Verify whether file sharing or email ports are open on a server and whether other clients are connecting to them
37
New cards
What does netstat list when used without switches?
Active and listening TCP ports
38
New cards
What is an active port in netstat?
A port connected to a foreign address
39
New cards
What is a listening port in netstat?
A port waiting for a connection
40
New cards
What does netstat -a include?
UDP ports in the listening state
41
New cards
What does netstat -b show?
The process that has opened the port
42
New cards
What does netstat -o show instead of the process name?
The process ID PIDPID
43
New cards
Which netstat switches require an administrative command prompt?
-b and -o
44
New cards
What does netstat -n display?
Ports and addresses in numerical format
45
New cards
Why does netstat -n speed up each query?
Because it skips name resolution
46
New cards
What do netstat -e and netstat -s report?
Ethernet statistics and protocol statistics, respectively
47
New cards
What common Windows file sharing and printer sharing port might netstat help verify?
SMB on tcp/445
48
New cards
What common email receive port might netstat help verify for IMAP4?
tcp/143
49
New cards
What common email receive port might netstat help verify for POP3?
tcp/110
50
New cards
What common email transfer port might netstat help verify for SMTP?
tcp/25