I'm currently using Todd Lammle's book to study for CCENT. On chapter 12 he's explaining how to create an extended access list for the topology.
The configuration it's done with these three statements to allow Host B only HTTP access to the Finance ServerLab_A(config)#access-list 110 permit tcp host 192.168.177.2 host 172.22.89.26 eq 80Lab_A(config)#access-list 110 deny tcp any host 172.22.89.26 eq 80Lab_A(config)#access-list 110 permit ip any anyLab_A(config)#interface fastethernet 0/1Lab_A(config-if)#ip access-group 110 outWouldn't had the first statement by itself done the job? Since there's an implicit deny, there's no need for the second and third statement, which are being created to avoid the branch office on Lab A serial link to have access to the finance server. Please correct me if im wrong. Thanks for the help.