6.5 Network Communication Troubleshooting Flashcards

1
Q

Describe Ping host Troubleshooting Ping host C Task

A

Often the best way to start troubleshooting a problem is to ping the host you are trying to contact. This verifies the reported problem. If the ping is successful, the problem is not related to network connectivity. Check other problems, such as name resolution or service access.

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

Describe Ping host Troubleshooting Ping host D Task

A

If you cannot contact a specific remote host, try pinging another host in the same remote network. If the ping is successful, then the problem is with the remote host, such as a misconfiguration, broken link, or it is unavailable.

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

Describe Ping host Troubleshooting Ping host E Task

A

If you cannot contact any host in the remote network, try pinging hosts on other remote networks. You might try several other networks. If the pings are successful, or if you can contact some remote networks and not others, then the problem is with the routing path between your network and the specific remote network. Use the tracert (traceroute on Linux) command to check the path to the problem network.

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

Describe Ping host Troubleshooting Ping the default gateway Task

A

If you cannot contact any remote network, ping the default gateway router. If the ping is successful, but you still cannot contact any remote host, have the router administrator verify the router configuration. Check for broken links to the remote network; interfaces that have been shut down; and access control lists or other controls that might be blocking traffic.

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

Describe Ping host B Task

A

If you cannot contact the default gateway router, ping other hosts on the local network. If the pings are successful, check the default gateway router.

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

Describe Troubleshoot the local host connection or configuration

A

If you cannot communicate with any host on the local network, then the problem is likely with the local host or its connection to the network. Troubleshoot by doing the following:
Check physical connectivity
Validate the TCP/IP configuration on the local host
Validate IP configuration settings

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

What is (ICMP)

A

Internet Control Message Protocol - a special-purpose message mechanism added to the TCP/IP suite that lets computers and routers in an internetwork report errors or provide information about unexpected circumstances.

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

What protocol do hosts use to send error messages to other hosts

A

ICMP

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

Describe echo message from the ICMP protocol

A

The ICMP echo message is used to discover hosts and networks and to verify that they are reachable. The ping utility is a popular utility that uses ICMP echo messages.

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

Describe the Destination unreachable message from the ICMP protocol

A

The destination unreachable message is sent if a packet cannot reach its destination. This can happen for a variety of reasons. It might indicate the host is unavailable or that there were problems detected in the packet header.

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

Describe the Time exceeded message from the ICMP protocol

A

The time exceeded message is sent when the packet’s time-to-live (TTL) counter has expired.

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

Describe the Redirect message from the ICMP protocol

A

The redirect message is sent from a router to the sending device to indicate that a different route should be chosen for the packet. The redirect message can be sent if a better route is in the router’s table or if the selected route is unavailable or congested.

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

Describe the Source quench from the ICMP protocol

A

The source quench message is sent by a receiving device to indicate that the flow of packets is too fast. When a sending device receives a source quench message, it slows its rate of transmission.

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

Describe the Router discovery from the ICMP protocol

A

The router discovery message is a special broadcast message sent by hosts to discover the routers on a network. Routers respond to the message, announcing their presence. They do not exchange routing information, but simply broadcast their availability.

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

What layer of the OSI model does Telnet work on

A

Application layer

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

A single host cannot communicate with any other host.

A

Because the problem exists with only one host, troubleshoot the configuration of the host with the problem.

17
Q

A single host can communicate with all hosts on the same network, but can’t communicate with hosts on any other network.

A

Verify the default gateway setting of the host with the problem. Because only a single host has the problem, you should be able to assume that the default gateway device is functioning correctly.

18
Q

All hosts can communicate within the same network, but cannot communicate with any hosts outside of the local network.

A

Check for the following:
If hosts have an IP address on the 169.254.0.0/16, then APIPA was used to assign the IP address, and the default gateway value will be missing. Verify that the DHCP server is up.
If DHCP is used to assign IP information to hosts, verify the default gateway setting delivered by the DHCP server.
Verify that the default gateway device is up, has a valid connection to all networks, and has routing table information to reach destination networks.

19
Q

All hosts cannot communicate with hosts on a specific outside network. Communication with other networks is fine.

A

Add a route to the routing table or configure the gateway of last resort (default route) on the router. The gateway of last resort is also known as the default gateway for the router.

Troubleshoot other routers in the path to the destination network. Use traceroute to identify the last responding router and begin troubleshooting there.

20
Q

All hosts cannot communicate with a specific remote host. Communication with other remote hosts in the same remote network is fine.

A

Troubleshoot the configuration of the remote host.

21
Q

Info on using arp

A

The ARP cache keeps a mapping of IP address to MAC addresses. If the IP address or MAC address changes, the value in the cache might be out of date and need to be modified using the arp utility. Use the arp commands as follows:
arp -a to list a host’s ARP cache.
arp -d to clear the ARP cache.
arp -d * to remove all dynamic ARP entries from the ARP list.
Switches used with arp are case-sensitive. For example, arp -a and arp -A are not the same.