Skip to content
  • Home
  • CCNA Labs
    • CCNA 1 LAB Activities (v6 & v7)
    • CCNA 2 LAB Activities (v6 & v7)
    • CCNA 3 LAB Activities (v6 & v7)
    • CCNA 4 Lab Activities
  • Linux
    • Linux Unhatched
    • Linux Essentials 2.0
    • Linux Essentials
    • Introduction to Linux I
    • Introduction to Linux II
  • Programming
    • PCAP – Programming Essentials in Python
    • CLA – Programming Essentials in C
    • CPA Programming Essentials in C++
  • About
    • Contact Us
    • Privacy Policy

CCNA 7 Exam Answers 2023

Go with our CCIE, Passed 100%

  • ITE
    • ITE - IT Essentials v7.0
    • ITE - IT Essentials v6.0
      • IT Essentials Lab 2019
    • ITE v5.0 Exam
    • Virtual Activity Laptop
    • Virtual Activity Desktop
  • NE
    • MF
  • CCNA
    • CCNA1
      • CCNA1 v7.0 – ITN
      • CCNA1 v6.0
    • CCNA2
      • CCNA2 v7.0 – SRWE
      • CCNA2 v6.0
    • CCNA3
      • CCNA3 v7.0 – ENSA
      • CCNA3 v6.0
    • CCNA4
      • CCNA4 v6.0
  • Cyber-Security
    • ITC – Introduction to Cybersecurity 2.1 (Level 1)
    • CE – Cybersecurity Essentials 1.1 (Level 2)
    • CCNA CyberOps 1.1 (Level 3)
  • Security
    • CCNA Security v2
  • DevNet
  • CCNA PT Lab 2023

3.4.5 Packet Tracer – Configure Trunks Answers

Posted on November 15, 2020 By Admin

Last Updated on November 15, 2020 by Admin

3.4.5 Packet Tracer – Configure Trunks Answers

Packet Tracer – Configure Trunks (Answers Version)

Answers Note: Red font color or gray highlights indicate text that appears in the Answers copy only.

Addressing Table

Device

Interface

IP Address

Subnet Mask

Switch Port

VLAN

PC1

NIC

172.17.10.21

255.255.255.0

S2 F0/11

10

PC2

NIC

172.17.20.22

255.255.255.0

S2 F0/18

20

PC3

NIC

172.17.30.23

255.255.255.0

S2 F0/6

30

PC4

NIC

172.17.10.24

255.255.255.0

S3 F0/11

10

PC5

NIC

172.17.20.25

255.255.255.0

S3 F0/18

20

PC6

NIC

172.17.30.26

255.255.255.0

S3 F0/6

30

Objectives

Part 1: Verify VLANs

Part 2: Configure Trunks

Background

Trunks are required to pass VLAN information between switches. A port on a switch is either an access port or a trunk port. Access ports carry traffic from a specific VLAN assigned to the port. A trunk port by default is a member of all VLANs. Therefore, it carries traffic for all VLANs. This activity focuses on creating trunk ports and assigning them to a native VLAN other than the default.

Instructions

Part 1:  Verify VLANs

Step 1:  Display the current VLANs.

Open configuration window

  1. On S1, issue the command that will display all VLANs configured. There should be ten VLANs in total. Notice that all 26 access ports on the switch are assigned to VLAN 1.
  2. On S2 and S3, display and verify that all the VLANs are configured and assigned to the correct switch ports according to the Addressing Table.

Close configuration window

Step 2:  Verify loss of connectivity between PCs on the same network.

Ping between hosts on the same the VLAN on the different switches. Although PC1 and PC4 are on the same network, they cannot ping one another. This is because the ports connecting the switches are assigned to VLAN 1 by default. In order to provide connectivity between the PCs on the same network and VLAN, trunks must be configured.

Part 2:  Configure Trunks

Step 1:  Configure trunking on S1 and use VLAN 99 as the native VLAN.

Open configuration window

  1. Configure G0/1 and G0/2 interfaces on S1 for trunking.

S1(config)# interface range g0/1 – 2

S1(config-if)# switchport mode trunk

  1. Configure VLAN 99 as the native VLAN for G0/1 and G0/2 interfaces on S1.

S1(config-if)# switchport trunk native vlan 99

