Requirement: allow port f0/1 to accept traffic only from MAC address 1111:2222:3333 and "switchport port-security" command cannot be used.
Solution: mac access-list extended MAC-FILTER
permit host 1111:2222:3333 any
int f0/1
mac access-group MAC-FILTER in
Can this be a correct solution?