Recent Changes - Search:

Welcome to CAVI, the Cisco Academy for the Vision Impaired.

Course Fees Linux Wiki HTML Wiki Documentation Index PmWiki FAQ

Edit SideBar

AccessibleLabs

This page lists the curriculum references and titles of all Networking Essentials Hands-on Labs and Class Activities. Diagram descriptions and accessibility modifications are included where required.

Embedded Packet Tracer activities, Interactive activities, and Syntax Checker activities are not accessible and are therefore not included on this page unless an accessible alternate activity has been developed.

Unless provided on this page, refer to the course curriculum for the full text of each lab and activity.

This page is under development as of 14 September 2015.

Chapter 1:

1.3.13 was ITN 2.3.3.4 Lab – Building a Simple Network

The topology is two switches and two PCs.
PC-A is connected with a straight-through Ethernet cable to interface F0/6 of switch S1.
Interface F0/1 of SW-1 is connected with a crossover Ethernet cable to Interface F0/1 of SW-2.
Interface F0/18 of SW-2 is connected with a straight-through Ethernet cable to PC-B.

1.3.2.3 was ITN 1.3.1.3 Lab - Mapping the Internet

The instructions for the accessible portions of this lab are given on this page to provide context for the numerous descriptions of command line output graphics in the original lab.

Objectives

Part 1: Test Network Connectivity Using Ping
Part 2: Trace a Route to a Remote Server Using Windows Tracert
Part 3: Trace a Route to a Remote Server Using Web-Based and Software Tools
Part 4: Compare Traceroute Results

Background

Route tracing computer software is a utility that lists the networks data has to traverse from the users originating end device to a distant destination network.
This network tool is typically executed at the command line as:
tracert <destination network name or end device address> In Microsoft windows system

 Or 
traceroute <destination network name or end device address>
In UNIX and similar systems.

Route tracing utilities allow a user to determine the path or routes as well as the delay across an IP network. Several tools exist to perform this function.
The traceroute (or tracert) tool is often used for network troubleshooting. By showing a list of routers traversed, it allows the user to identify the path taken to reach a particular destination on the network or across inter networks. Each router represents a point where one network connects to another network and through which the data packet was forwarded. The number of routers is known as the number of "hops" the data traveled from source to destination.

The displayed list can help identify data flow problems when trying to access a service such as a website. It can also be useful when performing tasks such as downloading data. If there are multiple websites (mirrors) available for the same data file, one can trace each mirror to get a good idea of which mirror would be the fastest to use.

Two trace routes between the same source and destination conducted some time apart may produce different results. This is due to the "meshed" nature of the interconnected networks that comprise the Internet and the Internet Protocols ability to select different pathways over which to send packets.

Command-line-based route tracing tools are usually embedded with the operating system of the end device.

Other tools, such as VisualRoute™, are proprietary programs that provide extra information. VisualRoute uses available online information to graphically display the route.

This lab assumes the installation of VisualRoute. If the computer you are using does not have VisualRoute installed, you can download the program using the following link:

http://www.visualroute.com/download.html

Scenario