The trunk port takes about a short time to become active due to Spanning Tree Protocol. Click Fast Forward Time to speed the process. After the ports become active, you will periodically receive the following syslog messages:

%CDP-4-NATIVE_VLAN_MISMATCH: Native VLAN mismatch discovered on GigabitEthernet0/2 (99), with S3 GigabitEthernet0/2 (1).

%CDP-4-NATIVE_VLAN_MISMATCH: Native VLAN mismatch discovered on GigabitEthernet0/1 (99), with S2 GigabitEthernet0/1 (1).

You configured VLAN 99 as the native VLAN on S1. However, S2 and S3 are using VLAN 1 as the default native VLAN as indicated by the syslog message.

Question:

Although you have a native VLAN mismatch, pings between PCs on the same VLAN are now successful. Explain.

Type your answers here.

Pings are successful because trunking has been enabled on S1. Dynamic Trunking Protocol (DTP) has automatically negotiated the other side of the trunk links. In this case, S2 and S3 have now automatically configured the ports attached to S1 as trunking ports.

Step 2:  Verify trunking is enabled on S2 and S3.

On S2 and S3, issue the show interface trunk command to confirm that DTP has successfully negotiated trunking with S1 on S2 and S3. The output also displays information about the trunk interfaces on S2 and S3. You will learn more about DTP later in the course.

Question:

Which active VLANs are allowed to cross the trunk?

Type your answers here.

1, 10, 20, 30, 88, and 99.

Step 3:  Correct the native VLAN mismatch on S2 and S3.

  1. Configure VLAN 99 as the native VLAN for the appropriate interfaces on S2 and S3.
  2. Issue show interface trunk command to verify the correct native VLAN configuration.

Step 4:  Verify configurations on S2 and S3.

  1. Issue the show interface interface switchport command to verify that the native VLAN is now 99.
  2. Use the show vlan command to display information regarding configured VLANs.

Question:

Why is port G0/1 on S2 no longer assigned to VLAN 1?

Type your answers here.

Port G0/1 is a trunk port and trunks ports are not displayed.

Close configuration window

End of document

Answer Scripts

Switch S1

interface range g0/1 – 2

 switchport mode trunk

 switchport trunk native vlan 99

Switch S2

interface range g0/1 – 2

 switchport mode trunk

 switchport trunk native vlan 99

Switch S3

interface range g0/1 – 2

 switchport mode trunk

 switchport trunk native vlan 99

 

CCNA2 v7 – SRWE – Packet Tracer Answers

Post navigation

Previous Post: 3.3.12 Packet Tracer – VLAN Configuration Answers
Next Post: 3.5.5 Packet Tracer – Configure DTP Answers
  • CCNA1 v7
  • CCNA2 v7
  • CCNA3 v7
System Test Exam Answers
Modules 1 – 3 Exam Answers
Modules 4 – 7 Exam Answers
Modules 8 – 10 Exam Answers
Modules 11 – 13 Exam Answers
Modules 14 – 15 Exam Answers
Modules 16 – 17 Exam Answers
Practice Final – ITN Answers
Course Feedback
ITN Practice PT Skills Assessment (PTSA)
Final Exam Answers
Modules 1 – 4 Exam Answers
Modules 5 – 6 Exam Answers
Modules 7 – 9 Exam Answers
Modules 10 – 13 Exam Answers
Modules 14 – 16 Exam Answers
ITN Practice Skills Assessment – PT Answers
SRWE Practice Skills Assessment – PT Part 1 Answers
SRWE Practice Skills Assessment – PT Part 2 Answers
SRWE Hands On Skills Exam Answers
SRWE Practice Final Exam Answers
SRWE Final Exam Answers 
Modules 1 – 2 Exam Answers
Modules 3 – 5 Exam Answers
Modules 6 – 8 Exam Answers
Modules 9 – 12 Exam Answers
Modules 13 – 14 Exam Answers
ITN Practice PT Skills Assessment (PTSA) Answers
SRWE Practice PT Skills Assessment (PTSA) – Part 1 Answers
SRWE Practice PT Skills Assessment (PTSA) – Part 2 Answers
ENSA Practice PT Skills Assessment (PTSA) Answers
ENSA Hands On Skills Exam Answers
Practice Final – ENSA Answers
ENSA Final Exam Answers
CCNA Certification Practice Exam Answers

Copyright © 2023 PressExam.