Day 34 CCNA - Standard ACLs

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/21

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:21 AM on 9/13/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

22 Terms

1
New cards

What does ACL stand for?

Access Control List

2
New cards

ACLs are an ordered sequence of [...]

ACEs (Access Control Entries)

3
New cards

ACLs must be [...] to take effect.

applied to an interface

4
New cards

ACLs can be applied to an interface [...] or [...]

inbound / outbound

5
New cards

In what order do routers check the ACEs of an ACL?

Top to bottom

6
New cards

When a packet matches an ACE in an ACL, what happens to the remaining entries below the matching entry?

They are ignored (not checked/processed)

7
New cards

How many ACLs can be applied to a single interface?

Two:

one inbound

one outbound

8
New cards

What will happen if a packet doesn't match any of the entries in an ACL?

It will be dropped

('implicit deny')

9
New cards

The [...] tells the router to deny all traffic that doesn't match any of the configured entries in the ACL.

implicit deny

10
New cards

[...] IP ACLs can match based on source IP address only.

Standard

11
New cards

[...] IP ACLs can match based on source/destination IP address and source/destination Layer 4 port.

Extended

12
New cards

What ranges of numbers can be used to identify standard numbered ACLs?

1-99, 1300-1999

13
New cards

Configure a standard numbered ACL entry, specifying the IP/mask.

R1(config)# [...]

access-list number {deny | permit} ip wildcard-mask

14
New cards

Configure a standard numbered ACL entry, permitting or denying all source IPs.

R1(config)# [...]

access-list number {deny | permit} any

15
New cards

Configure a remark for standard numbered ACL:

R1(config)# [...]

access-list number remark remark

16
New cards

View all ACLs on the router:

R1# [...]

show access-lists

17
New cards

View all IP ACLs on the router:

R1# [...]

show ip access-lists

18
New cards

Standard ACLs should be applied as close to the [...] as possible.

destination

19
New cards

[...] ACLs should be applied as close to the destination as possible.

Standard

20
New cards

Apply an ACL to an interface:

R1(config-if)# [...]

ip access-group acl {in | out}

21
New cards

Enter standard named ACL config mode:

R1(config)# [...]

ip access-list standard acl-name

22
New cards

Configure a permit or deny entry for a standard named ACL:

R1(config-std-nacl)# [...]

[entry-number] {deny | permit} ip wildcard-mask