An administrator is troubleshooting network connectivity and would like to view the path that packets are taking from workstation A to server 1. Which of the following command line tools is MOST appropriate to use?

A. nslookup
B. route
C. traceroute
D. ping

Answer: C. traceroute

Computer Science & Information Technology

You might also like to view...

After creating a new IAM user which of the following must be done before they can successfully make API calls?

A. Add a password to the user. B. Enable Multi-Factor Authentication for the user. C. Assign a Password Policy to the user. D. Create a set of Access Keys for the user.

Computer Science & Information Technology

Which of the following statements is false? Consider the list color_names:

color_names = ['orange', 'yellow', 'green']
a. Lists also have methods that add and remove elements. b. Method insert adds a new item at a specified index. The following inserts 'red' at index 0: color_names.insert(0, 'red') c. You can add a new item to the end of a list with method append. d. All of the above statements are true.

Computer Science & Information Technology