Using an Internet connection, you will use three route tracing utilities to examine the Internet pathway to destination networks. This activity should be performed on a computer that has Internet access and access to the command line. First, you will use the Windows embedded tracert utility. Second, you will use a web-based traceroute tool (http://www.subnetonline.com/pages/network-tools/online- traceroute.php). Finally, you will use the VisualRoute traceroute program.

Required Resources

1 PC (Windows 7, Vista, or XP with Internet access)

Part 1: Test Network Connectivity Using Ping

Step 1: Determine whether the remote server is reachable. To trace the route to a distant network, the PC used must have a working connection to the Internet.

  1. The first tool we will use is ping. Ping is a tool used to test whether a host is reachable. A packet of information is sent to the remote host with instructions to reply. Your local PC measures whether a response is received to each packet, and how long it takes for those packets to cross the network. The name ping comes from active sonar technology in which a pulse of sound is sent underwater and bounced off of terrain or other ships.
  2. From your PC, click the Windows Start icon, type cmd in the Search programs and files box, and then press Enter.
  3. At the command-line prompt, type ping www.cisco.com.
  4. The first output line displays the Fully Qualified Domain Name (FQDN) e144.dscb.akamaiedge.net. This is followed by the IP address 23.1.48.170. Cisco hosts the same web content on different servers throughout the world (known as mirrors). Therefore, depending upon where you are geographically, the FQDN and the IP address will be different.
  5. From this portion of output:

Ping statistics for 23.2.128.170:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 224ms, Maximum = 234ms, Average = 227ms
Four pings were sent and a reply was received from each ping. Because each ping was responded to, there was 0% packet loss. On average, it took 227 ms (227 milliseconds) for the packets to cross the network. A millisecond is 1/1,000th of a second.
Streaming video and online games are two applications that suffer when there is packet loss, or a slow network connection. A more accurate determination of an Internet connection speed can be determined by sending 100 pings, instead of the default 4. Here is how to do that:
C:\>ping -n 100 www.cisco.com
And here is what the output from that looks like:
Ping statistics for 23.2.128.170:
Packets: Sent = 100, Received = 100, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 140ms, Maximum = 720ms, Average = 256ms

  1. Now ping Regional Internet Registry (RIR) websites located in different parts of the world:
  • For Africa:

C:\>ping www.afrinic.net
The output looks like
Pinging www.afrinic.net [196.216.2.136] with 32 bytes
Reply from 196.216.2.136: bytes=32 time=615ms TTL=109
Reply from 196.216.2.136: bytes=32 time=618ms TTL=109
Reply from 196.216.2.136: bytes=32 time=616ms TTL=109
Reply from 196.216.2.136: bytes=32 time=624ms TTL=109
Ping statistics for 196.216.2.136:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss)
Approximate round trip times in milli-seconds:
Minimum = 615ms, Maximum = 624ms, Average = 618ms

  • For Australia: C:\>ping www.apnic.net
    Pinging www.apnic.net [202.12.29.211] with 32 bytes of data
    Reply from 202.12.29.211: bytes=32 time=198ms TTL=52
    Reply from 202.12.29.211: bytes=32 time=195ms TTL=52
    Reply from 202.12.29.211: bytes=32 time=246ms TTL=52
    Reply from 202.12.29.211: bytes=32 time=241ms TTL=52
    Ping statistics for 202.12.29.211:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss)
    Approximate round trip times in milli-seconds:
    Minimum = 195ms, Maximum = 246ms, Average = 220ms
  • For Europe:
		C:\>ping www.ripe.net
Pinging www.ripe.net [193.0.6.139] with 32 bytes of data:
Request timed out.
Request timed out.
Reply from 195.69.144.68: Destination net unreachable.
Request timed out.
Ping statistics for 193.0.6.139:
Packets: Sent = 4, Received = 1, Lost = 3 (75% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
  • For South America

C:\>ping lacnic.net
Pinging lacnic.net [200.3.14.10] with 32 bytes of data
Reply from 200.3.14.10: bytes=32 time=613ms TTL=40
Reply from 200.3.14.10: bytes=32 time=613ms TTL=40
Reply from 200.3.14.10: bytes=32 time=620ms TTL=40
Reply from 200.3.14.10: bytes=32 time=817ms TTL=40
Ping statistics for 200.3.14.10:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss)
Approximate round trip times in milli-seconds:
Minimum = 613ms, Maximum = 817ms, Average = 665ms
All these pings were run from a computer located in the Australia. What happens to the average ping time in milliseconds when data is traveling within the same continent (Australia) as compared to data from Australia traveling to different continents?
What is interesting about the pings that were sent to the European website?

Part 2: Trace a Route to a Remote Server Using Tracert

