ACL - configure and verify access control lists. 5.6 Flashcards

1
Q

Propose of ACLs

A

Controlling which devices have what access to the network.

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

Can ACLs control network traffic

A

Yes. They can function as a packet filter, instructing the router to permit or discard specific traffic.

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

Where are ACLs configured?

A

On the router. global config mode.

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

What makes up ACLs

A

ACEs (Access Control Entries)

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

What are ACEs

A

Series of permit of deny rules.

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

How do ACLs take effect

A

Need to be applied to interface.

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

Once the routers finds a match in ACL

A

It stops looking at other entries in the ACL

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

ACL are applied inbound or outbound.

A

yes

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

Are ACEs processed in order?

A

Yes. Top to bottom. once match is found, action is taken. Any remaining processes afterwards are ignored.

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

What is outbound vs inbound

A

Outbound is interface traffic leaving the router. inbound is the opposite.

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

Maximum of one ACL can be applied to a single interface Per Direction.

A

Inbound: Maximum one ACL
Outbound: Maximum one ACL

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

Implicit deny

A

at the end of all ACLs have a implicit deny. Any entry that doesn’t match the configured entry in the ACL, it will deny.

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

what is a Standard ACL

A

Reference Source IP Address ONLY

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

Two subtypes for Standard ACLs

A

Standard Numbered ACLs

Standard Named ACLs

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

Extended ACLs

A

check based on protocol(TCP, UDP), Source/Destination IP, Source/Destinations Ports.

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

Two subtypes for Extended ACLs

A

Extended Numbered ACLs

Extended Named ACLs

17
Q

numbered ACL’s are identified by

A

ACL 1, ACL 2, ACL3, ect

18
Q

What is the number range standard ACLs can use?

A

1-99 and 1300-1999

19
Q

Basic command to configure a standard numbered ACL is

A

R1(config)# access-list number {deny | permit} ip wildcard-mask

20
Q

what gets rid of implicit deny

A

R1(config)# access-list 1 permit any
or
R1(config)# access-list 1 permit 0.0.0.0 255.255.255.255

21
Q

can we add comments to ACLs

A

yes.

R1(config)# access-list 1 remark ## BLOCK SARAH FROM MA##

22
Q

how to show ACLs

A

do show access-lists
do show access-lists
do show running-config | include access-list

23
Q

how to apply ACL to an interface

A

R1(config-if)# ip access-group number {in | out}

24
Q

rule of thumb for ACLs

A

As close to the destination as possible

25
Standard named ACLs
are identified with a name. "block_bob"
26
how to configure standard named ACL config mode?
R1(config0# ip access-list standard acl-name
27
What is ARP??
Layer 2 broadcast
28
What kinds of things do ACLs look at to identify traffic?
Source destinations, IP addresses and port numbers.
29
Are ACLs supported on both routers and switches?
yes
30
Original use of ACLs
a security feature to see what traffic passes through a router.
31
Routers allow all traffic by default?
yes
32
Two other examples of ACLs being used
identify traffic to give better service to in a QOS policy | Identify traffic to translate to a different IP address in a NAT policy.
33
Extended ACL range
100 - 199, 2000-2699
34
Standard Access List Example
access-list 1 deny 10.10.10.10 0.0.0.0 | access-list 1 permit 10.10.10.0. 0.0.0.225
35
does extended ACL have a default wildcard mask?
no
36
how to create a named ACL syntax
ip access-list standard jesse-ACL-demo