Home > New CCNA – Access list Questions

New CCNA – Access list Questions

September 27th, 2013 Go to comments

Note: If you are not sure about Access list, please read our Access List Tutorial.

Question 1

Which item represents the standard IP ACL?

A. access-list 50 deny 192.168.1.1 0.0.0.255
B. access-list 110 permit ip any any
C. access-list 2500 deny tcp any host 192.168.1.1 eq 22
D. access-list 101 deny tcp any host 192.168.1.1

 

Answer: A

Explanation

The standard access lists are ranged from 1 to 99 and from 1300 to 1999 so only access list 50 is a standard access list.

Question 2

A network administrator is configuring ACLs on a Cisco router, to allow traffic from hosts on networks 192.168.146.0, 192.168.147.0, 192.168.148.0, and 192.168.149.0 only. Which two ACL statements, when combined, would you use to accomplish this task? (Choose two)

A. access-list 10 permit ip 192.168.146.0 0.0.1.255
B. access-list 10 permit ip 192.168.147.0 0.0.255.255
C. access-list 10 permit ip 192.168.148.0 0.0.1.255
D. access-list 10 permit ip 192.168.149.0 0.0.255.255
E. access-list 10 permit ip 192.168.146.0 0.0.0.255
F. access-list 10 permit ip 192.168.146.0 255.255.255.0

 

Answer: A C

Question 3

Refer to the exhibit.

ACL 102
access-list 102 deny tcp 172.21.1.1 0.0.0.255 any eq 80
access-list 102 deny ip any any

RouterA#show ip int
FastEthernet0/0 is up, line protocol is up
Internet address is 192.168.1.144/20
Broadcast address is 255.255.255.255
Address determined by DHCP
MTU is 1500 bytes
Helper address is not set
Directed broadcast forwarding is enabled
Outgoing access list is 102
Inbound access list is not set
Proxy ARP is enabled

An attempt to deny web access to a subnet blocks all traffic from the subnet. Which interface command immediately removes the effect of ACL 102?

A. no ip access-class 102 in
B. no ip access-class 102 out
C. no ip access-group 102 in
D. no ip access-group 102 out
E. no ip access-list 102 in

 

Answer: D

Question 4

On which options are standard access lists based?

A. destination address and wildcard mask
B. destination address and subnet mask
C. source address and subnet mask
D. source address and wildcard mask

 

Answer: D

Question 5

Refer to the exhibit.

ACL 10
Statements are written in this order:
A. permit any
B. deny 172.21.1.128 0.0.0.15
C. permit 172.21.1.129 0.0.0.0
D. permit 172.21.1.142 0.0.0.0

Statements A, B, C, and D of ACL 10 have been entered in the shown order and applied to interface E0 inbound, to prevent all hosts (except those whose addresses are the first and last IP of subnet 172.21.1.128/28) from accessing the network. But as is, the ACL does not restrict anyone from the network. How can the ACL statements be re-arranged so that the system works as intended?

A. ACDB
B. BADC
C. DBAC
D. CDBA

 

Answer: D

Question 6

Which statement about access lists that are applied to an interface is true?

A. you can apply only one access list on any interface
B. you can configure one access list, per direction, per layer 3 protocol
C. you can place as many access lists as you want on any interface
D. you can configure one access list, per direction, per layer 2 protocol

 

Answer: B

Explanation

We can have only 1 access list per protocol, per direction and per interface. It means:

+ We can not have 2 inbound access lists on an interface
+ We can have 1 inbound and 1 outbound access list on an interface

Question 7

A network engineer wants to allow a temporary entry for a remote user with a specific username and password so that the user can access the entire network over the internet. Which ACL can be used?

A. reflexive
B. extended
C. standard
D. dynamic

 

Answer: D

Explanation

We can use a dynamic access list to authenticate a remote user with a specific username and password. The authentication process is done by the router or a central access server such as a TACACS+ or RADIUS server. The configuration of dynamic ACL can be read here: http://www.cisco.com/en/US/tech/tk583/tk822/technologies_tech_note09186a0080094524.shtml

