IPv4 ACLs Flashcards

1
Q

What is an Access Control List (ACL)?

A

A set of rules that controls network traffic and reduces network attacks

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

What are the two main types of IPv4 ACLs?

A

Standard ACLs and Extended ACLs

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

What do Standard ACLs filter by?

A

Source IP address only

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

What range of numbers do Standard ACLs use?

A

1-99 and 1300-1999

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

Where should Standard ACLs be placed?

A

Close to the destination

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

What command creates a Standard ACL?

A

access-list [1-99] permit|deny [source] [wildcard]

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

What command applies a Standard ACL to an interface?

A

ip access-group <number> in|out</number>

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

What do Extended ACLs filter by?

A

Source and destination IP addresses; protocols; and port numbers

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

What range of numbers do Extended ACLs use?

A

100-199 and 2000-2699

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

Where should Extended ACLs be placed?

A

Close to the source

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

What command creates an Extended ACL?

A

access-list 101 deny tcp 192.168.10.0 0.0.0.255 172.16.5.0 0.0.0.255 eq 80

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

What command applies an Extended ACL to an interface?

A

ip access-group [number] in|out

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

What protocol keywords can be used in Extended ACLs?

A

ip; tcp; udp; icmp; etc.

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

What does the ‘eq’ keyword specify in an ACL?

A

A specific port number or service (e.g.; eq 80 for HTTP)

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

What does the wildcard mask in an ACL do?

A

It specifies which bits of an IP address to ignore in comparisons

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

What is an implicit deny in ACLs?

A

A default rule at the end of every ACL that denies all traffic not explicitly permitted

17
Q

What command shows the applied ACLs and statistics?

A

show access-lists

18
Q

How can ACLs affect routing?

A

They do not affect routing decisions; only packet forwarding through the router

19
Q

What is the difference between named and numbered ACLs?

A

Named ACLs use custom names and offer more configuration options

20
Q

What command starts a named ACL?

A

ip access-list standard|extended <name></name>

21
Q

How do you remove a specific rule from a named ACL?

A

Use the ‘no’ command followed by the rule

22
Q

Can ACLs be used for VTY (telnet/SSH) lines?

A

Yes; to control remote access to the router