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:
Plz help to understand Ques.1 that if I apply on fa0/0 for incoming traffic, it’s working. Which one is correct?
Corp1(config)#interface fa0/0
Corp1(config-if)#ip access-group 100 in
If we place the Extended Access Control List (ACL) near to destination, the unwanted traffic may consume the bandwidth till destination, and the the unwanted traffic will get filtered finally near destination.
Plz help to understand Ques.1 that if I apply on fa0/0 for incoming traffic, it’s working. Which one is correct?
Corp1(config)#interface fa0/0
Corp1(config-if)#ip access-group 100 in
If we place the Extended Access Control List (ACL) near to destination, the unwanted traffic may consume the bandwidth till destination, and the the unwanted traffic will get filtered finally near destination.
Hi guys’ could send me the latest dump for ccna exam. My email address: Ghahremanlu@gmail.com
Thnaks in advance
Alhamdulliah,………I have passed exam today with 972/1000
Total questions 51,
Acl,Acl2 end eigrp with some modifications
Work hard it will pay you back
Thanks
hi guys what about your votes to watson 314Q dump is it valid till nowadays
HI Friends, If you can you send me latest dumps at sandeep_v_desai@yahoo.com
anyone plz help me for giving latest dumps …..next week i am getting CCNA vendor exam . my address is farhad_ece@yahoo.com.
Pls send me the latest dumps. madrid.rock@yahoo.com
Finally got the result of my so many sleepless days and nights which gave me a meaningful Result. A BIG day! for me.I Am very very happy to say that I have just passed my CCNA Cisco Certifications Exam :)
with 958/1000. A God grace to my family, my gf, and my friends who support me, special thanx to Mnet to maam Len, CBTNuggets by Jeremy,subnettingquestions,9tut,examtut,examcollection,Todd Lammle books,wendell odom books,Networking books. CCNP your next :)))))
Please send me the latest dumps psmith4519@gmail.com
Hi friends
Pls helping me by sending last dumps of ccna exam, because i decide to write exan on first week of May
Thnks to all
Hi friends
Pls helping me by sending last dumps of ccna exam to , because i decide to write exan on first week of May
my email socar1650@hotmail.com
Thnks to all
sotkatti i will do it
if you need ccna exam 58% discount voucher contact me here.
aadicisco@gmail.com
if you need ccna exam discount voucher 58% contact me here aadicisco@gmail.com
please send me last dumps in this month i will do the exam thnks a lot!
email me achaino_85@hotmail.com
Hi I will take te exam this week please help me with the las dum bledikasa@hotmail.com plz help me I need to pass this exam
Hi friends! I av pponed d exam twice now and will finally by God’s grace write it nxtwk Fri…I need help 2ru d latest dumps and any soda valuables@adekunle_jamiu99@yahoo.com…. Thnx in adv
I took my CCNA yesterday. I failed again with 807. I had problems with the ACL2 lab question.
- Host C should be able to use a web browser(HTTP)to access the Finance Web Server-
- 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
- All hosts in the Core and local LAN should be able to access the Public Web Server *
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 host
This should be right.. However on the exam.. Host A-D could access the Finance server & public server…
what did i do wrong?
Jeff where did you apply the access list ?
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
int fa0/1
access-list 100 out
Ops!!!!!!! jeff im wrong..
access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80
access-list 100 deny ip host 192.168.33.3 host 172.22.242.23 eq
access-list 100 permit ip any any
fa0/1
ip access-group 100 out
Again i forgot to put the
access-list 100 deny tcp any 172.22.242.23 eq 80
jeff … only three statements ??
jeff try this ;)
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
…fa0/1
ip access-group 100 out
salam! friends u have cleared my CCNA 200-120 yesterday
ACL1 ACL2 EIGRP was labs ACL2 was same as the Comments Above ! thanks all 9tut examtut cisco actual test !!! i have got 986 / 1000 !!!
for any Questions regarding exam just send me a message on facebook (Muhammad Ahmad Zain)
to Muhammad ahmad Zain.. give me ur email plz
Wa alaykumu s-salam bro Mohammad i am doing my CCNA exam soon and i need to ask you are stimulation still the same and question of actual test. thanks akhi
i tried to apply it to fa 0/1
I pass CCNA 200-120 with 945/1000 on wednesday 30/04/2013.
ACL, ACL1 E EIGRP
can anyone help me with latest dumps
i have exams tomorrow
thanks ;)
verdruser@gmail.com
can anyone help me with latest dumps
i have exams tomorrow.
Regards :)
noelm@connectnet.co.za
By the grace of ALLAH Just passed today….ACL 1 same, ACL 2 with 3rd modification (ip changes) and EIGRP with changes Ips.
Others from exam-collection
1. watson
2. Methew …enough.
Need any help contact on skype id azhar.hameed53
Best of luck …!!!
HI Azhar please email me bashiir_abokor@hotmail.com i need your help.
Just passed the exam today with 1000. All those questions were from here. Access list Simulator though web server address is given I have Typed permit any any as per instruction and got full marks. Definitely some bug in Cisco Test simulator but please type as instructed in the 3rd line to get the full mark
pass 900 lab acl1,acl2, eigrp change ip
Please send latest dump to pdigitl@gmail.com
Pls wat is ccna pass mark
I just took test today(5/10/2014). I was studying using dump 271q. But the thing is that there are about..10? new questions that I never saw in dump. It mostly about IPv6.. simulation was about ACL2 with 3rd modification, Eigrp.. drag and drop question was about cross over cable and…something like pin cable..? luckily I passed and my score is 931.
Good luck guys!
I will take my exsam on May 20th, 2014 ,
can anyone help me with latest dumps
hostok@yahoo.com
Hi Guys.. I will be writing in 3 weeks time the ccna exam. and i really want and have to pass that. can you gently help me with the latest CCNA DUMP quation.. it can as well just Be in PDF format no probs at all
jtchipa@hotmail.com
Best Regards
hi guys, i need help on the latest dumps plz….my address is diamonditua@gmail.com
osshakhatreh@hotmail.com
hey i need the latest dump plzzz
thxxx
Sukur Alhamdulillah….Finally got the result after many many hard work..i will got the result 890/1000 score, today (12-5-2014) at 3.00 pm. I am so happy,
Specially thanks 9tut, ACL1, ACL2 with third modification just ip change and EIGRP AS 212 and Examcollection for MCQ
Next…..CCNP Inshallah got it also successfully.
For exam candidate take it easy and practice more & more you will be succeeded obviously.
Best wishes for every friends.
@sohag how many questions from dumps and 9tut pls tell and send me dumps at gargankit0123456789@gmail.com
Hi All,
Does anyone know what is the total list of the sim’s that might be in the CCNA test?
Is it ACL,VTP and EIGRP only?
Thanks,
Hi Sohag! congrats … plz send me the latest dumps at babar.ahmed8@gmail.com
Hi Sohag! congrats … plz send me the latest dumps at trassinelli82@tiscali.it
I’m going to re-take my CCNA test this Saturday. During the last test, I used copy running- config start-up config command to save the configuration, but it didn’t work. I tried wr mem, but the CLI prompted me that it’s version doesn’t support it. I found there is a substitute command copy run start, is this one will work? or, is there other command that I can use?
Thank you!