Access and NAT Flashcards
When does a packet stop within an access list?
first match
What rule is at the bottom of every ACL?
implicit deny
What are the different types of ACLs?
standard, extended, reflexive
Standard ACLs make matches based on what criteria?
source address
What kind of lists are Access Control lists?
list of permit and deny statements
Extended ACLs make matches based on what criteria?
source/destination address, protocol, source/destination port number
What command will allow you to use Named ACLs?
ip access-list
Standard access lists can only permit or deny based on the source address. True or false?
True
What is the wildcard mask of 192.168.1.0?
0.0.0.255
What is the wildcard mask of 10.1.1.1?
0.0.0.0
What does permit 0.0.0.0 255.255.255.255 do within an ACL?
permit any
What does a sequence number do for the access list?
dictate order of statements
What command is used to access an ACL?
ip access-list standard ‘name’
What would the command “ip access-list standard INTERNETFILTER” do?
enter configuration for the standard access list named INTERNETFILTER
What would the command “15 deny host 10.1.1.5” do?
deny host 10.1.1.5 with a sequence number of 15
What command would be used to allow the ip address of 192.168.1.0?
permit 192.168.1.0 0.0.0.255