Access Control Lists Flashcards
Access Control Lists are made up of what kind of entries?
Access Control Entries
What does an extended ACL filter traffic based on?
Source IP, Destination IP, Source Port, Destination Port
What is this extended ACL command doing?
access-list 100 deny tcp 10.10.30.0 0.0.0.255 gt 49151 10.10.20.1 0.0.0.0 eq 23
It’s an extended access control list that is denying TCP traffic to port 23 from the 10.10.30.0/24 subnet going to the destination IP of 10.10.20.1
What numbers are considered standard ACL range?
1-99 and 1300-1999
What numbers are considered extended ACL range?
100-199 and 2000-2699
Provide an example of a standard ACL command?
access-list 1 permit 10.10.10.10 0.0.0.0
What does a wildcard mask of 0.0.0.0 mean?
It means the subnet mask is 255.255.255.255 and that the IP address before the mask is the only IP being targeted.
Standard ACLs can have more parameters than just the source address, correct?
No, only Extended ACLs can have more parameters than the source address
Does an Extended ACL have a default wildcard mask?
No, you have to specify a wildcard mask with an extended ACL
What is this Extended ACL doing?
R1(config)#access-list 100 permit tcp 10.10.10.0 0.0.0.255 gt 49151 10.10.50.10 0.0.0.0 eq telnet
It’s an extended ACL that will permit telnet TCP traffic from the subnet of 10.10.10.0/24 with a source port greater than 49151 going to a destination address of 10.10.50.10
What is this standard ACL doing?
R1(config)#access-list 1 deny 10.10.10.10 0.0.0.0
Denying the IP address of 10.10.10.10. Since it has a wildcard mask of 0.0.0.0 then it’s target that one IP Address and not the subnet range
Name the “steps” in an extended ACL statement?
- Access List Designation
- Access List Number
- Permit or Deny Designation
- Protocol Designation that you’re wanting to block (TCP, UDP)
- IP Subnet with Wildcard Mask
- Greater, Less than or Equal To
- Source Port Number
- Destination IP Subnet with Wildcard Mask
- Equal to
- Destination Port Number or Protocol (Telnet, SSH, etc.)
How would you configure a named ACL?
ip access-list extended (or standard) {name-of-list}
deny {IP network} {wildcard-mask}
deny 10.10.10.0 0.0.0.255
In a standard ACL what is the only piece of information that the router or switch cares about?
The source address
What number range would 1-99 and 1300-1999 be considered in terms the ACL?
Standard Access Control List
What number range would 100-199 and 2000-2699 be considered in terms of the ACL?
Extended Access Control List
Syntax wise, what is the difference between a Numbered ACL and a Named ACL?
A numbered ACL would have a number like:
access-list 100
A named ACL would have the standard or extended designation plus a name like:
ip access-list standard Flackbox
What would be the commands to create a named ACL that would deny 10.10.10.10 and permit the 10.10.10.0/24 network?
ip access-list standard {name-of-ACL}
deny 10.10.10.10 0.0.0.0
permit 10.10.10.0 0.0.0.255