SYS140 Exploring Network Tools - eitan-j/tech-journal GitHub Wiki
Objective
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?
Lab Preparation
Preparation:
- 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).
C:\Users\eitan>nslookup champlain.edu Server: ns.burlingtontelecom.net Address: **204.13.41.10 Non-authoritative answer: 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).
C:\Users\eitan>ping **208.115.107.132 Pinging **208.115.107.132 with 32 bytes of data: Reply from **208.115.107.132: bytes=32 time=72ms TTL=53 Reply from **208.115.107.132: bytes=32 time=71ms TTL=53 Reply from **208.115.107.132: bytes=32 time=73ms TTL=53 Reply from **208.115.107.132: bytes=32 time=73ms TTL=53 Ping statistics for **208.115.107.132: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 71ms, Maximum = 73ms, Average = 72ms
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
C:\Users\eitan>tracert -d www.champlain.edu Tracing route to www.champlain.edu [208.115.107.132] over a maximum of 30 hops: 1 3 ms 3 ms 4 ms 69.5.123.1 2 2 ms 2 ms 5 ms 65.183.130.169 3 14 ms 15 ms 15 ms 216.66.24.137 4 13 ms 14 ms 12 ms 184.105.213.217 5 28 ms 28 ms 29 ms 184.104.193.173 6 39 ms 40 ms 56 ms 184.105.223.178 7 69 ms 69 ms 69 ms 184.104.194.21 8 70 ms 74 ms 72 ms 206.81.80.37 9 72 ms 71 ms 70 ms 216.244.88.166 10 73 ms 71 ms 72 ms 216.244.88.10 11 69 ms 71 ms 70 ms 216.176.176.116 12 72 ms 71 ms 72 ms 208.115.107.132 Trace complete.
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!)
How many hops did it take to get to the web server hosting www.champlain.edu? 12
What To Submit
- nslookup output from Step 2
- Answer to question from Step 5
- ping output from Step 3
- tracert output from Step 4