• In a large campus network, you need to control which users can access which resources.
    Traditional ACLs work, but they create a major scalability problem when your network grows.

    The IP-Based Segmentation Problem

    Your network uses ACLs to control which devices can talk to which resources.
    But traditional ACLs are based on IP addresses. When a device moves, gets a new IP, or when your network grows, you have to update every ACL on every switch.

    Imagine your campus network has three groups of users: Employees, Contractors, and Guests.
    You want Employees to access the server VLAN, Contractors to reach only specific resources, and Guests to access only the Internet.

    With traditional ACLs, you write rules based on source and destination IP addresses.

    VLAN 10 with three users Guest Contractor Employee connected to SW1 with IP-based ACL enforcement blocking traffic to server

    Figure 1 – IP-based ACLs work

    This works as long as every user stays on the same subnet.
    But what happens when an Employee moves to a different floor and gets a new IP address?

    Employee moves from VLAN 10 to VLAN 20 gets new IP address 192.168.2.13 ACL enforcement blocks traffic

    Figure 2 – Employee moved, ACL broken

    Your ACLs no longer match. You have to update the rules manually.
    This approach does not scale. In a large campus with hundreds of switches and thousands of users, maintaining IP-based ACLs across every device becomes unmanageable.

    Answer the question below

    Traditional ACLs use which type of address to filter traffic?

    TrustSec at a Glance

    Cisco TrustSec takes a different approach.
    Instead of filtering by IP address, TrustSec classifies users and devices by identity, not IP addresses.

    TrustSec assigns SGT tags to users Employee SGT 10 Contractor SGT 20 Guest SGT 30 policy based on identity not IP address

    Figure 3 – SGT follows user identity

    When a user connects to the network, your switch assigns a Security Group Tag (SGT) to their traffic.
    This tag stays with the traffic as it crosses the network. It does not matter which port, VLAN, or subnet the user is on.

    Policies are then enforced based on the SGT, not the IP address.
    If an Employee moves to a different floor, their SGT stays the same. No ACL changes needed.

    Answer the question below

    Does TrustSec classify traffic based on IP addresses or identity?