CCNA Certification Access List Control ACL-3 Lab Simulation
CCNA Certification Access List Control ACL-3 Lab Simulation
Simulation
itexamanswers.net/ccna-certification-access-list-control-acl-3-lab-simulation.html
March 12,
2017
Access to the router CLI can be gained by clicking on the appropriate host.
Answer:
Corp1>enable
Corp1#configure terminal
Corp1(config)#access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80
Corp1(config)#access-list 100 deny tcp 192.168.33.0 0.0.0.255 host 172.22.242.23 eq 80
Corp1(config)#access-list 100 permit ip any any
Corp1(config)#interface fa 0/1 sh ip int brief
Corp1(config-if)#ip access-group 100 out
Corp1(config-if)#end
Corp1#copy running-config startup-config
Explanation:
Select the console on Corp1 router
Configuring ACL
Corp1 >enable
Corp1#configure terminal
COMMENT: To permit only Host C (192.168. 33. 3){source addr} to access finance server
address (172.22. 242. 23){destination addr} on port number 80 (web)
COMMENT: To deny any source to access finance server address (172. 22. 242. 23)
{destination addr} on port number 80 (web)
Corp1(config)#access-list 100 deny tcp any host 172.22.242.23 eq 80
COMMENT: To permit ip protocol from any source to access any destination because of
the implicit deny any any statement at the end of ACL.
Corp1(config)#interface fa 0/1
If the ip address configured already is incorrect as well as the subnet mask, this should
be corrected in order ACL to work type this commands at interface mode :
no ip address 192. x. x. x 255. x. x. x (removes incorrect configured ip address and
subnet mask)
Configure Correct IP Address and subnet mask:
ip address 172. 22. 242. 30 255. 255. 255. 240 (range of address specified going to server
2/3
is given as 172. 22. 242. 17-172. 22. 242. 30 )
COMMENT: Place the ACL to check for packets going outside the interface towards the
finance web server.
3/3