Access Control List (ACLs) Flashcards

1
Q

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

A

Source, destination, port

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the structure of a Access Control Entry

A

The access-list number
action (permit or deny)
protocol (TCP, UDP, ICMP)
Source Info (IP, Wildcard, qualifier, port)
Destination Info (IP wildcard, qual, port)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the different types of qualifiers in an ACE

A

Greater than, less than, or equal to

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

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

A

It is denying the host with IP 10.10.10.10 but permitting all other IPs in that subnet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the command to view your ACL list?

A

show access-list # (i.e. 100)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does ACE stand for

A

Access Control Entries

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What order do you want your ACL to go?

A

most specific entries at the top of the list.
Less specific down near the bottom

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

You create ACEs on the ______ interface but apply the ACL on individual _________

A

Global, ports (whether in or out)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

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

A

denies traffic from 10.0.2.0/24 subnet and permits all traffic from 10.0.1.0/24 in int f0/0 outbound

How well did you know this?
1
Not at all
2
3
4
5
Perfectly