Jeremy's IT Lab CCNA Extended ACLs Day 35

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/25

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 6:46 AM on 7/24/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

26 Terms

1
New cards

[...] = IP protocol number 1

ICMP

2
New cards

[...] = IP protocol number 17[...] = IP protocol number 17

UDP

3
New cards

[...] = IP protocol number 6

TCP

4
New cards

[...] = IP protocol number 88

EIGRP

5
New cards

[...] = IP protocol number 89

OSPF

6
New cards

Configure an extended ACL entry, specifying protocol, source IP, and destination IP:

R1(config)#

access-list number {permit | deny} protocol src-ip dest-ip

(use either host before each IP address for /32, or specify a wildcard mask)

7
New cards

Configure an extended ACL entry, specifying protocol, source IP, and destination IP:

R1(config-ext-nacl)#

{permit | deny} protocol src-ip dest-ip

(use either host before each IP address for /32, or specify a wildcard mask)

8
New cards

Create an extended ACL entry to permit or deny all traffic:

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

{permit | deny} ip any any

9
New cards

Delete an ACL entry by specifying the sequence number:

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

no sequence-number

10
New cards

EIGRP = IP protocol number [...]

88

11
New cards

Enter extended named ACL config mode:

R1(config)# [...]

ip access-list extended {name | number}

12
New cards

Extended numbered ACL ranges:

100-199, 2000-2699

13
New cards

ICMP = IP protocol number [...]

1

14
New cards

OSPF = IP protocol number [...]

89

15
New cards

Resequence an ACL:

R1(config)# [...]

ip access-list resequence acl-id starting-seq-num increment

16
New cards

TCP = IP protocol number [...]

6

17
New cards

UDP = IP protocol number [...]

17

18
New cards

What is the command to create an extended ACL entry, specifying the protocol, source/destination IP, and source/destination port?

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

{permit | deny} protocol src-ip src-port dst-ip dst-port

*src-ip and dst-ip need the host keyword before or a wildcard mask after

*src-port and dst-port need a keyword such as eq before

19
New cards

Which command can be used to view which ACLs are applied to an interface?

R1# [...]

show ip interface interface-id

20
New cards

Which extended ACL entry command option?

[...] matches a single port.

eq port-num

21
New cards

Which extended ACL entry command option?

[...] matches all ports except the specified number.

neq port-num

22
New cards

Which extended ACL entry command option?

[...] matches all ports greater than the specified number.

gt port-num

23
New cards

Which extended ACL entry command option?

[...] matches all ports less than the specified number.

lt port-num

24
New cards

Which extended ACL entry command option?

[...] matches the specified range of ports.

range lowest-number highest-number

25
New cards

You [can/can't] delete individual ACL entries in global config mode.

can't

26
New cards

You [can/can't] delete individual ACL entries in named ACL config mode.

can