restricting access to apache server from a certain computer
i'm faced with a problem i can't quite figure out right now...i have 3 computers hooked up to the same network through a linksys router. the network ip addresses are as follows:
192.168.1.100
192.168.1.101
192.168.1.102
they are all sharing the same internet connection so the internet ip is the same for all 3
my webserver is on computer 192.168.1.100
i wish to restrict access so that computer 192.168.101 cannot access the apache server. is there a way to restrict access for computer 192.168.1.101 without restricting access from the server (192.168.1.100) also??
i have tried this:
<Directory "..server root here">
Deny from 192.168.1.101
</Directory>
and
<Directory "..server root here">
Deny from (internet ip of the 3 computers)
</Directory>
both have failed to give me the results i am looking for
i've tried this also
<Directory "..server root here">
Deny from 192.168.1
</Directory>
that blocks all 3 computers
can somebody please help me??