Access Control List (ACLs) Flashcards
An ACL identifies traffic based on characteristics
of the packet that’s going to go through the router such as its ______ and ________ IP address, and ______ number
Source, destination, port
What is the structure of a Access Control Entry
The access-list number
action (permit or deny)
protocol (TCP, UDP, ICMP)
Source Info (IP, Wildcard, qualifier, port)
Destination Info (IP wildcard, qual, port)
What are the different types of qualifiers in an ACE
Greater than, less than, or equal to
What do these ACLs mean?
R1(config)# access-list 1 deny 10.10.10.10 0.0.0.0
R1(config)# access-list 1 permit 10.10.10.0 0.0.0.255
It is denying the host with IP 10.10.10.10 but permitting all other IPs in that subnet
What is the command to view your ACL list?
show access-list # (i.e. 100)
What does ACE stand for
Access Control Entries
What order do you want your ACL to go?
most specific entries at the top of the list.
Less specific down near the bottom
You create ACEs on the ______ interface but apply the ACL on individual _________
Global, ports (whether in or out)
What do these commands do?
access-list 1 deny 10.0.2.0 0.0.0.255
access-list 1 permit 10.0.1.0 0.0.0.255
int f0/0
ip access-group 1 out
denies traffic from 10.0.2.0/24 subnet and permits all traffic from 10.0.1.0/24 in int f0/0 outbound