Home > CCNA Access List Sim 2

CCNA Access List Sim 2

February 15th, 2014 Go to comments

Question

A network associate is adding security to the configuration of the Corp1 router. The user on host C should be able to use a web browser to access financial information from the Finance Web Server. No other hosts from the LAN nor the Core should be able to use a web browser to access this server. Since there are multiple resources for the corporation at this location including other resources on the Finance Web Server, all other traffic should be allowed.

The task is to create and apply a numbered access-list with no more than three statements that will allow ONLY host C web access to the Finance Web Server. No other hosts will have web access to the Finance Web Server. All other traffic is permitted.
Access to the router CLI can be gained by clicking on the appropriate host.

All passwords have been temporarily set to “cisco”.
The Core connection uses an IP address of 198.18.196.65
The computers in the Hosts LAN have been assigned addresses of 192.168.33.1 – 192.168.33.254
Host A 192.168.33.1
Host B 192.168.33.2
Host C 192.168.33.3
Host D 192.168.33.4
The servers in the Server LAN have been assigned addresses of 172.22.242.17 – 172.22.242.30
The Finance Web Server is assigned an IP address of 172.22.242.23.
The Public Web Server is assigned an IP address of 172.22.242.17

access_list_sim2.jpg

Answer and Explanation

(Note: If you are not sure how to use access-list, please check out my access-list tutorial at: http://www.9tut.com/access-list-tutorial, also some modifications about the access-list have been reported so you should read the “Some modifications” section at the end of this question to understand more. You can also download this sim to practice (open with Packet Tracer) here: http://www.9tut.com/download/9tut.com_Access-list_sim2.pkt

Corp1>enable (you may enter “cisco” as it passwords here)

We should create an access-list and apply it to the interface which is connected to the Server LAN because it can filter out traffic from both Sw-2 and Core networks. The Server LAN network has been assigned addresses of 172.22.242.17 – 172.22.242.30 so we can guess the interface connected to them has an IP address of 172.22.242.30 (.30 is the number shown in the figure). Use the “show running-config” command to check which interface has the IP address of 172.22.242.30.

Corp1#show running-config

access_list_sim_show_running.jpg

We learn that interface FastEthernet0/1 is the interface connected to Server LAN network. It is the interface we will apply our access-list (for outbound direction).

Corp1#configure terminal

Our access-list needs to allow host C – 192.168.33.3 to the Finance Web Server 172.22.242.23 via web (port 80)

Corp1(config)#access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80

Deny other hosts access to the Finance Web Server via web

Corp1(config)#access-list 100 deny tcp any host 172.22.242.23 eq 80

All other traffic is permitted

Corp1(config)#access-list 100 permit ip any any

Apply this access-list to Fa0/1 interface (outbound direction)

Corp1(config)#interface fa0/1
Corp1(config-if)#ip access-group 100 out

Notice: We have to apply the access-list to Fa0/1 interface (not Fa0/0 interface) so that the access-list can filter traffic coming from both the LAN and the Core networks. If we apply access list to the inbound interface we can only filter traffic from the LAN network.

In the real exam, just click on host C and open its web browser. In the address box type http://172.22.242.23 to check if you are allowed to access Finance Web Server or not. If your configuration is correct then you can access it.

Click on other hosts (A, B and D) and check to make sure you can’t access Finance Web Server from these hosts.

Finally, save the configuration

Corp1(config-if)#end
Corp1#copy running-config startup-config

(This configuration only prevents hosts from accessing Finance Web Server via web but if this server supports other traffic – like FTP, SMTP… then other hosts can access it, too.)

Notice: In the real exam, you might be asked to allow other host (A, B or D) to access the Finance Web Server so please read the requirement carefully.

Some modifications:

Modification 1:

permit host B from accessing finance server access-list 100 permit ip host 192.168.33.2 host 172.22.242.23
deny host B from accessing other servers (not the whole network) access-list 100 deny ip host 192.168.33.2 172.22.242.16 0.0.0.15
permit everything else access-list 100 permit ip any any

Modification 2:

Only allow Host C to to access the financial server access-list 100 permit ip host 192.168.33.3 host 172.22.242.23
Not allow anyone else in any way communicate with the financial server access-list 100 deny ip any host 172.22.242.23
Allow all other traffic access-list 100 permit ip any any

Modification 3:

- Host C should be able to use a web browser(HTTP)to access the Finance Web Server access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80
- Other types of access from host C to the Finance Web Server should be blocked
- All access from hosts in the Core or local LAN to the Finance Web Server should be blocked
access-list 100 deny ip any host 172.22.242.23
(because the requirement says we can not use more than 3 statements so we have to use “any” here for the hosts in the Core and hosts in local LAN)
- All hosts in the Core and local LAN should be able to access the Public Web Server * access-list 100 permit ip any host
(If the question asks this, surely it has to give you the IP of Public Web Server) but in the exam you should use “access-list 100 permit ip any any”

Modification 4:

Host C should be able to use a web browser to access the financial web server access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80
Other types of access from host C to the finance web server should be blocked access-list 100 deny ip host 192.168.33.3 host 172.22.242.23
All hosts in the core and on the local LAN should be able to access the Public web server * access-list 100 permit ip any host
(The IP of Public Web Server will surely be given in this question) but in the exam you should use “access-list 100 permit ip any any”

* There are some reports about the command of “All hosts in the core and on the local LAN should be able to access the Public web server” saying that the correct command should be “access-list 100 permit ip any any”, not “access-list 100 permit ip any host (IP of Public Web Server)”. Although I believe the second command is better but maybe you should use the first command “access-list 100 permit ip any any” instead as some reports said they got 100% when using this command (even if the question gives you the IP address of Public Web Server). It is a bug in this sim.

(Note: Don’t forget to apply this access list to the suitable interface or you will lose points
interface fa0/1
ip access-group 100 out

And in the exam, they may slightly change the requirements, for example host A, host B instead of host C… so make sure you read the requirement carefully and use the access-list correctly)

I created this sim in Packet Tracer v5.2.1 so you can practice with it. You will need new version of Packet Tracer to open it (v5.1+).

accesslist_sim2_packet_tracer.jpg

Download this sim here

Notice: After typing the commands above, if you make a “ping” from other hosts (PC0, PC1, PC3) then PC4 (Finance Web Server) can still reply because we just filter HTTP traffic, not ICMP traffic. To generate HTTP traffic, select “Web Browser” in the “Desktop” tab of these PCs. When a web browser opens, type the IP address of Finance Web Server and you can see how traffic flows in Simulation Mode.

accesslist2_test_http.jpg

And notice that in the initial configuration of this sim the Core network can ping Finance Web Server. We have to create an access-list that can filter this traffic too.

Other lab-sims on this site:

CCNA NAT SIM Question 1

CCNA NAT SIM Question 2

CCNA Frame Relay Sim

CCNA Configuration SIM Question (RIPv2 SIM)

CCNA VTP SIM

CCNA EIGRP LAB

CCNA Drag and Drop SIM

CCNA Implementation SIM

Comments
Comment pages
1 43 44 45 46 47 63 41
  1. eight0three
    September 11th, 2014

    passed with score of 1000.
    labs: eigrp, acl, acl2- mod3 (host A)

    go through 9tut and actual tests.
    practicing from watson and doing labs on packet tracer will help a lot.

  2. Dunkin
    September 12th, 2014

    Is acl refering to access list sim? Thank you,

  3. Brendan
    September 12th, 2014

    Pass the Exam today, Alhamdulilah (917/1000)
    Just study watson & Gillbest VCE guys, simulation ACL1 & ACL2 (modification 2 using user pc D–they change the IP address) , EIGRP (they change it to AS 2 on R1) make sure to issue command ‘sh ip route’ for testing purpose.
    Frankly speak, its a lot easier then version CCNA before (640-802)
    CCNP switching next!!!!Insyallah….

  4. Ernesto
    September 12th, 2014

    @Brendan what do you mean with they change EIGRP to AS 2 on R1?? Thank you very much.

  5. kumresh
    September 12th, 2014

    passed my CCNA exam 2day with 931/1000!!! really so thankful to 9tut !! just study watson and gillbest vce simulation its more than enough. lab simuation ACL1, ACL2 and EIGRP !! for safer side study other lab sim in 9tut. !! I finished my exam within 45 minutes!! thanks to 9tut.

  6. Freya
    September 12th, 2014

    Passed. This was in exam today except host B. Mod 3. Use Watson314 and check questions on right on this site.

  7. Brendan
    September 12th, 2014

    @ernesto the AS number for R1 they set it to number 2..so i just change it from AS212 (on R3) to AS2…And check all the routing via command ‘sh ip route’..and its correct if the subnet is advertise on R1.

  8. Anonymous
    September 13th, 2014

    if any one need latest dumps send us a working g mail id with password on
    game.rose@hotmail.com

  9. slid
    September 14th, 2014

    Do you know if mentioned bug * in ACL2 modifications 3/4 has been corrected within exam?
    I don’t know whether use “access-list 100 permit ip any any” or IP server.

    thanks a lot, having my exam planned on 17th Sep.

  10. vic
    September 14th, 2014

    anyone to verify the bug on ACL2 modifications 3 and 4?
    i’ll have the exam tomorrow, thanks ;)

  11. ayo
    September 14th, 2014

    use d ‘permit ip any any in exam’..

  12. floud
    September 14th, 2014

    can please any one explain to me

    why we r using

    Corp1(config)#access-list 100 deny tcp any host 172.22.242.23 eq 80

    because i think that

    access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80

    will include that also other users will be blocked in 172.22.242.23

  13. Anonymous
    September 14th, 2014

    pls send the latest ccna dumps… hemnath25@yahoo.com

  14. Anonymous
    September 14th, 2014
  15. nameless
    September 15th, 2014

    do we have to modificate corp 1 ip adress,dns,default gateway adress etc. ?

  16. Kamrul
    September 15th, 2014

    ACL, ACL2, EIGRP SIM is enough for pass mark

  17. akida
    September 15th, 2014

    just done my exam 1 hr ago and passed 945. its not hard 9tut is enough to make anyone pass.thanks alot to 9tut
    labs eigrp, acl1 and acl2
    dumps watson

  18. kurTH
    September 15th, 2014

    just passed the exam today… got 986/1000 all thanks to sir james, 9tut, watson dumps, acme.
    the lab is still ACL 1 and 2 modification2… the eirgp has passive interface int the r1 to r3. just remove it and input the networks.. same process… God Bless… email me if you need help… alfechekurt@gmail.com

  19. Anonymous
    September 15th, 2014

    CCNA Access List Sim 2 And CCNA Access List Sim And EIGRP but with 3rd modification laps are exist in exam today i passed it with 972/1000 allhamdu llah (Thanks God)

  20. Omar Tarek
    September 15th, 2014

    CCNA Access List Sim 2 And CCNA Access List Sim And EIGRP but with 3rd modification laps are exist in exam today i passed it with 972/1000 allhamdu llah (Thanks God)

  21. Anonymous
    September 16th, 2014

    This lab is very similar (if not identical) to the Extended Access List example in Lammle’s CCNA study guide from Sybex. Page 522, Chapter 12.

  22. ben
    September 16th, 2014

    same questions as Slid :
    “Do you know if mentioned bug * in ACL2 modifications 3/4 has been corrected within exam?
    I don’t know whether use “access-list 100 permit ip any any” or IP server.
    thanks a lot.”
    Or maybe there is an explanation of permit ip any any?

  23. nameless
    September 16th, 2014

    im gonna take exam 18th sept. are there any new question please share experience?

  24. Rahul
    September 16th, 2014

    Hello friends… Go to ccnalearn.cf to know all about ccna / dumps / exam problems / new questions.. etc all for free.

  25. Rahul
    September 16th, 2014

    Hope it helps all to learn and clear ccna 200-120 exam. http://www.ccnalearn.cf

  26. Saad
    September 17th, 2014

    Can we use ? (Help) during configurations.. in exam..

  27. Ro
    September 17th, 2014

    pass my test today September 17, with 931/1000 Laboratories ACL, ACL 2 MOD 3 and EIGRP are all questions 9 tut.

    9tut study and VCE

    Thanks 9tut

  28. ramos1987
    September 18th, 2014

    I just pass my CCNA today Sept 17, got 1000/1000
    exam is very very very very easy.
    I had 51 questions
    ACL 1 (same), ACL 2 (Modification 3 with Ip address differen), Eigrp ( AS 23, I added a network missing on borderROUTER and change AS on ROUTERDISCK1)
    ALL questions here were in exam
    WATSON and MATTHEW DUMPS is enough
    Thanks 9tuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuut
    Actually thanks 9tuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuut

  29. Twista
    September 18th, 2014

    pls send the latest ccna dumps olivermwangovya@gmail.com

  30. slid
    September 18th, 2014

    thanks a lot, I passed my exam 945/1000. LABS: EIGRP, ACL1 (same), ACL2 Mod3

    Saad,

    Yes, “?” works.

  31. Kasun
    September 19th, 2014

    Thanks 9tut.Today Passed with 903. ACL modification 1 & Eigrp sim. And study watson dump on examcollection. Try to understand the question & answers. Yo will get it.

  32. AAmir
    September 20th, 2014

    Everyone is passing but no inone is mentioning about the BUG in modification 3 & 4 , what shall we write in last

  33. Bilal
    September 20th, 2014

    Can anyone mention please that in modification 3 and 4 , we must write access-list 100 permit ip any any” or we shall mention the address of the server , exam on monday , Admin !!!!!

  34. Saad
    September 20th, 2014

    Passed today with a score of 1000.. labs were ACL 1, ACL 2 (mod 3, but the host was B) and EIGRP slight change..

    Studied : 9tut for labs.. watson dumps for Questions

  35. Saad
    September 20th, 2014

    @Bilal yes.. i wrote permit any any.. got 100%..

  36. Saad
    September 20th, 2014

    @Bilal.. want any help regarding the exam.. skype id: saadnawaz8

  37. Anonymous
    September 20th, 2014

    ccna update!!!! must check this
    http://www.bubblews.com/news/7026831-cisco-ccna

  38. John
    September 21st, 2014

    Can anyone please explain to me about Standard and Extend ACL.
    I know that,
    standard acl = inside source
    extend acl = outside source.
    But what it is the diff.
    Could anyone please explain, thank you in advance.
    the best everyone going for take CCNA EXAM

  39. Agbor
    September 21st, 2014

    Please can someone help me out with WATSON and MATTHEW DUMPS (ojenagborjnr@gmail.com) ? Thanks in advance.

  40. Agbor
    September 21st, 2014

    Thanks to 9tut for providing this platform. I hear everyone giving remarks to 9tut SIMs, WATSON and MATTHEW DUMPS as an aid to passing the CCNA test. However, I has access to only 9tut. I have my test in 1 week time.
    I will be grateful if someone can kindly help me the the dumps (WATSON and MATTHEW). Thanks in advance.

  41. SUDHAKAR. P.Y
    September 21st, 2014

    Hiiiii everyone. I have cleaned CCNA exam. My score:1000/1000.
    1.you can use “?” In simulation. Surely it works so you can see all possible commands.
    2.You can you use short cut key words, 100% it works.
    3.You can’t use tab for few commands:Ex: While declaring Eigrp autonomous system number.
    4.If you need any kind of information or help mail me: mrsrpy@gmail.com.
    5.Make yourself free to revise all 9tut question on the day of exam , means before taking the exam not after the exam
    6.Stop reading half an hour prior to the CCNA exam.

    I hope,the above information will help you to score 1000/1000.

    Regards,
    SUDHAKAR

  42. charles gatundu
    September 22nd, 2014

    passed with 1000
    hint: just understand the concept of all questions , dont try cramming,cisco will throw you off rail and unless you have photgraphic memory to cram all the damps.
    read 9tut and watson.

  43. rock
    September 23rd, 2014

    so, u mean to say that questions were different from 9tut?

  44. AI
    September 23rd, 2014

    Thanks 9Tut just passed the exam… Sim ACL 1 & 2 and EIGRP AS 122…

  45. kasmot
    September 23rd, 2014

    Hi, I will take the exam on September 27 2014.
    I have a question regarding ACL 2 modification 3

    access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80
    access-list 100 deny ip any host 172.22.242.23
    access-list 100 permit ip any any

    shouldn’t it be like this: ?

    access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80
    access-list 100 deny tcp any host 172.22.242.23 eq 80
    access-list 100 permit ip any any

    need your help.

  46. Naidu yadla
    September 23rd, 2014

    Cleared CCNA Today with 1000/1000..Thanks 9tut..and specially for friends who were shared their experience…Prepared Whatson and Matthew dumps…9tut Sims.

  47. Zart
    September 23rd, 2014

    Hey Kasmot,

    It’s “access-list 100 deny ip any host 172.22.242.23″ because you are blocking all other traffic to the web server.

    “access-list 100 deny tcp any host 172.22.242.23 eq 80″ only denies other web traffic

  48. Mark
    September 23rd, 2014

    Hello kasmot.

    Note that 2nd requirement of ACL2 Mod 3, states:
    - Other types of access from host C to the Finance Web Server should be blocked
    – All access from hosts in the Core or local LAN to the Finance Web Server should be blocked

    So we need block all other traffic to Finance server (except web traffic from host c)

    So we need to use ip instead of tcp. So second statement should be:
    access-list 100 deny ip any host 172.22.242.23

  49. WinSxS
    September 24th, 2014

    Passed Today with 1000/1000
    Whatson and Matthew dumps
    EiGRP , ACL1,ACL2

  50. junjun sakiran
    September 24th, 2014

    passed 917 last September 13

Comment pages
1 43 44 45 46 47 63 41
  1. No trackbacks yet.
Add a Comment