CCNA Module 6 - Basic IP ACL

CCNA Module 6 - Basic IP ACL

12th Grade

8 Qs

quiz-placeholder

Similar activities

Remedial ASAS Kelas XII  Smtr 5

Remedial ASAS Kelas XII Smtr 5

12th Grade

10 Qs

Module 11- IP Addressing

Module 11- IP Addressing

9th - 12th Grade

10 Qs

NAT(Internet Gateway)

NAT(Internet Gateway)

12th Grade

10 Qs

PRETEST VLAN

PRETEST VLAN

12th Grade

7 Qs

IP addresses

IP addresses

12th Grade

10 Qs

Administrasi Infrastruktur Jaringan

Administrasi Infrastruktur Jaringan

12th Grade

11 Qs

Quiz Formatif 1 KKNI II TKJ

Quiz Formatif 1 KKNI II TKJ

12th Grade

10 Qs

اساسيات الشبكة

اساسيات الشبكة

9th - 12th Grade

10 Qs

CCNA Module 6 - Basic IP ACL

CCNA Module 6 - Basic IP ACL

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Alicia Pierce

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If a numbered ACL utilized the number 1600, which type of ACL would it be?


Extended

Named

Standard

Broad

Answer explanation

There are four different types of ACL that are taught in the CCNA: standard numbered, extended numbered, standard named, and extended named. The standard numbered ACLs use the range 1–99 and 1300–1999, and the extended numbered ACLs use the range from 100–199 and 2000–2699.

Named ACLs use names instead of numbers to identify the ACLs, making that answer incorrect. IOS has no "Broad ACL" feature, making that answer incorrect.

Types of IP ACLs Page number:1257

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which option would be the correct wildcard mask to match a subnet with the 255.255.248.0 subnet mask?

0.0.31.255

0.0.3.255

0.0.7.255

0.0.15.255

Answer explanation

The easiest way to calculate wildcard masks when they are new is to subtract each of a subnet’s octets from 255. For this question the subnet mask is 255.255.248.0. The first two octets are easy as 255-255 = 0. The third octet would be 255 – 248 = 7 and the fourth octet would be 255 – 0 = 255. This results in a wildcard mask of 0.0.7.255.

Finding the Right Wildcard Mask to Match a Subnet Page number:1263

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which Cisco router ACL ACE would match only the IP address 1.2.3.4 using ACL number 10?

access-list permit 10 1.2.3.4

access-list permit 10 ip 1.2.3.4

access-list 10 permit 1.2.3.4

access-list 10 permit ip 1.2.3.4

Answer explanation


Of the four answers, only the correct answers shows syntax that IOS would accept as correct. The incorrect answers include mistakes such as: 

  • Using the ip keyword with a standard ACL

  • Placing the permit keyword before the ACL number (10)

Matching the Exact IP Address Page number:1260

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which options are true about implementing standard ACLs?

All standard ACLs have a default deny action.

Place them as close to the source as possible.

All standard ACLs have a default permit action

Place them as close to the destination as possible.

Answer explanation

When configuring a standard ACL (and any ACL type), the default action is to deny any unmatched traffic and to place it as close to the destination as possible. This second statement is a recommended best practice because standard ACLs are very broad (compared with extended ACLs) and can accidently filter out more than just the intended traffic.

Implementing Standard IP ACLs Page number:1264

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which source address in the answers would ACE access-list 1 permit 172.16.0.0 0.0.0.255 match?

172.16.16.100

172.17.0.100

172.16.0.100

172.16.1.100

Answer explanation

The statement shown in the question would match the addresses from 172.16.0.0 through 172.16.0.255.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which option would be the correct subnet specified with the ACL ACE access-list 1 permit 192.30.32.0 0.0.31.255?

192.30.32.0 255.255.128.0

192.30.32.0 255.255.240.0

192.30.32.0 255.255.192.0

192.30.32.0 255.255.224.0

Answer explanation

For the purposes of the CCENT and CCNA exams, the address specified in the statement (in the question) is assumed to be the correct subnet number (thus the lowest available address in the matched IP range). That said, to convert a wildcard mask back to a subnet mask, use the following technique: Take 255 and subtract the wildcard mask octet value. The first and second wildcard octets is 0, 255 – 0 = 255. The third wildcard octet is 31, 255 – 31 = 224. The fourth wildcard octet is 255, 255-255 = 0. This gives you a subnet mask of 255.255.224.0. The range of addresses can be found by taking the wildcard mask and adding it to the original network number configured. This will give you the highest range address; 192 + 0 = 192, 30 + 0 = 30, 32 + 31 = 63, 0 + 255 = 255. This makes the lowest number in the range 192.30.32.0 and the highest number 192.30.63.255.

Reverse Engineering from ACL to Address Range Page number:1270

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Refer to the diagram; how many different interfaces can traffic from LAN A to LAN B be filtered with an ACL?

3

4

2

1

Answer explanation

Based on the topology there are four different places that traffic could be filtered from LAN A to LAN B: inbound on R1’s Gi0/1 interface, outbound on R1’s Gi0/0 interface, inbound on R2’s Gi0/0 interface, and outbound on R2’s Gi0/1 interface.

ACL Location and Direction Page number:1255

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Refer to the exhibit and diagram; as a network engineer, you are tasked with implementing an ACL that will correctly permit and deny the indicated networks from entering into R1. Will the configuration shown in the exhibit successfully meet this goal?

R1

interface FastEthernet0/0

ip access-group 1 in

access-list 1 permit 192.168.56.192 0.0.0.127

access-list 1 permit 192.168.105.128 0.0.0.7

Exhibit Above

No, the second statement does not match the correct network.

No, the first statement does not match the correct network.

Yes

No, the deny statement is missing from the end of the ACL.

Answer explanation

The first ACL statement is using an incorrect wildcard mask. To correctly match the 192.168.56.192/26 network, the wildcard mask should have been 0.0.0.63, not 0.0.0.127. The second statement is correct, and the denial of the 192.168.0.0/18 network will be completed by the implicit denial at the end of the ACL.

Matching Logic and Command Syntax Page number:1260