Step 1: Determine what route across the Internet traffic takes to the remote server.
Now that basic reach ability has been verified by using the ping tool, it is helpful to look more closely at each network segment that is crossed. To do this, the tracert tool will be used.

  1. At the command-line prompt, type tracert www.cisco.com.

C:\>tracert www.cisco.com
Tracing route to e144.dscb.akamaiedge.net [23.2.128.170]
over a maximum of 30 hops:

  1    <1 ms    <1 ms    <1 ms  192.168.100.13
  2    <1 ms    <1 ms    <1 ms  dip-202-72-135-9.wa.westnet.com.au [202.72.135.9 ]
  3    <1 ms    <1 ms    <1 ms  10.99.99.5
  4     2 ms     1 ms     2 ms  dip-202-72-135-5.wa.westnet.com.au [202.72.135.5]
  5    53 ms     9 ms    20 ms  gi0-1.edge.qv1.wa.westnet.com.au [202.72.191.210]
  6     6 ms     2 ms     4 ms  203.215.4.204
  7   175 ms   141 ms   146 ms  ae6-10.cr1.per2.on.ii.net [150.101.33.90]
  8   161 ms   171 ms   137 ms  ae0.cr1.per1.on.ii.net [150.101.33.12]
  9   140 ms   141 ms   140 ms  te0-3-0.cor1.per1.on.ii.net [150.101.33.99]
 10     *      154 ms     *     po0-3-0.bdr1.sin1.on.ii.net [203.16.211.229]
 11     *        *        *     Request timed out.
 12     *        *      203 ms  pos0-7-0-1.br1.nrt1.on.ii.net [203.16.211.5]
 13   225 ms   250 ms   249 ms  20940.tyo.equinix.com [203.190.230.22]
 14   152 ms   141 ms   142 ms  a23-2-128-170.deploy.static.akamaitechnologies.com [23.2.128.170]

Trace complete.

b. Save the tracert output in a text file as follows:
1) Click alt + space this opens the tab with options like restore, minimize move down select edit, in edit select mark.
2) Select all and choose edit > copy.
3) Open the Windows Notepad program: Windows Start icon > All Programs > Accessories > Notepad.
4) Paste the output into the notepad.
5) Choose File > Save As and save the Notepad file to your desktop as tracert1.txt.
c. Run tracert for each destination website and save the output in sequentially numbered files.
C:\>ping www.afrinic.net
C:\>ping www.licnic.net
d. Interpreting tracert outputs.

Routes traced can go through many hops and a number of different Internet Service Providers (ISPs), depending on the size of your ISP and the location of the source and destination hosts. Each “hop” represents a router. A router is a specialized type of computer used to direct traffic across the Internet. Imagine taking an automobile trip across several countries using many highways. At different points in the trip you come to a fork in the road in which you have the option to select from several different highways. Now further imagine that there is a device at each fork in the road that directs you to take the correct highway to your final destination. That is what a router does for packets on a network.

Because computers talk in numbers, rather than words, routers are uniquely identified using IP addresses (numbers with the format x.x.x.x). The tracert tool shows you what path through the network a packet of information takes to reach its final destination. The tracert tool also gives you an idea of how fast traffic is going on each segment of the network. Three packets are sent to each router in the path, and the return time is measured in milliseconds. Now use this information to analyze the tracert results to www.cisco.com. Below is the entire traceroute:

C:\>tracert www.cisco.com

