CCNA Access List Sim 2
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
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
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+).
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.
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:
958/1000. Passed today, Thanks to 9 tut, the EIGRP, ACL 1 ,2 are valid today.
PDF -316 questions file. Every question is same.
@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. :)
Guys….where is the PDF file for 316 questions?
@ Z-Ahmad , Can you share me the the PDF file of 316 questions.
naveenhg64@gmail.com
Passed 972/1000 !
@Liton
Can u share me the latest dumps of ccna.
Thanks in advance.
naveencrazy64@gmail.com
1000/1000 Passed.. acl 1, 2 & eirgp lab. luv 9tut.
Passed 972/1000. LAB ACL 1 ACL 2 and EIGRP
z-Ahmad, pls. can send me the pdf file of ccna 316 question. thank you very much
jayper0602@yahoo.com
dump 314 its different from dump 316 ????????
Can u share me the latest dumps of ccna.
Thanks in advance
vistro.yasir@gmail.com
Hi Liton, please send the latest to amaya.f@gmail.com Thank you very much.
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 :)
i am exsam day after day pl send document sample quation in ccna sharmake141@gmail.com my frinds
I passed today 25-2-2015 this lab the same as Mod 3 but from host A
Passed today 958/1000, Eigrp, acl 1 & acl2 mod 3 (ip changed but is still the same) i love you 9tut, good luck guy.
@Reysan, are the questions same here in 9tut??
@Liton
Can you share me the latest dumps of ccna 200-120.
thanks.
chequebadillo15@hotmail.com
anyone hv vce 1.2 crack
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.
can any one please send me latest dumps at aditibtodkar@gmail.com i have my exam next week.
is the modification3 legit? permit ip any any ?? O.o
Thanks
on tuesday will be my papaer any one suggest somthing about acl2 lab
Hi,
Liton,
I need your help. please send me latest dumps to sathamsheriffs@gmail.com
What is ACL1 & ACL 2
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
what did they change on lab acl2 please
cause i am taking the exam this week
inform me on my email:
omarcoali@hotmail.com
Can anyone send me latest dumps plz. im going to take the exam this week.
arrow1085@outlook.com
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
in the exam today.
Taking exam in 5days, any help with latest dumps? naldars@hotmail.com
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
Hi guys, im going to take ma exam in 2 weeks, can anyone send me some late dump?
andres_arp1@hotmail.com lastest dumps please
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! :)
Hi Guys taking the exam on 14th march kindly assist with the dumps progjobs2010@gmail.com thanks in advance
Allhamdullilah today i have passed my ccna exam 945/1000
same 9tut acl1…acl2 and eigrp 221
@Faheem were the questions from 9tut ?
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
Hi, I am going to take up the exam in this week-end. kindly help me to get the latest dumps.
rajkarthick11@gmail.com
this here is the latest dumps, stupid!!
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.
Passed today March 06, 2015. 986/1000. Thank you 9tut. 100% valid!
Balcha
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
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!
http://saeedahmad931.wordpress.com
Online CCNA 200-120 , CCNP , CCNA S , LPI Classes training vailabale
fb: saeedahmad931
Passed 958/1000 !! Thank 9tut. The lab was Modification 3
got 1000 :) (51 questions) labs were ACL1/ACL2{mod3}/EIGRP. There were 2 drag & drop questions. Thank u 9tut (10th march 2015)
Thanks for explaining this question it come up on my exam ….
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.
what is modification 3?