SUMMARY STEPS
1.
configure terminal
2.
vlan access-map name
[
number
]
3.
match
{
ip
|
mac
}
address
{
name
|
number
} [
name
|
number
]
4.
action
{
drop
|
forward
}
5.
end
6.
show running-config
7.
copy running-config startup-config
DETAILED STEPS
Purpose
Command or Action
Enters global configuration mode.
configure terminal
Example:
Switch#
configure terminal
Step 1
Creates a VLAN map, and give it a name and (optionally) a number. The
number is the sequence number of the entry within the map.
vlan access-map name
[
number
]
Example:
Switch(config)#
vlan access-map map_1
Step 2
When you create VLAN maps with the same name, numbers are assigned
sequentially in increments of 10. When modifying or deleting maps, you
can enter the number of the map entry that you want to modify or delete.
20
VLAN maps do not use the specific permit or deny keywords. To deny
a packet by using VLAN maps, create an ACL that would match the
packet, and set the action to drop. A permit in the ACL counts as a match.
A deny in the ACL means no match.
Entering this command changes to access-map configuration mode.
Match the packet (using either the IP or MAC address) against one or
more standard or extended access lists. Note that packets are only matched
match
{
ip
|
mac
}
address
{
name
|
number
}
[
name
|
number
]
Step 3
against access lists of the correct protocol type. IP packets are matched
Example:
Switch(config-access-map)#
match ip
against standard or extended IP access lists. Non-IP packets are only
matched against named MAC extended access lists.
address ip2
(Optional) Sets the action for the map entry. The default is to forward.
action
{
drop
|
forward
}
Example:
Switch(config-access-map)#
action
Step 4
forward
Catalyst 2960-XR Switch Security Configuration Guide, Cisco IOS Release 15.0(2)EX1
OL-29434-01
137
Configuring IPv4 ACLs
Creating a VLAN Map