Tracing route to e144.dscb.akamaiedge.net [23.2.128.170] over a maximum of 30 hops:

  1    <1 ms    <1 ms    <1 ms  192.168.100.13
  2    <1 ms    <1 ms    <1 ms  dip-202-72-135-9.wa.westnet.com.au [202.72.135.9 ]
  3    <1 ms    <1 ms    <1 ms  10.99.99.5
  4    69 ms   120 ms   120 ms  dip-202-72-135-5.wa.westnet.com.au [202.72.135.5]
  5    16 ms    27 ms     3 ms  gi0-1.edge.qv1.wa.westnet.com.au [202.72.191.210]
  6    17 ms    11 ms     3 ms  203.215.4.204
  7   107 ms   181 ms   155 ms  ae6-10.cr1.per2.on.ii.net [150.101.33.90]
  8    90 ms    47 ms    61 ms  ae0.cr1.per1.on.ii.net [150.101.33.12]
  9   140 ms   143 ms   153 ms  te0-3-0.cor1.per1.on.ii.net [150.101.33.99]
 10     *      140 ms     *     po0-3-0.bdr1.sin1.on.ii.net [203.16.211.229]
 11     *        *        *     Request timed out.
 12     *        *      140 ms  pos0-7-0-1.br1.nrt1.on.ii.net [203.16.211.5]
 13   163 ms   147 ms   151 ms  20940.tyo.equinix.com [203.190.230.22]
 14   147 ms   143 ms   155 ms  a23-2-128-170.deploy.static.akamaitechnologies.com [23.2.128.170]

Trace complete.

Here is the breakdown Consider the first line of tracing route
1 <1 ms <1 ms <1 ms 192.168.100.13
Less than 1 milli second represents the time taken by packet to access the first router.
192.168.100.13 is the address of router on the computer home network
Consider the second line of tracing route
2 <1 ms <1 ms <1 ms dip-202-72-135-9.wa.westnet.com.au [202.72.135.9]
202.72.135.9 represent hop 2 POP router.
In the example output shown above, the tracert packets travel from the source PC to the local router default gateway (hop 1: 192.168.100.13) to the ISPs Point of Presence (POP) router (hop 2: 202.72.135.9). Every ISP has numerous POP routers. These POP routers are at the edge of the ISP’s network and are the means by which customers connect to the Internet. The packets travel along westnet network for two hops and then jump to a router that belongs to ii.net. This could mean that the packets have traveled to another ISP. This is significant because sometimes there is packet loss in the transition between ISPs, or sometimes one ISP is slower than another.

e. There is an Internet tool known as whois. The whois tool allows us to determine who owns a domain name. A web-based whois tool is found at http://whois.domaintools.com/.

To summarize, Internet traffic starts at a home PC and travels through the home router (hop 1). It then connects to the ISP and travels through its network (hops 2-7) until it arrives at the remote server (hop 8).This is a relatively unusual example in which there is only one ISP involved from start to finish. It is typical to have two or more ISP involved as displayed in the following examples.

f. Now examine an example that involves Internet traffic crossing multiple ISPs. Below is the tracert for www.afrinic.net:

C:\Users>tracert www.afrinic.net

Tracing route to www.afrinic.net [196.216.2.136] over a maximum of 30 hops:

  1    <1 ms    <1 ms    <1 ms  192.168.100.13
  2    <1 ms    <1 ms    <1 ms  dip-202-72-135-9.wa.westnet.com.au [202.72.135.9 ]
  3    <1 ms    <1 ms    <1 ms  10.99.99.5
  4   132 ms    58 ms    46 ms  dip-202-72-135-5.wa.westnet.com.au [202.72.135.5 ]
  5     3 ms     3 ms     2 ms  gi0-1.edge.qv1.wa.westnet.com.au [202.72.191.210 ]
  6     2 ms     1 ms     2 ms  203.215.4.204
  7     4 ms     5 ms     1 ms  ae6-10.cr1.per2.on.ii.net [150.101.33.90]
  8     2 ms     3 ms     3 ms  ae0.cr1.per1.on.ii.net [150.101.33.12]
  9   314 ms   313 ms   314 ms  te0-3-0.cor1.per1.on.ii.net [150.101.33.99]
 10     *        *        *     Request timed out.
 11   288 ms   295 ms   286 ms  gi0-0-5.bdr1.lon1.on.ii.net [203.16.211.101]
 12   290 ms     *      287 ms  te0-3-1-0.core1b-dock.isnet.net [195.66.224.198]
 13   526 ms   504 ms   486 ms  core1b-pkl-pos-0-0-5-0.ip.isnet.net [168.209.201 .62]
 14   481 ms   483 ms   487 ms  csw4-pkl-gi1-1.ip.isnet.net [196.26.0.101]
 15   457 ms   457 ms   460 ms  196.37.155.180
 16     *      519 ms   487 ms  fa1-0-1.ar02.jnb.afrinic.net [196.216.3.132]
 17   556 ms   458 ms   458 ms  196.216.2.136

