Week 9 Lab 1 : Exploring Network Tools - jwells24/Tech-Journal GitHub Wiki
For this assignment, you will be using the network tools to answer a couple of questions: What is the IP address of the champlain.edu web server? Where is the web server located?
Run the tools on your Windows 10 host computer. Submission will be via GitHub. Here is a video showing how to format the assignment. https://drive.google.com/file/d/1L6sBevYU__wJVNLnROO2U4AVRxc5Kvco/view
Click on the magnifying glass in the Windows taskbar and type ‘cmd’. Open the Command Prompt application that pops up. The command nslookup is used to find the IP address of a host and the hostname for an IP address. Type into the command prompt window nslookup champlain.edu The IP address shown in the ‘Non-authoritative answer’ portion is Champlain’s web server next to “Addresses” Copy the output to your GitHub submission and put asterisks next to the IP Address(es).
Server: ns.champlain.edu **Address: 216.93.145.253** Name: champlain.edu **Address: 208.115.107.132**
Type ping x.x.x.x into your command prompt, replacing x.x.x.x with the Champlain.edu IP address you found in Part 1. Let the program run to completion. Copy the output to your GitHub submission and put asterisks next to the IP Address(es).
Pinging 208.115.107.132 with 32 bytes of data: Reply from 208.115.107.132: bytes=32 time=78ms TTL=49 Reply from 208.115.107.132: bytes=32 time=69ms TTL=49 Reply from 208.115.107.132: bytes=32 time=69ms TTL=49 Reply from 208.115.107.132: bytes=32 time=69ms TTL=49 Ping statistics for 208.115.107.132: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 69ms, Maximum = 78ms, Average = 71ms
NOTE: By default, ping will send four packets (ICMP packets) and stop. If you need to run ping continuously on Windows, then run: ping -t x.x.x.x The -t will continuously run until you type Ctrl+c.
Now, type tracert -d www.champlain.edu in your command prompt. The switch -d will not resolve hostnames so it runs faster. Let the program run to completion, and copy the output into your GitHub lab submission mentioned in class today Tracert shows you the path your network traffic takes from your machine to champlain.edu. Analyze the path that tracert returned (take note of the names/IPs returned from each hop in the route!)
Tracing route to champlain.edu [208.115.107.132] over a maximum of 30 hops: 1 1 ms 1 ms 2 ms 184.171.154.251 2 <1 ms <1 ms <1 ms 10.0.0.111 3 4 ms 3 ms 2 ms 10.0.2.2 4 <1 ms <1 ms <1 ms 204.13.40.101 5 1 ms 1 ms 1 ms 10.10.129.85 6 1 ms 1 ms 1 ms 10.10.129.77 7 11 ms 11 ms 11 ms 216.66.24.137 8 9 ms 9 ms 9 ms 184.105.213.217 9 29 ms 40 ms 27 ms 184.104.193.173 10 36 ms 35 ms 35 ms 184.105.223.178 11 66 ms 77 ms 66 ms 184.104.194.21 12 68 ms 68 ms 68 ms 206.81.80.37 13 68 ms 68 ms 68 ms 216.244.88.166 14 70 ms 70 ms 69 ms 216.244.88.10 15 68 ms 68 ms 68 ms 216.176.176.116 16 69 ms 69 ms 69 ms 208.115.107.132 Trace complete.
How many hops did it take to get to the web server hosting www.champlain.edu?
- It took 16 hops to get to the web server hosting champlain.edu