Networking Technology NET 272 - Lab Exercise Advanced STP - PVST+, RSTP, MST Conducted On 9/16 By: Chris Ortiz
Networking Technology NET 272 - Lab Exercise Advanced STP - PVST+, RSTP, MST Conducted On 9/16 By: Chris Ortiz
As can be seen from the diagram above, there are three customer VLANs (Engineering-100,
Marketing-200 and Finance-100) and the management VLAN-1. After cabling the above configuration,
the next step, since working with VLANS, was to ensure that the VLAN configuration (database) was
clean.
Acc3(config)#vtp password cisco Sets the VTP domain password (must match)
The distribution switches in the network were also configured with default gateways and
configured as VTP servers. We manually configure our trunking ports to trunk mode:
Acc3(config-if)#switchport trunk encapsulation dot1q
Acc3(config-if)#switchport mode trunk
We verify trunking between access and distribution switches by executing the following command:
DS2#show int trunk
Once these switches are configured as VTP servers with the matching domain name and
password, they begin to send VLAN information.
Acc3(config)#vtp mode server Sets VTP to server mode
Acc3(config)#vtp password cisco Sets the VTP domain password (must match)
Finally, the VLANs are created on the distribution switches (VTP servers) and the VLAN
information is then propagated to the client (and server or transparent) switches participating in this
VTP instance.
We know that the only way for a host in one VLAN to pass traffic to a host in a different VLAN is
to introduce routing either statically or dynamically. In order to first “tell” a multi-layer switch that it
will perform as a layer 3 device, the following command must be issued:
DS2(config)#ip routing
At this point, devices within the same VLAN are able to communication with each other. We
verify this with ping commands.
Our next steps were to configure links between core and distribution as routed ports, configure
an ether-channel between the core switches, and verify operation of EIGRP:
NOTE: During this portion of the lab exercise, we identified a problem with a single workstation
communicating. What we saw from a Wireshark capture was that one PC was rejecting ARP
requests. We finally rebooted the machine to resolve the issue, which led us to believe that the
workstation was possibly “latched” onto a previously configured IP address and network.
Our next step was to verify routing. Routing table from DS1 perspective looks like this:
DS1_3560_5#sho ip route
Group: 1
----------
Group state = L3
Ports: 2 Maxports = 16
Port-channels: 1 Max Port-channels = 16
Protocol: LACP
At this point, we are able to successfully ping “around” the network and between VLANs.
Based on the topology, spanning tree ensures redundancy without loops between the access
and distribution layers. However, there is a single connection at the core layer to the internet router. If
Core2 were to fail, access to the internet from this network would be unavailable, as well as access from
the internet to this network.