Trace complete.

Question.What happens at hop 7? Is ii.net the same ISP as hops 2-6, or a different ISP? Use the whois tool to answer this question.

Question.What happens in hop 9 to the amount of time it takes for a packet to travel between hop 8 – 9, as compared with earlier hops.

Question.What happens in hop 15? Do a whois lookup on 196.37.155.180 using the whois tool. Who owns this network?

g. Type tracert www.lacnic.net.

C:\Users>tracert lacnic.net

Tracing route to lacnic.net [200.3.14.10] over a maximum of 30 hops:

  1    <1 ms    <1 ms    <1 ms  192.168.100.13
  2    <1 ms    <1 ms    <1 ms  dip-202-72-135-9.wa.westnet.com.au [202.72.135.9 ]
  3    <1 ms    <1 ms    <1 ms  10.99.99.5
  4    14 ms     5 ms     5 ms  dip-202-72-135-5.wa.westnet.com.au [202.72.135.5]
  5    32 ms    27 ms     4 ms  gi0-1.edge.qv1.wa.westnet.com.au [202.72.191.210]
  6     4 ms     3 ms     *     203.215.4.206
  7     2 ms     4 ms     *     ae6-10.cr1.per1.on.ii.net [150.101.33.92]
  8    38 ms    35 ms    39 ms  ae1.cr1.adl6.on.ii.net [150.101.33.36]
  9   300 ms   296 ms     *     ae4.br1.syd7.on.ii.net [150.101.33.34]
 10    86 ms    66 ms    92 ms  ae0.br1.syd4.on.ii.net [150.101.33.14]
 11   291 ms   288 ms     *     te0-1-1-2.br2.lax1.on.ii.net [203.16.213.190]
 12   315 ms   288 ms   295 ms  te0-1-0.bdr1.iad1.on.ii.net [203.16.213.186]
 13   405 ms   267 ms   261 ms  xe-2-0-0-0.border-a.ash.ctbc.com.br [206.126.236 .205]
 14   486 ms   488 ms   488 ms  xe-1-3-2-0.core-a.ula001.ctbc.com.br [201.48.45.210]
 15   431 ms   436 ms   435 ms  et-5-0-0-0.core-b.ula001.ctbc.com.br [201.48.44.6]
 16   486 ms     *      486 ms  ae3-0.core-b.spo511.ctbc.com.br [201.48.44.14]
 17   523 ms   485 ms   483 ms  xe-0-1-0-0.edge-c.spo511.ctbc.com.br [201.48.44.93]
 18   450 ms   446 ms   442 ms  xe-0-0-2.537.gw1.nu.registro.br [187.32.53.69]
 19   473 ms   521 ms   471 ms  xe-5-0-1-0.core1.nu.registro.br [200.160.0.166]
 20   464 ms   456 ms   453 ms  ae0-0.ar3.nu.registro.br [200.160.0.249]
 21   483 ms   486 ms   495 ms  gw01.lacnic.registro.br [200.160.0.212]
 22   480 ms   472 ms   548 ms  200.3.12.36
 23   533 ms   627 ms   578 ms  www.lacnic.net [200.3.14.10]

Trace complete.

Question. What happens in hop 7?

Part 3: Trace a Route to a Remote Server Using Web-Based and Software Tools

The web based and software tools are gives graphical representation of tool which are not accessible and cannot be accessed using NVDA.

Chapter 2:

