CCNA Certification Access List Control ACL-5 Lab Simulation
CCNA Certification Access List Control ACL-5 Lab Simulation
Simulation
itexamanswers.net/ccna-certification-access-list-control-acl-5-lab-simulation.html
March 12,
2017
1/3
Answer:
Please see below explanation part for details answer steps:
We should create an access-list and apply it to the interface that is connected to the
Server LAN because it can filter out traffic from both S2 and Core networks. To see which
interface this is, use the “show ip int brief” command:
From this, we know that the servers are located on the fa0/1 interface, so we will place
our numbered access list here in the outbound direction.
Corp1#configure terminal
Our access-list needs to allow host C – 192.168125.3 to the Finance Web Server
172.22.109.17
via HTTP (port 80), so our first line is this:
2/3
Corp1(config)#access-list 100 deny ip any host 172.22.109.17
Our last instruction is to allow all hosts in the Core and on the local LAN access to the
Public Web Server (172.22.109.18)
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.
To verify, just click on host C to open its web browser. In the address box type
http://172.22.109.17 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. Then, repeat to make sure they can reach the public server at
172.22.109.18.
Finally, save the configuration
Corp1(config-if)#end
Corp1#copy running-config startup-config
3/3