Activity 3
Activity 3
Learning Objectives
View the default VLAN configuration. Configure VLANs. Assign VLANs to ports. Configure trunking.
Introduction
VLANs are helpful in the administration of logical groups, allowing members of a group to be easily moved, changed, or added. This activity focuses on creating and naming VLANs, assigning access ports to specific VLANs, changing the native VLAN, and configuring trunk links.
Step 3. Verify connectivity between PCs on the same network. Notice that each PC can ping the other PC that shares the same network: PC1 can ping PC4 PC2 can ping PC5
PC3 can ping PC6 Pings to PCs in other networks fail. What benefit will configuring VLANs provide to the current configuration? ____________________________________________________________________________________ ____________________________________________________________________________________ ____________________________________________________________________________________
Step 2. Verify the VLAN configuration. After creating the VLANs, return to privileged EXEC and issue the show vlan brief command to verify the creation of the new VLANs. S1#show vlan brief VLAN Name Status Ports ---- ------------------------------ --------- ------------------------------1 default active Fa0/1, Fa0/2, Fa0/3, Fa0/4 Fa0/5, Fa0/6, Fa0/7, Fa0/8 Fa0/9, Fa0/10, Fa0/11, Fa0/12 Fa0/13, Fa0/14, Fa0/15, Fa0/16 Fa0/17, Fa0/18, Fa0/19, Fa0/20 Fa0/21, Fa0/22, Fa0/23, Fa0/24 Gig1/1, Gig1/2 10 Faculty/Staff active 20 Students active 30 Guest(Default) active 99 Management&Native active 1002 fddi-default active 1003 token-ring-default active 1004 fddinet-default active 1005 trnet-default active S1#
All contents are Copyright 19922007 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 2 of 5
Step 3. Create the VLANs on S2 and S3. On S2 and S3, use the same commands you used on S1 to create and name the VLANs. Step 4. Verify the VLAN configuration. Use the show vlan brief command to verify all VLANs are configured and named. Step 5. Check results. Your completion percentage should be 38%. If not, click Check Results to see which required components are not yet completed.
S1(config-if)#switchport mode trunk S1(config-if)#switchport trunk native vlan 99 S1(config-if)#interface FastEthernet 0/3 S1(config-if)#switchport mode trunk S1(config-if)#switchport trunk native vlan 99 The trunk port takes about a minute to become active again. You can switch between Realtime and Simulation modes three or four times to quickly bring the port back up. Then, the ports on S2 and S3 that connect to S1 become inactive. Again, switch between Realtime and Simulation modes three or four times to quickly bring the ports back up. Once the ports become active, you periodically receive the following syslog messages: %CDP-4-NATIVE_VLAN_MISMATCH: Native VLAN mismatch discovered on FastEthernet0/1 (99), with S2 FastEthernet0/1 (1). %CDP-4-NATIVE_VLAN_MISMATCH: Native VLAN mismatch discovered on FastEthernet0/3 (99), with S3 FastEthernet0/3 (1). You configured the native VLAN on S1 to be VLAN 99. However, the native VLAN on S2 and S3 is set to the default VLAN 1. Step 2. Verify connectivity between devices on the same VLAN. Although there is currently a native VLAN mismatch, pings between PCs on the same VLAN are now successful. Why? ____________________________________________________________________________________ ____________________________________________________________________________________ ____________________________________________________________________________________ Step 3. Verify trunking is enabled on S2 and configure VLAN 99 as the native VLAN. Dynamic Trunking Protocol (DTP) has automatically enabled the Fast Ethernet 0/1 port on S2 for trunking. Once you configured the mode to trunking on S1, DTP messages sent from S1 to S2 automatically informed S1 to move the state of Fa0/1 to trunking. This can be verified with the following command on S1: S2#show interface fastEthernet 0/1 switchport Name: Fa0/1 Switchport: Enabled Administrative Mode: dynamic auto Operational Mode: trunk Administrative Trunking Encapsulation: dot1q Operational Trunking Encapsulation: dot1q Negotiation of Trunking: On Access Mode VLAN: 1 (default) Trunking Native Mode VLAN: 1 (default) <output omitted> S2# Notice that the administrative mode is set to dynamic auto. This is the default state of all ports on a Cisco IOS switch. However, DTP has negotiated trunking, so the operation mode is trunk, resulting in a native VLAN mismatch. As a best practice, configure the administrative mode of the trunking interface to be in trunk mode. This ensures that the interface is statically configured as a trunk port and never negotiates a different mode. S2(config)#interface FastEthernet 0/1 S2(config-if)#switchport mode trunk
All contents are Copyright 19922007 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 4 of 5
To correct the native VLAN mismatch, configure the trunking port with the switchport trunk native vlan 99 command. S2(config-if)#switchport trunk native vlan 99 Step 4. Verify trunking is enabled on S3 and configure VLAN 99 as the native VLAN. DTP has also successfully negotiated a trunk between S1 and S3. S3#show interfaces fastEthernet 0/3 switchport Name: Fa0/3 Switchport: Enabled Administrative Mode: dynamic auto Operational Mode: trunk Administrative Trunking Encapsulation: dot1q Operational Trunking Encapsulation: dot1q Negotiation of Trunking: On Access Mode VLAN: 1 (default) Trunking Native Mode VLAN: 1 (default) <output omitted> S3# Configure the administrative mode of the trunking interface to be in trunk mode, and correct the native VLAN mismatch with the switchport trunk native vlan 99 command. Step 5. Check results. Your completion percentage should be 100%. If not, click Check Results to see which required components are not yet completed.
All contents are Copyright 19922007 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information.
Page 5 of 5