You volunteer as the network steward for the Cedar Loop Makerspace. People keep
plugging personal streaming sticks and smart speakers into the open lab benches, hogging
bandwidth and dodging the captive portal. You have a roster of the offending devices by
vendor (the first three octets of their MAC — the OUI). Build a Layer 2 MAC ACL on
bench-sw7 that denies those vendors, bind it inbound on the bench access
ports, and save it so it survives a reboot.
BenchGuard.
Tip: mac access-list extended BenchGuarddeny <mac> 0000.00ff.ffff anyBenchGuard inbound on every bench port: g1/0/5
through g1/0/16.
Tip: interface range g1/0/5 - 16, then mac access-group BenchGuard incopy running-config startup-configRogue device roster (block these vendors):
| # | Vendor (in-scenario) | MAC / OUI | Mask |
|---|
enable — enter privileged modeconfigure terminal (or conf t) — global configmac access-list extended NAME — create / edit a MAC ACLdeny <mac> <mask> any — deny entry (mask wildcards bits to ignore)interface range g1/0/5 - 16 — select a port rangemac access-group NAME in — bind ACL inbound on selected portsshow mac access-list · show running-configcopy running-config startup-config (or write memory) — saveexit — leave current mode · end — back to privileged · ? — help