11 - Access Control List Flashcards

1
Q

Where are Access Control Lists (ACL) used?

A
  1. Computer networks (firewalls, switches and routers)
  2. Computer file systems (servers and workstations)
  3. Web portals (Canvas, Amazon.com)
  4. Cloud configurations (Amazon Web Service VPC, Microsoft Azure VNET)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Access Control List (ACL)?

A

A rule-based feature that allows network administrators and engineers to configure basic traffic filtering. ACL is a series of commands, that based on info in the packet header, determine whether to drop a packet or forward it.

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

What device contains ACLs?

A

Firewalls

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

What are stateless firewalls?

A

Looks at source and destination with conditions that allow or block traffic

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

What is a stateful firewall?

A

Will understand the details of a connection and allow the return traffic. Most decent firewalls are stateful.

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

What are ACL advantages?

A
  1. Network performance

2. Security the network

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

What does ACL restrict?

A
  • Routing protocol advertisement messages
  • Packets from security protocols
  • Packets from other protocols (e.g. ICMP)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are standard ACLs?

A

Filters traffic according to source IP address when implementing restrictions. Cisco recommends to place this type of ACL as close to the destination device as possible

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

What is an Extended ACL?

A

Filters packets according to the following parameters: source and destination IP address, protocol typ, and source or destination port. Cisco recommends to place this ACL close to source as possible.

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

True or False:

When configuring ACL traffic direction (inbound or outbound), must be specified on an interface.

A

True - so router will implement the proper restriction when examing the source network and destination

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

What does Inbound ACL do?

A

Configures the ACL for inbound traffic. Router will examine incoming traffic to the interface.

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

What does Outbound ACL do?

A

Configures the ACL for outbound traffic. Router will examine outgoing traffic from the interface.

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

What are Wildcards?

A

Inverted subnet masks that can be used in statements for Extended and Standard ACLs.

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

True or False:

The order of statements in an ACL is not crucial

A

Fals

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

What is Access Control Entries (ACEs)?

A

Represent the order of statements in the ACL. Must be planned carefully.

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

What is a Check Order?

A

Router checks each packet’s parameters against the ACEs to find a matching condition. When a condition is met, the ACL will be applied, and additional ACEs will be ignored

17
Q

What is Implicit Deny?

A

An invisible statement at the end of every ACL. When no match is found for a packet, the implicit deny is applied to the packet.

18
Q

True or False:

Each ACP must have at least 2 Permit statements.

A

False - must have at least 1 Permit statements

19
Q

Where are Standard ACLs placed?

A

Close to destination. Cisco set this rule because place Standard ACLs at the source of traffic will prevent comms with any network hosting interfaces to which the ACL applies

20
Q

True or False:

ACLs can be assigned unique names or numbers

A

True

21
Q

What is a Standard Named ACL?

A

Allow unique names to be assigned to ACLs

22
Q

What is Standard Numbered ACL?

A

Allow unique numbers to be assigned to ACLs. Range includes 1-99 and 1300-1999

23
Q

What is Standard Numbered ACL format?

A

1.

24
Q

Does a router verify every packet it forwards against an ACL in chronological order?

A

Yes - Every inbound or outbound packet parameter is checked according to the received information in every ACE. For example, if you send a stateful packet out via HTTP it is only checked against the outbound rules. The return packet is not checked. On the flip side, if you send out a stateless packet like SNMP, the return packet is a new packet and checked against inbound rules.