2.1.2.5 Lab - Determining the IP Address Configuration of a Computer

2.3.4.3 Lab - Building an Ethernet Crossover Cable

Chapter 3:

3.2.2.4 Lab - Determine the MAC Address of a Computer

ITN 5.1.3.6 Lab - Viewing Network Device MAC Addresses The topology is one router labelled R1, one switch labelled S1, and one PC labelled PC-A. Interface G0/1 of router R1 is connected to interface F0/5 of switch S1. Interface F0/6 of S1 is connected to PC-A.

3.3.3.2 Lab - Viewing Wired and Wireless NIC Information

ITN 4.2.4.6 Lab - Viewing Wired and Wireless NIC Information The diagrams associated with this lab are described within the lab text.

3.4.3.5 Lab - Viewing ARP Traffic

ITN ??? 5.2.1.8 Lab - Observing ARP with the Windows CLI, IOS CLI, and Wireshark The topology is one router labelled R1, two switches labelled S1 and S2, and two PCs labelled PC-A and PC-B. Interface G0/1 of router R1 is connected to interface F0/5 of switch S1. Interface F0/6 of S1 is connected to PC-A. Interface F0/1 of router S1 is connected to interface F0/1 of switch S2. Interface F0/1 of S2 is connected to PC-B. Part 4. This part is currently not accessible. It will be rewritten to reference T-Shark instead of WireShark.

ITN 3.3.3.4 Lab - Using Wireshark to View Network Traffic This lab is currently not accessible. It will be rewritten to reference T-Shark instead of WireShark.

3.4.3.5 Lab - Viewing ARP Traffic

3.5.2.5 Lab - Connect and Configure Hosts

Not available

Chapter 4:

4.1.4.3 Lab - Windows-Calculator

ITN 8.1.2.7 Lab - Using the Windows Calculator with Network Addresses The diagram for this lab shows the Windows Calculator in Programmer mode.

Chapter 5:

5.3.1.3 Lab - Observing DNS Name Resolution

ITN 10.2.2.9 Lab - Observing DNS Resolution There are no topologies or diagrams requiring description associated with this lab.

Chapter 6:

6.6.2.4 Lab - Investigating Mobile Device Network Settings

Chapter 7:

7.4.2.3 Lab - Configure Firewall Settings

Chapter 8:

8.1.2.3

8.1.2.3 Lab - Observe the Start-Up Process on a Cisco Switch

8.2.2.4 Lab - Establishing a Console Session

ITN 2.1.4.9 Lab - Establishing a Console Session with Tera Term The topology is a switch connected with a console cable to a PC. Step 2 d. The diagram referred to is a terminal screen showing typical Switch startup output Part 3: (Optional) Access a Cisco Router Using a Mini-USB Console Cable The topology is a router connected with a console cable to a PC.

8.5.4.2 Lab - Building a Switch and Router Network

ITN 6.4.3.5 Lab - Building a Switch and Router Network The topology is one router labelled R1, one switch labelled S1, and two PCs, one labelled PC-A, and one labelled PC-B. Interface G0/1 of router R1 is connected to interface F0/5 of switch S1. Interface F0/6 of S1 is connected to PC-A. Interface G0/0 is connected to PC-B. Appendix A: Configuration Details for Steps in Part 2 Step 1: Configure the PC interfaces, sub-step c “Ping PC-B from a command prompt window on PC-A.” The graphic shows unsuccessful pings with the message “Destination host unreachable”.

Chapter 9:

9.2.4.4 Lab - Troubleshooting Using Network Utilities

Maybe ITN 11.3.2.3 Lab - Testing Network Latency with Ping and Traceroute The topology is PC connected to a router designated as Default Gateway. The router is connected to a cloud icon labelled Internet.

9.3.2.2 Lab - Troubleshooting Physical Connectivity

Chapter 10:

Chapter 11:

Edit - History - Print - Recent Changes - Search
Page last modified on September 14, 2016, at 03:28 PM