#configure terminal | Enter configure mode. |
(config)#interface ge4 | Enter interface mode. |
(config-if)#ip address 11.11.11.11/24 | Assign IPv4 address. |
(config-if)#exit | Exit access list mode. |
(config)#mac access-list mac1 | Enter mac access list mode. |
(config-mac-acl)#permit 0000.3ae0.456d 0000.0000.0000 any arp request | Create an access rule to permit specific ARP request. |
(config-mac-acl)#permit 0000.3ae0.456d 0000.0000.0000 any arp response | Create an access rule to permit specific ARP response. |
(config-mac-acl)#permit any any ipv4 | Create an access rule to permit any IPv4 packet. |
(config-mac-acl)#exit | Exit access list mode. |
(config)#interface ge4 | Enter interface mode. |
(config-if)#mac access-group mac1 in | Apply access group mac1 for inbound traffic to the interface. |
(config-if)#end | Exit interface and configure mode. |