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 55 56 57 58 59 63 41
  1. Z-Ahmad
    February 20th, 2015

    958/1000. Passed today, Thanks to 9 tut, the EIGRP, ACL 1 ,2 are valid today.
    PDF -316 questions file. Every question is same.

  2. SAF
    February 21st, 2015

    @illbwolf I think you misunderstood the question. It’s the other way around, “access-list 100 deny ip any(Host C, Core and Local LAN) host 172.22.242.23(Finance Web Server)”. You are asked deny Host C, Core and Local LAN, not Finance Web Server, Core and Local LAN. You can’t deny Finance Web Server from itself. :)

  3. Kazi
    February 22nd, 2015

    Guys….where is the PDF file for 316 questions?

  4. naveen
    February 22nd, 2015

    @ Z-Ahmad , Can you share me the the PDF file of 316 questions.
    naveenhg64@gmail.com

  5. Happy
    February 22nd, 2015

    Passed 972/1000 !

  6. naveen
    February 22nd, 2015

    @Liton
    Can u share me the latest dumps of ccna.
    Thanks in advance.
    naveencrazy64@gmail.com

  7. Affan
    February 22nd, 2015

    1000/1000 Passed.. acl 1, 2 & eirgp lab. luv 9tut.

  8. Affan
    February 22nd, 2015

    Passed 972/1000. LAB ACL 1 ACL 2 and EIGRP

  9. jayper
    February 23rd, 2015

    z-Ahmad, pls. can send me the pdf file of ccna 316 question. thank you very much
    jayper0602@yahoo.com

  10. Anonymous
    February 23rd, 2015

    dump 314 its different from dump 316 ????????

  11. Yasir
    February 23rd, 2015

    Can u share me the latest dumps of ccna.
    Thanks in advance

    vistro.yasir@gmail.com

  12. Pipe
    February 23rd, 2015

    Hi Liton, please send the latest to amaya.f@gmail.com Thank you very much.

  13. Ghada
    February 24th, 2015

    This question was on my exam yesterday (23rd feb) Modification 3 but host B was requested to access the finance server not host C, and at the very end i did permit ip any any (and i got score 1000)

    Note: it comes with different IPs for sure

    Good luck for everyone :)

  14. sharma
    February 24th, 2015

    i am exsam day after day pl send document sample quation in ccna sharmake141@gmail.com my frinds

  15. Ahmed
    February 25th, 2015

    I passed today 25-2-2015 this lab the same as Mod 3 but from host A

  16. Reysan
    February 26th, 2015

    Passed today 958/1000, Eigrp, acl 1 & acl2 mod 3 (ip changed but is still the same) i love you 9tut, good luck guy.

  17. GC
    February 26th, 2015

    @Reysan, are the questions same here in 9tut??

  18. cheque
    February 26th, 2015

    @Liton
    Can you share me the latest dumps of ccna 200-120.
    thanks.
    chequebadillo15@hotmail.com

  19. Mahesh
    February 26th, 2015

    anyone hv vce 1.2 crack

  20. GI Joe
    February 27th, 2015

    hi bro …
    I ate my pizza yesterday — 9**/1000 — ACL, ACL2 (mod2), Eigrp sim !!!!
    Here is my secret :
    — Todd Lammle CCNA 200-120 Study Guide. You must read the entire book (yesss the full reading and you must take notes !!!!)
    — The only wine available is “9tut” and you must drink entire content of bottle.

  21. aditi todkar
    February 27th, 2015

    can any one please send me latest dumps at aditibtodkar@gmail.com i have my exam next week.

  22. Gary Ferrer
    February 28th, 2015

    is the modification3 legit? permit ip any any ?? O.o
    Thanks

  23. faheem
    February 28th, 2015

    on tuesday will be my papaer any one suggest somthing about acl2 lab

  24. Satham
    March 1st, 2015

    Hi,

    Liton,

    I need your help. please send me latest dumps to sathamsheriffs@gmail.com

    What is ACL1 & ACL 2

  25. jonnie777
    March 1st, 2015

    Great to see a lot of people are passing with the use of this website. I have my CCNA 200-120 exam in 7weeks time could some one send me the latest dumps please to

    jonnie_gambler_777@hotmail.com.

    Thanks

  26. omar
    March 2nd, 2015

    what did they change on lab acl2 please
    cause i am taking the exam this week
    inform me on my email:
    omarcoali@hotmail.com

  27. dan
    March 2nd, 2015

    Can anyone send me latest dumps plz. im going to take the exam this week.
    arrow1085@outlook.com

  28. Anonymous
    March 2nd, 2015

    Hi everyone! In 1 week I have my CCNA. Can anyone help me with the latests dumps? Thank you a lot for your time and your disponibility! michael.pat86@ymail.com

  29. CCNA
    March 2nd, 2015

    in the exam today.

  30. cap
    March 2nd, 2015

    Taking exam in 5days, any help with latest dumps? naldars@hotmail.com

  31. Bashar
    March 2nd, 2015

    HI;
    Is it possible to any one can help me to get the last dumbs I will take my test this month.
    Thank you
    hovaane@gmail.com

  32. Andrew Arp
    March 3rd, 2015

    Hi guys, im going to take ma exam in 2 weeks, can anyone send me some late dump?

  33. Andrew Arp
    March 3rd, 2015

    andres_arp1@hotmail.com lastest dumps please

  34. RTA
    March 3rd, 2015

    hi guys.. i just want to ask regarding the exam about ACL 1 ACL 2 and eigrp.. is it an actual exam or we just make this simulation thru gns3 or packet tracer? im having an exam for tomorrow.. kindly help.. thanks! :)

  35. dan
    March 3rd, 2015

    Hi Guys taking the exam on 14th march kindly assist with the dumps progjobs2010@gmail.com thanks in advance

  36. faheem
    March 3rd, 2015

    Allhamdullilah today i have passed my ccna exam 945/1000
    same 9tut acl1…acl2 and eigrp 221

  37. Shoaib
    March 3rd, 2015

    @Faheem were the questions from 9tut ?

  38. Anonymous
    March 4th, 2015

    shoaib khan all the queswtion from 9tut but acl2 lab eigrp are little diffrent you clear ur concept on acl
    my acl2 question are

    permit to host B to access fin web server HTTP
    deny host B from other services also deny loacal lan and core to access the fin web server but other services can accesss

  39. Raj
    March 4th, 2015

    Hi, I am going to take up the exam in this week-end. kindly help me to get the latest dumps.
    rajkarthick11@gmail.com

  40. husky
    March 4th, 2015

    this here is the latest dumps, stupid!!

  41. PurdueAlum
    March 5th, 2015

    The ACL is part of the Network Device Security topic…https://learningnetwork.cisco.com/docs/DOC-17397.

    I may have blew this part on my exam. Carefully read the requirements folks.

  42. Balcha
    March 6th, 2015

    Passed today March 06, 2015. 986/1000. Thank you 9tut. 100% valid!

    Balcha

  43. Anonymous
    March 7th, 2015

    Assalam O Alikum bro
    this lab was in today exam 07-03-2015
    but it was some different.

    it said to that hos B should allowe to use only http of finance web server but all other traffic from host B to finance web server should be denid.
    also any type of traffic from core and fron Lan 192.168.33.0 to finance web server should be blocked.
    core and Lan 192.168.33.0 should access public server.

    acl should not be more than 3 lines.
    so
    write acl as

    access-list 100 permit tcp host 192.168.33.2 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

    int fa 0/1
    ip access-group 100 out

  44. Lisa
    March 7th, 2015

    9tut.net/category/icnd2 website is DOWN.
    Can anyone send me the latest dumps, just for ICND2. My email is: lisa.robertsonn@hotmail.com
    Please!
    Thank you in advance!

  45. Saeed Ahmad
    March 9th, 2015

    http://saeedahmad931.wordpress.com
    Online CCNA 200-120 , CCNP , CCNA S , LPI Classes training vailabale
    fb: saeedahmad931

  46. Loren
    March 10th, 2015

    Passed 958/1000 !! Thank 9tut. The lab was Modification 3

  47. ABC
    March 10th, 2015

    got 1000 :) (51 questions) labs were ACL1/ACL2{mod3}/EIGRP. There were 2 drag & drop questions. Thank u 9tut (10th march 2015)

  48. Siva
    March 11th, 2015

    Thanks for explaining this question it come up on my exam ….

  49. Medved
    March 11th, 2015

    Passed 11.03, 986/1000
    Modification 3 of these lab. In last rule: really to ANY destination because there is no ip address of public server on real exam.

  50. Lerato
    March 11th, 2015

    what is modification 3?

Comment pages
1 55 56 57 58 59 63 41
  1. No trackbacks yet.
Add a Comment