Comments (196) Comments
Comment pages
1 2 3 4 1782
  1. Jero
    January 3rd, 2015

    dear all
    regarding question 6 which is
    Which statement about access lists that are applied to an interface is true?

    A. you can apply only one access list on any interface
    B. you can configure one access list, per direction, per layer 3 protocol
    C. you can place as many access lists as you want on any interface
    D. you can configure one access list, per direction, per layer 2 protocol

    Answer: B

    the answer for me is weird because the “per layer 3 protocol”, I reviewed the Extended ACL used protocol keywords like igmp, tcp, udp, ip, eigrp, icmp but UDP and TCP are not layer 3 protocols, so how this answer is right

  2. Claudio
    January 5th, 2015

    Answer B is correct because in the old days we used to set IPX standard and extended access control list among other legacy layer 3 protocols as Appletalk and DECnet. ;-)

  3. Noah
    January 18th, 2015

    Answer B is correct. This for routed protocols such as IPv4, IPv6 or old IPX

  4. abdel
    January 19th, 2015

    Q3 & 7 in my exam today. Passed

  5. murad
    January 19th, 2015

    Q6 in my exam today . Passed

  6. Ali
    January 22nd, 2015

    Hi,
    Can someone explain the Q.2 briefly please?

  7. Stephen
    January 22nd, 2015

    Hi Ali,

    access-list 10 permit ip 192.168.146.0 0.0.1.255>>> means that it allow ip from .146 to .147 since it used the 0.0.1.255, the .1 on 3rd octet of the wildcard mask, 255-1 = 254 (meaning increment of 2), and on the 4th octet 255 means any,so it allow network 192.168.146.0 and 192.168.147.0. I hope you understand it. It is really hard for me to explain -_-

  8. Anonymous
    January 31st, 2015

    Q3 & 7 today. Praise allah for i have passed

  9. Mahmoud
    February 4th, 2015

    Q5: i think question is wrong how access ends with permit any and he wants to prevent all hosts accept those two ips as he describes??? any one can expline for me please.

  10. Anonymous
    February 5th, 2015

    “permit 172.21.1.129 0.0.0.0″ allow first host
    “permit 172.21.1.142 0.0.0.0″ allow last host
    “deny 172.21.1.128 0.0.0.15″ prevent all hosts
    “permit any” allow all other traffic
    You have to put permit any any at the end access-list because default end access-list is deny any any

    Also correct answer would be DCBA

  11. Chains
    February 11th, 2015

    What’s ACL1Y2 mode 3 ? Pleaseeeeee

  12. Peter
    February 13th, 2015

    q1,2,4,6,7 yesterday. passed!

  13. Che
    February 15th, 2015

    Q3, Q7 on 15th Feb.

  14. noor
    February 16th, 2015

    Hello!
    Can any one explain to me Q2?
    thanks a lot

  15. Chains
    February 16th, 2015

    @noor, only sumary on two networks
    192.168.146.0, 192.168.147.0 ….. sumary 1 acl 1
    192.168.148.0, 192.168.149.0….. sumary 2 acl 2

  16. javb
    February 19th, 2015

    Pass today 890 Thanks….

  17. jude
    February 20th, 2015

    can anyone help me with the latest dumps.i am writing my exam in 2weeks.my e-mail add adekanmbijude@yahoo.com

  18. Purdue_Alum
    February 20th, 2015

    Q2 explanation:

    Convert IP to binary:
    1. 192.168.146.0, 192.168.147.0
    192.168.146.0 — 1001 0010
    192.168.147.0 — 1001 0011
    ==> summary address: 1001 001X = 192.168.146.0 /23 (first 2 octets combined are
    16 bits, the 3rd octet has 7 bits for total of 23 bits or /23)
    Wildcard for /23 = 0.0.1.255 hence the first ACL covers 192.168.146.0 0.0.1.255

    2. 192.168.148.0, 192.168.149.0
    192.168.148.0 — 1001 0100
    192.168.149.0 — 1001 0101
    ==> summary address: 1001 010X = 192.168.148.0 /23 (first 2 octets combined are
    16 bits, the 3rd octet has 7 bits for total of 23 bits or /23)
    Wildcard for /23 = 0.0.1.255 hence the second ACL covers 192.168.148.0 0.0.1.255

  19. Iliyas shaikh
    February 23rd, 2015

    Thanks to 9 tut I passed today with 972/1000 all question from 9tut

  20. Ghada
    February 24th, 2015

    Passed yesterday with score 1000 Thank God

    The exam was 51 questions, only one drag and drop about cable types, all questions are very easy just similar to 9tut.

    The lab simulations were Eigrp , ACL1 (similar to 9tut exactly) and ACL2 (modification 3 but with host B to access the finance server)

    Good luck for everyone, just be relaxed its very very easy :)

    questions3,7 were in it

  21. subodh
    March 12th, 2015

    can anyone tel me that in CCNA exam questions of which chapter apperes???

  22. subodh
    March 12th, 2015

    mostly which chapter???

  23. Apush
    March 18th, 2015

    Passed my CCNA exam today (18th Mar)… Q2, Q4 and Q7 in exam

  24. rusy
    March 21st, 2015

    How many times can u retake ccna afta u fail???

  25. justin13
    March 25th, 2015

    hello 9tut. question:

    the only deceiving part of question #2 is the following:
    /23= 255.255.254.0
    128 subnets/ block size=2
    192.168.146.0 network covers from 192.168.146.1-192.168.147.254
    192.168.148.0 network covers from 192.168.148.1-192.168.149.254

    Technically, 192.168.147.0 is not a network because it resides in the network 192.168.146.0
    I was able to figure the answer out based solely on the wildcard mask, and process of elimination
    Am I missing something because the question phrases it as “hosts on network 192.168.147.0″
    this is a bit deceiving

  26. Peter
    March 26th, 2015

    Q1,Q5

  27. steve
    March 26th, 2015

    Hey 213 look at what you put as the network ip.. that is what is wrong

    your using the wrong network ip

    3 private IP’s for the LAN Host
    Host A 192.168.25.3
    Host B 192.168.25.4
    ******************Host C 192.168.25.5
    2 Public IP addresses
    198.18.188.25
    198.18.188.26
    2 Servers were on
    172.16.25.5
    172.16.25.4
    Q1. Write an Access list that will allow host C to access the Finance accounting server via HTTP.
    Q2.Other LAN hosts should not access the Finance accounting server but can access the Public web server
    Q3. Hosts from the core network should not also access the Finance accounting server but can access the rest.
    I tried creating an ACL with the commands below but always got an error:
    under config mode:
    #access-list 1 permit tcp 192.168.25.5 0.0.0.3 eq 80
    #access-list 1 permit 192.168.25.5 0.0.0.3
    #access-list 1 permit 192.168.25.5 0.0.0.3 eq 80
    #access-list 1 permit tcp 192.168.25.5 0.0.0.3 eq80
    #access-list 1 permit 192.168.25.5 0.0.0.3 eq80
    Got error on the above.

  28. steve
    March 26th, 2015

    hey 213

    you are leaving out .3 and .4 hosts … with that network statement..

  29. Siddheshwar
    March 28th, 2015

    please tell me the exam pattern as below:-
    1.Number of questions
    2.Time of exam in hours
    3.marks
    4.if there is questions set

  30. nesrin
    March 28th, 2015

    In Q3 the answer is no ip access-group 102 out I think they mean there is no such an Acl Active on the interface look at the lesson explanation by clicking on the link at the beginning of the page and you will understand.

  31. Agya
    April 4th, 2015

    Justin13, do not get confused by the phrase “hosts on network 192.168.147.0″. Any IP address can stand for a Host or a Network address, depending on the mask applied. An address with a mask ff.ff.ff.ff can be considered as a Host only. 192.168.147.0 ff.ff.ff.0 is a Network address, whileas 192.168.147.0 ff.ff.fe.0 is a Host address.

  32. justin13
    April 7th, 2015

    thank you Agya. Its possible I am too literal, but I still think the question is worded improperly

    In your explanation you say any IP address can stand for a Host or network address, ‘depending on the mask applied’
    in this case, the 255.255.254.0 mask was applied, so technically 192.168.147.0 is not a network in this subnet mask, no?

  33. sumit7843
    April 15th, 2015

    Pased ccna on 13 april…..got 1000 marks….this is the best site

  34. Iyke
    April 15th, 2015

    Am writing my CCNA 200-120 on the 22nd of april. can someone plz send me the lastest dumps? Ikeshegs@gmail.com

  35. SaedAdi
    April 17th, 2015

    Q1,2,3,5

  36. gidz
    May 2nd, 2015

    192.168.147.0 can be a network with a block size of 1 means with /24 prefix…

  37. gidz
    May 2nd, 2015

    I cant understand question 2
    If i try to summarize the networks 146-149, i get the block size of 1, i cant figure out why are you guys trying to summarize network 192.168.146.0 and 192.168.147.0 together and separate them from 192.168.149.0 and 192.168.149.0?…

  38. metacortex
    May 4th, 2015

    @gidz – don’t summarize. Because of the increment when you have a wildcard mask of 0.0.1.255 you’re including 146-147 and 148-149 in the ACL.
    For example:
    192.168.146.0/23 (subnet mask 255.255.254.0 / wildcard mask 0.0.1.255)
    192.168.146.1 – first host
    192.168.147.254 – last host
    192.168.147.255 – broadcast address

  39. gidz
    May 4th, 2015

    but 192.168.146.0 and 192.168.147.0 was stated as a network, ryt?

  40. A.k
    May 4th, 2015

    Hello guys, those who said they passed the exam, did you guys pay the 9$ and reviewed from there or did you just studied the questions here for free?

  41. CCNA-seeker
    May 8th, 2015

    passed today. Thanks a lot to 9tut. eigrp trouble shooting lab and both ACL labs came.

  42. Anonymous
    May 17th, 2015

    please i need help ! i need dump for my email please !! danielbar159@gmail.com

  43. Anonymous
    May 20th, 2015

    Can anyone send ccna latest dumps in PDF format youimprovedalot@gmail.com

  44. megha
    May 20th, 2015

    can anyone mail me the latest ccna 200-120 dumps please ! nehged1491@gmail.com

  45. winnie
    May 21st, 2015

    Could you please send the latest CCNA(200-120) dumps vinodvarghese79@gmail.com

  46. CCNA Latest Dumps
    May 21st, 2015

    Can someone share me latest CCNA dumps on zameer.ise@gmail.com

Comment pages
1 2 3 4 1782
Add a Comment