Lap 5 (7.1.6, 7.2.7, 7.3.7) - Team 8-IA1906-NWC204
Lap 5 (7.1.6, 7.2.7, 7.3.7) - Team 8-IA1906-NWC204
7.1.6
Part 1: Examine the Header Fields in an Ethernet II Frame
Step 1: Review the Ethernet II header field descriptions and lengths.
Step 4: From the command prompt window, ping the default gateway of your
PC. Open a Windows command prompt.
From the command window, ping the default gateway using the IP address
that you recorded in Step 1.
Step 5: Stop capturing traffic on the NIC.
Click the Stop Capturing Packets icon to stop capturing traffic.
a. In the packet list pane (top section), click the first frame listed. You should
see Echo (ping) request under the Info heading. The line should now be
highlighted.
B. Examine the first line in the packet details pane (middle section). This line
displays the length of the frame
c. The second line in the packet details pane shows that it is an Ethernet II
frame. The source and destination MAC addresses are also displayed.
What is the MAC address of the PC NIC?
f4:7b:09:4e:dc:fc
What is the default gateway’s MAC address?
a0:cf:f5:a0:61:a2
You can click the greater than (>) sign at the beginning of the second line to
obtain more information about the Ethernet II frame. What type of frame is
displayed?
0x0800 or an IPv4 frame type.
e. The last two lines displayed in the middle section provide information
about the data field of the frame.
What is the source IP address?
192.168.1.3
What is the destination IP address?
199.232.46.172
f. You can click any line in the middle section to highlight that part of the
frame (hex and ASCII) in the Packet Bytes pane (bottom section
What do the last two highlighted octets spell?
hi
g. Click the next frame in the top section and examine an Echo reply frame
What device and MAC address is displayed as the destination address?
(a0:cf:f5:a0:61:a2)
Step 7: Capture packets for a remote host.
a. Click the Start Capture icon to start a new Wireshark capture
What are the source and destination IP addresses contained in the data field
of the frame?
Source:This is still the IP address of the PC.
Compare these addresses to the addresses you received in Step 6. The only
address that changed is the destination IP address. Why has the destination
IP address changed, while the destination MAC address remained the same?
Layer 2 frames never leave the LAN. When a ping is issued to a remote
host, the source will use the default gateway MAC address for the
frame destination. The default gateway receives the packet, strips the
Layer 2 frame information from the packet and then creates a new
frame header with the MAC address of the next hop. This process
continues from router to router until the packet reaches its destination
IP address.
Reflection Question
Wireshark does not display the preamble field of a frame header. What does
the preamble contain?
The preamble field contains seven octets of alternating 1010
sequences, and one octet that signals the beginning of the frame,
10101011.
7.2.7
What is the OUI portion of the MAC address for this device?
5C-26-0A
What is the serial number portion of the MAC address for this device?
24-2A-60
Using the example above, find the name of the vendor that
manufactured this NIC.
Dell Inc.
b. From the command prompt on PC-A, issue the ipconfig /all command
Identify the OUI portion of the MAC address for the NIC of PC-A.
00-0A-41
Identify the serial number portion of the MAC address for the NIC of PC-A.
EE-98-55
Identify the name of the vendor that manufactured the NIC of PC-A.
Cisco Systems, Inc
Step 2: Analyze the MAC address for the S1 F0/6 interface.
a, Console into S1 and use the show interfaces vlan 1 command to find the
MAC address information. A sample is shown below. Use output generated by
your switch to answer the questions.
What is the MAC address for VLAN 1 on S1?
0002.4ac7.a27b
What is the MAC serial number for VLAN 1?
C7-A2-7B
What is the OUI for VLAN 1?
00-02-4A
Based on this OUI, what is the name of the vendor?
Did the switch display the MAC address of PC-A? If you answered yes, what
port was it on?
Fa0/6
Reflection Questions
1. Can you have broadcasts at the Layer 2 level? If so, what would the MAC
address be?
=> FF:FF:FF:FF:FF:FF
2. Why would you need to know the MAC address of a device?
=> MAC addresses are the identifiers of a host within a local network
7.3.7
c. Console into switch S1 and S2 and type the show interface F0/1
command on each switch.
Questions: On the second line of command output, what is the hardware
addresses (or burned-in address [bia])?
S1 Fast Ethernet 0/1 MAC Address: 0001.9672.9201
S2 Fast Ethernet 0/1 MAC Address: 0005.5e56.4501
Are there any MAC addresses recorded in the MAC address table?
Yes
What MAC addresses are recorded in the table? To which switch ports are
they mapped and to which devices do they belong? Ignore MAC addresses
that are mapped to the CP
1 0001.9672.9201 DYNAMIC Fa0/1
Step 3: Clear the S2 MAC address table and display the MAC address table
again.
a. In privileged EXEC mode, type the clear mac address-table dynamic
command and press Enter. S2# clear mac address-table dynamic
b. Quickly type the show mac address-table command again.
Questions: Does the MAC address table have any addresses in it for VLAN 1?
Are there other MAC addresses listed?
No. The student will most likely discover that the MAC address for the
other switch’s F0/1 switch port has been quickly reinserted in the MAC
address table.
Wait 10 seconds, type the show mac address-table command, and press
Enter. Are there new addresses in the MAC address table?
No
Step 4: From PC-B, ping the devices on the network and observe the switch
MAC address table.
a. From PC-B, open a command prompt and type arp -a.
Question: Has the switch added additional MAC addresses to the MAC
address table? If so, which addresses and devices?
There may only be one additional MAC address mapping added to the
table, most likely the MAC address of PC-A.
From PC-B, open a command prompt and retype arp -a.
Question: Does the PC-B ARP cache have additional entries for all network
devices that were sent pings?
yes
Reflection Question
On Ethernet networks, data is delivered to devices by their MAC addresses.
For this to happen, switches and PCs dynamically build ARP caches and MAC
address tables. With only a few computers on the network this process
seems fairly easy. What might be some of the challenges on larger
networks?
ARP broadcasts could cause broadcast storms. Because ARP and
switch MAC tables do not authenticate or validate the IP addresses to
MAC addresses it would be easy to spoof a device on the network.