I have come across 2 questions
HERE IS THE FIRST
We want to block access to the internet for the first 7 hosts of the 192.168.1.0/24 network. The network should have full access to the rest of the network. What is the correct access list configuration?
access-list 100 deny tcp 192.168.1.0 0.0.0.7 any eq www
access-list 100 permit ip 192.168.1.0 0.0.0.255 any
HERE IS THE SECOND
access list 10 deny 172.16.32.0 0.0.15.255 (this command says that you will start at 32 and increment by 15. So you will match on 32-47 and deny those host)
Now as best as I can tell the difference in whether you are blocking the first 7 host and whether you are starting at 32 and then blocking the next 15 host is where the number is being placed in the ip address. Is that correct?
HERE IS THE FIRST
We want to block access to the internet for the first 7 hosts of the 192.168.1.0/24 network. The network should have full access to the rest of the network. What is the correct access list configuration?
access-list 100 deny tcp 192.168.1.0 0.0.0.7 any eq www
access-list 100 permit ip 192.168.1.0 0.0.0.255 any
HERE IS THE SECOND
access list 10 deny 172.16.32.0 0.0.15.255 (this command says that you will start at 32 and increment by 15. So you will match on 32-47 and deny those host)
Now as best as I can tell the difference in whether you are blocking the first 7 host and whether you are starting at 32 and then blocking the next 15 host is where the number is being placed in the ip address. Is that correct?