ACL Lab
ACL Lab
Answer
First command: allow host C (192.168.125.3) to the Finance Web Server 172.22.109.17 via HTTP (port
80):
Corp1(config)# access-list 100 permit tcp host 192.168.125.3 host 172.22.109.17 eq 80
Second command: blocking all other access to the finance web server:
Corp1(config)#access-list 100 deny ip any host 172.22.109.17
Third command: allow all hosts in the Core and on the local LAN access to the Public Web Server
(172.22.109.18): Corp1(config)#access-list 100 permit ip any any
Step 3: apply this access-list to Fa0/1 interface (outbound direction):
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.
Corp1(config)#interface fa0/1
Corp1(config-if)#ip access-group 100 out
Step 4: 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 cannot access Finance Web Server from these
hosts. Then, repeat to make sure they can reach the public server at 172.22.109.18.