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

11.6.1 Packet Tracer – Switch Security Configuration Answers

Posted on November 15, 2020 By Admin

Last Updated on November 15, 2020 by Admin

11.6.1 Packet Tracer – Switch Security Configuration Answers

Packet Tracer – Switch Security Configuration (Answers Version)

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

VLAN Table

Switch

VLAN Number

VLAN Name

Port Membership

Network

SW-1

10

Admin

F0/1, F0/2

192.168.10.0/24

SW-1

20

Sales

F0/10

192.168.20.0/24

SW-1

99

Management

F0/24

192.168.99.0/24

SW-1

100

Native

G0/1, G0/2

None

SW-1

999

BlackHole

All unused

None

SW-2

10

Admin

F0/1, F0/22

192.168.10.0/24

SW-2

20

Sales

F0/10

192.168.20.0/24

SW-2

99

Management

F0/24

192.168.99.0/24

SW-2

100

Native

None

None

SW-2

999

BlackHole

All unused

None

Objectives

Part 1: Create a Secure Trunk

Part 2: Secure Unused Switchports

Part 3: Implement Port Security

Part 4: Enable DHCP Snooping

Part 5: Configure Rapid PVST PortFast and BPDU Guard

Background

You are enhancing security on two access switches in a partially configured network. You will implement the range of security measures that were covered in this module according to the requirements below. Note that routing has been configured on this network, so connectivity between hosts on different VLANs should function when completed.

Instructions

Step 1:  Create a Secure Trunk.

  1. Connect the G0/2 ports of the two access layer switches.
  2. Configure ports G0/1 and G0/2 as static trunks on both switches.
  3. Disable DTP negotiation on both sides of the link.
  4. Create VLAN 100 and give it the name Native on both switches.
  5. Configure all trunk ports on both switches to use VLAN 100 as the native VLAN.

Step 2:  Secure Unused Switchports.

  1. Shutdown all unused switch ports on SW-1.
  1. On SW-1, create a VLAN 999 and name it BlackHole. The configured name must match the requirement exactly.
  2. Move all unused switch ports to the BlackHole VLAN.

Step 3:  Implement Port Security.

  1. Activate port security on all the active access ports on switch SW-1.
  1. Configure the active ports to allow a maximum of 4 MAC addresses to be learned on the ports.
  2. For ports F0/1 on SW-1, statically configure the MAC address of the PC using port security.
  3. Configure each active access port so that it will automatically add the MAC addresses learned on the port to the running configuration.
  4. Configure the port security violation mode to drop packets from MAC addresses that exceed the maximum, generate a Syslog entry, but not disable the ports.

Step 4:  Configure DHCP Snooping.

  1. Configure the trunk ports on SW-1 as trusted ports.
  1. Limit the untrusted ports on SW-1 to five DHCP packets per second.
  2. On SW-2, enable DHCP snooping globally and for VLANs 10, 20 and 99.

Note: The DHCP snooping configuration may not score properly in Packet Tracer.

Step 5:  Configure PortFast, and BPDU Guard.

  1. Enable PortFast on all the access ports that are in use on SW-1.
  1. Enable BPDU Guard on all the access ports that are in use on SW-1.
  2. Configure SW-2 so that all access ports will use PortFast by default.

End of document

SW1 Configurations

enable

configure terminal

spanning-tree portfast default

interface FastEthernet0/1

 ip dhcp snooping limit rate 5

 switchport mode access

 switchport port-security

 switchport port-security maximum 4

 switchport port-security mac-address sticky

 switchport port-security violation restrict

 switchport port-security mac-address 0010.11E8.3CBB

 spanning-tree portfast

 spanning-tree bpduguard enable

!

interface range FastEthernet0/2, FastEthernet0/10,FastEthernet0/24

 ip dhcp snooping limit rate 5

 switchport mode access

 switchport port-security

 switchport port-security maximum 4

 switchport port-security mac-address sticky

 switchport port-security violation restrict

 spanning-tree portfast

 spanning-tree bpduguard enable

!

interface range FastEthernet0/3 – 9, FastEthernet0/11 – 23

 switchport access vlan 999

 shutdown

!

interface range GigabitEthernet0/1 – 2

 switchport trunk native vlan 100

 ip dhcp snooping trust

 switchport mode trunk

 switchport nonegotiate

vlan 100

 name Native

vlan 999

 name BlackHole

SW-2 Configuration

enable

configure terminal

ip dhcp snooping

ip dhcp snooping vlan 10,20,99

spanning-tree portfast default

interface GigabitEthernet0/1

 switchport trunk native vlan 100

 switchport mode trunk

 switchport nonegotiate

!

interface GigabitEthernet0/2

 switchport trunk native vlan 100

 switchport mode trunk

 switchport nonegotiate

CCNA2 v7 – SRWE – Packet Tracer Answers

Post navigation

Previous Post: 11.1.10 Packet Tracer – Implement Port Security Answers
Next Post: 13.1.10 Packet Tracer – Configure a Wireless Network 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.