5.0 Security Fundamentals Flashcards
What is are the differences between standard and extended ACLs?
- Standard ACLs can only filter at Layer 3 using the source IP address
- Extended ACLs can also include destination IP address and Layer 4 attributes, such as protocol and port number
What is an advantage of using an ACL inbound on an interface and best use scenario?
- It will discard denied traffic before processing the packets for routing
- Best used when the source of traffic to filter only comes to/from a single interface
How are outbound ACLs different than inbound ACLs and best scenario?
- Rules are processed after packets have been routed and allowed/discarded at the outbound interface before putting on the wire
- Best when traffic source is from multiple interfaces going out a single interface
What can be omitted from an ACE when the “host” keyword is used?
The wildcard mask
What keyword can be substituted for a source or destination IP address in an ACE?
any
What is the limit on the number of ACLs that can be applied to a single interface?
One inbound + one outbound = 2 for single stack IP
4 total if dual-stack IP (IPv4 & IPv6)
What command can be used to document an ACE?
remark
2 number ranges for standard ACLs
1-99, 1300-1999
2 number ranges for extended ACLs
100-199, 2000-2699
Which is preferred, using numbered or named ACLs and why?
Named ACLs, because the name can provide information about the purpose of the ACL
What is the difference in the commands used to create numbered and named ACLs?
Numbered ACLs: access-list [x] ….
Named ACLs: ip access-list [name]
Where are the optimal places to put standard and extended ACLs?
Standard ACLs - at the destination
Extended ACLs - at the source
What is the full syntax to create a standard numbered ACL?
access-list [access-list-number] {deny | permit | remark text} source [source-wildcard] [log]
*note whole command is repeated for every ACE added to the list
What part of the command to create a standard ACL is optional and what effect does it have?
log - generates a informational message for the first matched packet a rule is applied to, should only be used for troubleshooting or security reasons
What command removes a numbered ACL?
no access-list [number]